@burdenoff/microfe-movethewheels 2026.513.1 → 2026.513.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/wspace-types.d.ts +681 -145
- package/package.json +1 -1
- package/src/generated/wspace-types.ts +681 -145
|
@@ -222,7 +222,10 @@ export type AccessShareResult = {
|
|
|
222
222
|
export type AcquireLockInput = {
|
|
223
223
|
/** Auto-release lock when it expires (default: true) */
|
|
224
224
|
autoRelease?: InputMaybe<Scalars['Boolean']['input']>;
|
|
225
|
-
/**
|
|
225
|
+
/**
|
|
226
|
+
* Lock duration in seconds (default: 3600 = 1 hour)
|
|
227
|
+
* Max: 86400 (24 hours)
|
|
228
|
+
*/
|
|
226
229
|
durationSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
227
230
|
/** File ID to lock */
|
|
228
231
|
fileId: Scalars['ID']['input'];
|
|
@@ -239,7 +242,11 @@ export type AcquireLockResponse = {
|
|
|
239
242
|
success: Scalars['Boolean']['output'];
|
|
240
243
|
};
|
|
241
244
|
|
|
242
|
-
/**
|
|
245
|
+
/**
|
|
246
|
+
* A reusable action that can be executed on agents, triggered via webhooks,
|
|
247
|
+
* or orchestrated as workflows. Actions are first-class entities that can be
|
|
248
|
+
* independently managed, shared via store, and referenced by VibeDeck buttons.
|
|
249
|
+
*/
|
|
243
250
|
export type Action = {
|
|
244
251
|
__typename?: 'Action';
|
|
245
252
|
actionType: VibecontrolsActionType;
|
|
@@ -291,7 +298,11 @@ export type Action = {
|
|
|
291
298
|
};
|
|
292
299
|
|
|
293
300
|
|
|
294
|
-
/**
|
|
301
|
+
/**
|
|
302
|
+
* A reusable action that can be executed on agents, triggered via webhooks,
|
|
303
|
+
* or orchestrated as workflows. Actions are first-class entities that can be
|
|
304
|
+
* independently managed, shared via store, and referenced by VibeDeck buttons.
|
|
305
|
+
*/
|
|
295
306
|
export type ActionRecentExecutionsArgs = {
|
|
296
307
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
297
308
|
};
|
|
@@ -363,7 +374,10 @@ export type ActionDefinition = {
|
|
|
363
374
|
viewerDefault: Scalars['Boolean']['output'];
|
|
364
375
|
};
|
|
365
376
|
|
|
366
|
-
/**
|
|
377
|
+
/**
|
|
378
|
+
* A record of an action execution with full status tracking, output capture,
|
|
379
|
+
* and timing information. Provides a persistent audit trail of all executions.
|
|
380
|
+
*/
|
|
367
381
|
export type ActionExecution = {
|
|
368
382
|
__typename?: 'ActionExecution';
|
|
369
383
|
action: Action;
|
|
@@ -1130,7 +1144,11 @@ export type AgentPluginListResult = {
|
|
|
1130
1144
|
installed: Array<AgentPlugin>;
|
|
1131
1145
|
};
|
|
1132
1146
|
|
|
1133
|
-
/**
|
|
1147
|
+
/**
|
|
1148
|
+
* Result of probing an agent's tunnel URL for health and identity.
|
|
1149
|
+
* Used by the Add Agent wizard (pre-creation) and Agent Detail page
|
|
1150
|
+
* to validate connectivity without the frontend calling the agent directly.
|
|
1151
|
+
*/
|
|
1134
1152
|
export type AgentProbeResult = {
|
|
1135
1153
|
__typename?: 'AgentProbeResult';
|
|
1136
1154
|
/** Agent software version from /health */
|
|
@@ -1329,7 +1347,10 @@ export enum AiPromptStatus {
|
|
|
1329
1347
|
Draft = 'DRAFT'
|
|
1330
1348
|
}
|
|
1331
1349
|
|
|
1332
|
-
/**
|
|
1350
|
+
/**
|
|
1351
|
+
* An event from an AI coding tool running on an agent.
|
|
1352
|
+
* Used to track task completions, tool usage, and other AI tool activities.
|
|
1353
|
+
*/
|
|
1333
1354
|
export type AiToolEvent = {
|
|
1334
1355
|
__typename?: 'AiToolEvent';
|
|
1335
1356
|
/** Associated agent */
|
|
@@ -3114,7 +3135,10 @@ export type BulkAssignTagsInput = {
|
|
|
3114
3135
|
tagIds: Array<Scalars['ID']['input']>;
|
|
3115
3136
|
};
|
|
3116
3137
|
|
|
3117
|
-
/**
|
|
3138
|
+
/**
|
|
3139
|
+
* Input for assigning many tags to many entities in one round-trip.
|
|
3140
|
+
* Server applies the cartesian product (tagIds × targets).
|
|
3141
|
+
*/
|
|
3118
3142
|
export type BulkAssignTagsToEntitiesInput = {
|
|
3119
3143
|
/** Operation context for scoping (workspaceId, userId, projectId, etc.) */
|
|
3120
3144
|
context?: InputMaybe<ContextInput>;
|
|
@@ -4553,7 +4577,10 @@ export enum ConfigScope {
|
|
|
4553
4577
|
Workspace = 'WORKSPACE'
|
|
4554
4578
|
}
|
|
4555
4579
|
|
|
4556
|
-
/**
|
|
4580
|
+
/**
|
|
4581
|
+
* Configuration key-value storage with scoping.
|
|
4582
|
+
* Supports workspace, vibe, session, and agent-scoped configurations.
|
|
4583
|
+
*/
|
|
4557
4584
|
export type Configuration = {
|
|
4558
4585
|
__typename?: 'Configuration';
|
|
4559
4586
|
/** Opaque IDs for cross-service context (organizationId, userId, etc.) */
|
|
@@ -6330,7 +6357,10 @@ export type CreateFolderInput = {
|
|
|
6330
6357
|
icon?: InputMaybe<Scalars['String']['input']>;
|
|
6331
6358
|
name: Scalars['String']['input'];
|
|
6332
6359
|
parentFolderId?: InputMaybe<Scalars['ID']['input']>;
|
|
6333
|
-
/**
|
|
6360
|
+
/**
|
|
6361
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key,value,...}`
|
|
6362
|
+
* records. Backed by the canonical `Folder.tags` Json column.
|
|
6363
|
+
*/
|
|
6334
6364
|
tags?: InputMaybe<Scalars['JSON']['input']>;
|
|
6335
6365
|
visibility?: InputMaybe<FileVisibility>;
|
|
6336
6366
|
};
|
|
@@ -7481,7 +7511,11 @@ export type CreateSessionInput = {
|
|
|
7481
7511
|
/** Operation context for scoping (workspaceId, userId, projectId, etc.) */
|
|
7482
7512
|
context?: InputMaybe<ContextInput>;
|
|
7483
7513
|
environmentVariables?: InputMaybe<Scalars['JSON']['input']>;
|
|
7484
|
-
/**
|
|
7514
|
+
/**
|
|
7515
|
+
* Provider-native session name (e.g. tmux session name). When set, the
|
|
7516
|
+
* agent attaches to that existing daemon-side session instead of
|
|
7517
|
+
* creating a new one. Agent errors if no such session exists.
|
|
7518
|
+
*/
|
|
7485
7519
|
externalSessionName?: InputMaybe<Scalars['String']['input']>;
|
|
7486
7520
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
7487
7521
|
name: Scalars['String']['input'];
|
|
@@ -7938,9 +7972,15 @@ export type CreateVibeInput = {
|
|
|
7938
7972
|
name: Scalars['String']['input'];
|
|
7939
7973
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
7940
7974
|
path: Scalars['String']['input'];
|
|
7941
|
-
/**
|
|
7975
|
+
/**
|
|
7976
|
+
* Legacy tag input (string array). Use `tagsV2` for the canonical
|
|
7977
|
+
* `[{key,value,...}]` shape (marqueue §251). Both fields are still written.
|
|
7978
|
+
*/
|
|
7942
7979
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7943
|
-
/**
|
|
7980
|
+
/**
|
|
7981
|
+
* Canonical universal-tag input (marqueue §251). JSON array of `{key,value,...}`
|
|
7982
|
+
* records. When provided, takes precedence over legacy `tags`.
|
|
7983
|
+
*/
|
|
7944
7984
|
tagsV2?: InputMaybe<Scalars['JSON']['input']>;
|
|
7945
7985
|
type: VibeType;
|
|
7946
7986
|
};
|
|
@@ -10270,7 +10310,11 @@ export type EntityList = {
|
|
|
10270
10310
|
__typename?: 'EntityList';
|
|
10271
10311
|
entities: Array<TaggedEntity>;
|
|
10272
10312
|
hasMore: Scalars['Boolean']['output'];
|
|
10273
|
-
/**
|
|
10313
|
+
/**
|
|
10314
|
+
* Opaque cursor pointing to the entity immediately after the last item in
|
|
10315
|
+
* `entities`. Pass it back as `pagination.cursor` to fetch the next page.
|
|
10316
|
+
* Null when `hasMore` is false.
|
|
10317
|
+
*/
|
|
10274
10318
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
10275
10319
|
total: Scalars['Int']['output'];
|
|
10276
10320
|
};
|
|
@@ -12874,7 +12918,11 @@ export type File = {
|
|
|
12874
12918
|
starred: Scalars['Boolean']['output'];
|
|
12875
12919
|
status: FileStatus;
|
|
12876
12920
|
tagAssignments: Array<FileTagAssignment>;
|
|
12877
|
-
/**
|
|
12921
|
+
/**
|
|
12922
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key, value, ...}`
|
|
12923
|
+
* records mirroring `wspace-workspace-svc` Project.tags shape. Lives alongside
|
|
12924
|
+
* `tagAssignments` (the wspace-tags-svc-backed structured view).
|
|
12925
|
+
*/
|
|
12878
12926
|
tags: Scalars['JSON']['output'];
|
|
12879
12927
|
updatedAt: Scalars['DateTime']['output'];
|
|
12880
12928
|
uploadedById: Scalars['ID']['output'];
|
|
@@ -13586,7 +13634,11 @@ export type Folder = {
|
|
|
13586
13634
|
subFolders?: Maybe<Array<Folder>>;
|
|
13587
13635
|
subfoldersCount?: Maybe<Scalars['Int']['output']>;
|
|
13588
13636
|
tagAssignments: Array<FolderTagAssignment>;
|
|
13589
|
-
/**
|
|
13637
|
+
/**
|
|
13638
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key, value, ...}`
|
|
13639
|
+
* records mirroring `wspace-workspace-svc` Project.tags shape. Lives alongside
|
|
13640
|
+
* `tagAssignments` (the wspace-tags-svc-backed structured view).
|
|
13641
|
+
*/
|
|
13590
13642
|
tags: Scalars['JSON']['output'];
|
|
13591
13643
|
updatedAt: Scalars['DateTime']['output'];
|
|
13592
13644
|
visibility: FileVisibility;
|
|
@@ -19554,11 +19606,20 @@ export type LockCheckResult = {
|
|
|
19554
19606
|
};
|
|
19555
19607
|
|
|
19556
19608
|
export enum LockType {
|
|
19557
|
-
/**
|
|
19609
|
+
/**
|
|
19610
|
+
* Optimistic locking - last-write-wins with version check
|
|
19611
|
+
* Allows multiple users to work, validates on save
|
|
19612
|
+
*/
|
|
19558
19613
|
Optimistic = 'OPTIMISTIC',
|
|
19559
|
-
/**
|
|
19614
|
+
/**
|
|
19615
|
+
* Pessimistic locking - exclusive lock
|
|
19616
|
+
* Only one user can edit at a time
|
|
19617
|
+
*/
|
|
19560
19618
|
Pessimistic = 'PESSIMISTIC',
|
|
19561
|
-
/**
|
|
19619
|
+
/**
|
|
19620
|
+
* Shared read lock - multiple readers allowed
|
|
19621
|
+
* Prevents writes while reads are ongoing
|
|
19622
|
+
*/
|
|
19562
19623
|
Shared = 'SHARED'
|
|
19563
19624
|
}
|
|
19564
19625
|
|
|
@@ -20096,7 +20157,10 @@ export type MessageFilter = {
|
|
|
20096
20157
|
types?: InputMaybe<Array<MessageType>>;
|
|
20097
20158
|
};
|
|
20098
20159
|
|
|
20099
|
-
/**
|
|
20160
|
+
/**
|
|
20161
|
+
* Message permissions for the current user
|
|
20162
|
+
* Calculated based on conversation membership, role, and settings
|
|
20163
|
+
*/
|
|
20100
20164
|
export type MessagePermissions = {
|
|
20101
20165
|
__typename?: 'MessagePermissions';
|
|
20102
20166
|
canDelete: Scalars['Boolean']['output'];
|
|
@@ -20577,7 +20641,16 @@ export type Mutation = {
|
|
|
20577
20641
|
addTrackingEvent: TrackingEvent;
|
|
20578
20642
|
/** Add a vibe to a catalog */
|
|
20579
20643
|
addVibeToVibecontrolsCatalog: VibecontrolsCatalogVibe;
|
|
20580
|
-
/**
|
|
20644
|
+
/**
|
|
20645
|
+
* Zero-config agent onboarding. Probes the agent via tunnelUrl + apiKey, then
|
|
20646
|
+
* chains registerOrUpdateAgent + setupAgentGatewayAuth + pushAgentGatewayAuth
|
|
20647
|
+
* in a single mutation so the operator only needs to paste the tunnel URL and
|
|
20648
|
+
* the agent's API key shown in its startup banner.
|
|
20649
|
+
*
|
|
20650
|
+
* On success the agent transitions from 'awaiting-config' to 'ready' inside
|
|
20651
|
+
* the POST /api/agent/gateway-auth call invoked during push — so by the time
|
|
20652
|
+
* this mutation returns, the agent is fully functional.
|
|
20653
|
+
*/
|
|
20581
20654
|
addVibecontrolsAgentFromTunnel: AddAgentFromTunnelResult;
|
|
20582
20655
|
/** Add a new metric to a scorecard */
|
|
20583
20656
|
addVibecontrolsScorecardMetric: VibecontrolsScorecardMetric;
|
|
@@ -20590,9 +20663,17 @@ export type Mutation = {
|
|
|
20590
20663
|
*/
|
|
20591
20664
|
addWorkspaceMember: WorkspaceMember;
|
|
20592
20665
|
adjustInventoryStock: InventoryItem;
|
|
20593
|
-
/**
|
|
20666
|
+
/**
|
|
20667
|
+
* Adopt an orphan agent session. Creates a Session row tracking the
|
|
20668
|
+
* existing daemon-side session (tmux/wezterm/zellij) and starts a web
|
|
20669
|
+
* terminal so the UI can attach. Idempotent — calling twice returns
|
|
20670
|
+
* the same row.
|
|
20671
|
+
*/
|
|
20594
20672
|
adoptAgentSession: Session;
|
|
20595
|
-
/**
|
|
20673
|
+
/**
|
|
20674
|
+
* Proxy a mutating AI request to an agent via the backend.
|
|
20675
|
+
* Path must start with /api/ai/.
|
|
20676
|
+
*/
|
|
20596
20677
|
agentAiMutate: AgentProxyResponse;
|
|
20597
20678
|
approveExpense: ExpenseEntry;
|
|
20598
20679
|
approveRequest: TimeApprovalRequest;
|
|
@@ -20654,7 +20735,11 @@ export type Mutation = {
|
|
|
20654
20735
|
/** Bulk assign a role to multiple actors */
|
|
20655
20736
|
bulkAssignRole: Scalars['Int']['output'];
|
|
20656
20737
|
bulkAssignTags: Array<UniversalTagAssignment>;
|
|
20657
|
-
/**
|
|
20738
|
+
/**
|
|
20739
|
+
* Assign N tags across M entities in one round-trip; server applies the
|
|
20740
|
+
* cartesian product (tagIds × targets). Replaces the per-entity loop the
|
|
20741
|
+
* bulk-operations UI used to do client-side.
|
|
20742
|
+
*/
|
|
20658
20743
|
bulkAssignTagsToEntities: Array<UniversalTagAssignment>;
|
|
20659
20744
|
bulkCreateAllocations: Array<ResourceAllocation>;
|
|
20660
20745
|
bulkCreateEmailTimeEntries: Array<EmailTimeEntry>;
|
|
@@ -20756,7 +20841,10 @@ export type Mutation = {
|
|
|
20756
20841
|
categorizeApplication: Array<ApplicationUsage>;
|
|
20757
20842
|
chatWithAgent: ChatResponse;
|
|
20758
20843
|
checkInToEvent: EventAttendee;
|
|
20759
|
-
/**
|
|
20844
|
+
/**
|
|
20845
|
+
* Check health of all running sessions by verifying them with their agents.
|
|
20846
|
+
* Updates status of dead sessions. Returns summary of the check.
|
|
20847
|
+
*/
|
|
20760
20848
|
checkSessionHealth: SessionHealthCheckResult;
|
|
20761
20849
|
/** Clean up expired batch downloads (admin) */
|
|
20762
20850
|
cleanupExpiredBatchDownloads: Scalars['Int']['output'];
|
|
@@ -20789,9 +20877,19 @@ export type Mutation = {
|
|
|
20789
20877
|
confirmBooking: Booking;
|
|
20790
20878
|
connectAgentToTarget: AgentConnection;
|
|
20791
20879
|
connectExternalCalendar: ExternalCalendarSync;
|
|
20792
|
-
/**
|
|
20880
|
+
/**
|
|
20881
|
+
* Anonymise the subject's conversations data. With dryRun=true, returns
|
|
20882
|
+
* counts without mutating. Message bodies are RETAINED for thread
|
|
20883
|
+
* integrity; senderId / mention / reaction / read-receipt records keyed
|
|
20884
|
+
* to the subject are anonymised or deleted. Reported back via
|
|
20885
|
+
* `retainedForLegalReason: "thread-integrity"`.
|
|
20886
|
+
*/
|
|
20793
20887
|
conversationsEraseSubject: ConversationsEraseResult;
|
|
20794
|
-
/**
|
|
20888
|
+
/**
|
|
20889
|
+
* Export the subject's conversations data: messages authored, conversation
|
|
20890
|
+
* memberships, mentions of the subject, reactions, poll votes, call
|
|
20891
|
+
* participations, comment activity. Attachments listed by reference only.
|
|
20892
|
+
*/
|
|
20795
20893
|
conversationsExportSubject: Scalars['JSON']['output'];
|
|
20796
20894
|
/** Convert a lead into a deal */
|
|
20797
20895
|
convertHeadshotmarketingLead: HeadshotmarketingDeal;
|
|
@@ -20823,7 +20921,10 @@ export type Mutation = {
|
|
|
20823
20921
|
createAppTemplate: AppTemplate;
|
|
20824
20922
|
createAsset: Asset;
|
|
20825
20923
|
createAvailabilityRule: AvailabilityRule;
|
|
20826
|
-
/**
|
|
20924
|
+
/**
|
|
20925
|
+
* Create a new batch download
|
|
20926
|
+
* Initiates ZIP archive creation
|
|
20927
|
+
*/
|
|
20827
20928
|
createBatchDownload: CreateBatchDownloadResponse;
|
|
20828
20929
|
/** Create a new BigConsole dashboard */
|
|
20829
20930
|
createBigConsoleDashboard: Dashboard;
|
|
@@ -20860,7 +20961,11 @@ export type Mutation = {
|
|
|
20860
20961
|
createCollectionFromTemplate: Collection;
|
|
20861
20962
|
createConnection: IntegrationConnection;
|
|
20862
20963
|
createConversation: CreateConversationPayload;
|
|
20863
|
-
/**
|
|
20964
|
+
/**
|
|
20965
|
+
* Submit an export job for workspace conversations + messages through
|
|
20966
|
+
* the central `wspace-export-svc`. The legacy `exportEntityComments`
|
|
20967
|
+
* mutation is deprecated in favour of this canonical entry point.
|
|
20968
|
+
*/
|
|
20864
20969
|
createConversationsExportJob: ConversationsExportJobResponse;
|
|
20865
20970
|
createCrewAnnouncement: CrewAnnouncement;
|
|
20866
20971
|
createCrewCandidate: CrewCandidate;
|
|
@@ -20904,7 +21009,12 @@ export type Mutation = {
|
|
|
20904
21009
|
createExportTemplate: ExportTemplate;
|
|
20905
21010
|
/** Create a new version from current file state */
|
|
20906
21011
|
createFileVersion: FileVersion;
|
|
20907
|
-
/**
|
|
21012
|
+
/**
|
|
21013
|
+
* Create an export job for workspace files.
|
|
21014
|
+
* The export service will asynchronously build a ZIP archive containing
|
|
21015
|
+
* all files metadata (and optionally media) in the requested format.
|
|
21016
|
+
* Poll the export service for job completion and download URL.
|
|
21017
|
+
*/
|
|
20908
21018
|
createFilesExportJob: ExportJobResponse;
|
|
20909
21019
|
/** Create a new filter preset */
|
|
20910
21020
|
createFilterPreset: FilterPreset;
|
|
@@ -21080,7 +21190,11 @@ export type Mutation = {
|
|
|
21080
21190
|
createTagRule: UniversalTagRule;
|
|
21081
21191
|
createTagSegment: UniversalTagSegment;
|
|
21082
21192
|
createTagTranslation: UniversalTagTranslation;
|
|
21083
|
-
/**
|
|
21193
|
+
/**
|
|
21194
|
+
* Submit an export job for workspace tags + vocabularies through the
|
|
21195
|
+
* central `wspace-export-svc`. Returns the job descriptor; the caller
|
|
21196
|
+
* polls the export service for completion and download URL.
|
|
21197
|
+
*/
|
|
21084
21198
|
createTagsExportJob: TagsExportJobResponse;
|
|
21085
21199
|
createTarget: Target;
|
|
21086
21200
|
createTask: Task;
|
|
@@ -21384,7 +21498,10 @@ export type Mutation = {
|
|
|
21384
21498
|
deleteTimeEntry: TimeEntry;
|
|
21385
21499
|
/** Soft-delete a tunnel (stops it first if active, then sets deletedAt). */
|
|
21386
21500
|
deleteTunnel: Scalars['Boolean']['output'];
|
|
21387
|
-
/**
|
|
21501
|
+
/**
|
|
21502
|
+
* Delete a domain record. Must be detached first (unless it's a managed
|
|
21503
|
+
* subdomain never attached to anything).
|
|
21504
|
+
*/
|
|
21388
21505
|
deleteTunnelDomain: Scalars['Boolean']['output'];
|
|
21389
21506
|
deleteVault: Scalars['Boolean']['output'];
|
|
21390
21507
|
deleteVaultIntegration: Scalars['Boolean']['output'];
|
|
@@ -21459,7 +21576,12 @@ export type Mutation = {
|
|
|
21459
21576
|
enableMaintenanceMode: MaintenanceModeStatus;
|
|
21460
21577
|
enableProvider: IntegrationProvider;
|
|
21461
21578
|
endCall: CallSession;
|
|
21462
|
-
/**
|
|
21579
|
+
/**
|
|
21580
|
+
* Erase the subject's files-layer data. With dryRun=true, returns counts
|
|
21581
|
+
* without mutating. Files owned by the subject are tombstoned (soft-deleted)
|
|
21582
|
+
* and their S3 objects scheduled for purge. File rows that have legal-hold
|
|
21583
|
+
* flags are retained and reported in `retainedForLegalReason`.
|
|
21584
|
+
*/
|
|
21463
21585
|
eraseSubject: FilesEraseResult;
|
|
21464
21586
|
eventfullyManagedCreateAttendee: EventfullyManagedAttendee;
|
|
21465
21587
|
eventfullyManagedCreateCheckInRecord: EventfullyManagedCheckInRecord;
|
|
@@ -21638,7 +21760,10 @@ export type Mutation = {
|
|
|
21638
21760
|
executeParser: ParserExecutionResult;
|
|
21639
21761
|
executePipeline: PipelineExecution;
|
|
21640
21762
|
executePromptNow: PromptResult;
|
|
21641
|
-
/**
|
|
21763
|
+
/**
|
|
21764
|
+
* Execute a button via share token (PUBLIC — no auth required).
|
|
21765
|
+
* Only works if the share link has EXECUTE permission.
|
|
21766
|
+
*/
|
|
21642
21767
|
executeSharedVibeDeckButton: VibeDeckButtonExecution;
|
|
21643
21768
|
executeVibeDeckButton: VibeDeckButtonExecution;
|
|
21644
21769
|
/**
|
|
@@ -21653,7 +21778,12 @@ export type Mutation = {
|
|
|
21653
21778
|
/** @deprecated Use `createGroupsExportJob` (delegates to wspace-export-svc) for workspace-scoped exports. This single-group helper will be removed in a future release. */
|
|
21654
21779
|
exportGroupData: GroupExportResult;
|
|
21655
21780
|
exportSandboxes: SandboxExportJob;
|
|
21656
|
-
/**
|
|
21781
|
+
/**
|
|
21782
|
+
* Export the subject's files-layer data: owned files (with metadata,
|
|
21783
|
+
* versions, tags), folders, file-shares granted by the subject. Object
|
|
21784
|
+
* storage payloads are listed by S3 key but not inlined; the privacy-svc
|
|
21785
|
+
* orchestrator includes them via signed URLs in the final DSAR bundle.
|
|
21786
|
+
*/
|
|
21657
21787
|
exportSubject: Scalars['JSON']['output'];
|
|
21658
21788
|
/** Export audit logs matching the filter as CSV or JSON */
|
|
21659
21789
|
exportVibeAuditLogs: VibeAuditLogExport;
|
|
@@ -21841,18 +21971,31 @@ export type Mutation = {
|
|
|
21841
21971
|
*/
|
|
21842
21972
|
initializeWorkspaceRoles: InitializeWorkspaceRolesResult;
|
|
21843
21973
|
initiateOAuth: OAuthInitiationResult;
|
|
21844
|
-
/**
|
|
21974
|
+
/**
|
|
21975
|
+
* Initiate a new upload session
|
|
21976
|
+
* Returns session details and initial presigned URLs
|
|
21977
|
+
*/
|
|
21845
21978
|
initiateUpload: UploadSessionWithUrls;
|
|
21846
21979
|
/** Install an action from the store (creates a local instance) */
|
|
21847
21980
|
installActionFromStore: Action;
|
|
21848
21981
|
installAgentOnTarget: InstallJob;
|
|
21849
|
-
/**
|
|
21982
|
+
/**
|
|
21983
|
+
* Install a plugin on an agent. The backend proxies the request
|
|
21984
|
+
* to the agent's REST API (POST /api/plugins/install).
|
|
21985
|
+
*/
|
|
21850
21986
|
installAgentPlugin: AgentPluginActionResult;
|
|
21851
21987
|
installApp: AppInstallation;
|
|
21852
21988
|
installNode: WorkspaceNodeInstallation;
|
|
21853
21989
|
installPackage: InstalledPackage;
|
|
21854
21990
|
installProviderPlugin: IntegrationProvider;
|
|
21855
|
-
/**
|
|
21991
|
+
/**
|
|
21992
|
+
* Install a plugin on an agent sourced from the Burdenoff store.
|
|
21993
|
+
*
|
|
21994
|
+
* Bridges store-svc ↔ vibecontrols-agent: the backend validates the caller's
|
|
21995
|
+
* entitlement via store-svc, reads the product manifest for the npm package
|
|
21996
|
+
* name + version, then calls the agent's /api/plugins/install endpoint.
|
|
21997
|
+
* Records an AppInstallation in store-svc on success.
|
|
21998
|
+
*/
|
|
21856
21999
|
installStorePluginOnAgent: AgentPluginActionResult;
|
|
21857
22000
|
/**
|
|
21858
22001
|
* Install an app in one or more workspaces
|
|
@@ -21872,7 +22015,11 @@ export type Mutation = {
|
|
|
21872
22015
|
invest: KadaikodiInvestment;
|
|
21873
22016
|
inviteToGroup: InviteResult;
|
|
21874
22017
|
invokeSlashCommand: InvokeSlashCommandPayload;
|
|
21875
|
-
/**
|
|
22018
|
+
/**
|
|
22019
|
+
* Issue a short-lived session token for a tunnel. The token is returned
|
|
22020
|
+
* exactly once and grants the agent the right to connect its provider
|
|
22021
|
+
* subprocess to the tunnel server.
|
|
22022
|
+
*/
|
|
21876
22023
|
issueTunnelSession: TunnelSessionIssueResult;
|
|
21877
22024
|
/**
|
|
21878
22025
|
* Issue a workspace token for the authenticated user.
|
|
@@ -21933,7 +22080,14 @@ export type Mutation = {
|
|
|
21933
22080
|
muteConversation: ConversationMembership;
|
|
21934
22081
|
notifyTagAssigned: Scalars['Boolean']['output'];
|
|
21935
22082
|
notifyTagRemoved: Scalars['Boolean']['output'];
|
|
21936
|
-
/**
|
|
22083
|
+
/**
|
|
22084
|
+
* Notify-on-change hook for plugin lifecycle events. Called by the agent's
|
|
22085
|
+
* plugin-mgr immediately after install/remove/reload so the
|
|
22086
|
+
* vibecontrolsAgentPluginStream subscription publishes within ms instead of
|
|
22087
|
+
* waiting for the next 30s server-side poll. The agent authenticates with
|
|
22088
|
+
* its agentApiKey; the svc validates and forwards the new installed-list
|
|
22089
|
+
* to the GraphQL pubsub topic for that workspace+agent.
|
|
22090
|
+
*/
|
|
21937
22091
|
notifyVibecontrolsAgentPluginChange: Scalars['Boolean']['output'];
|
|
21938
22092
|
openCircuitBreaker: CircuitBreakerState;
|
|
21939
22093
|
optimizeRoute: Route;
|
|
@@ -22176,7 +22330,11 @@ export type Mutation = {
|
|
|
22176
22330
|
/** Publish a component as a reusable template (snapshots the component) */
|
|
22177
22331
|
publishVibecontrolsComponentAsTemplate: VibecontrolsTemplate;
|
|
22178
22332
|
publishWorkflow: WorkflowDefinition;
|
|
22179
|
-
/**
|
|
22333
|
+
/**
|
|
22334
|
+
* Push gateway auth configuration (OAuth2 credentials) to an agent.
|
|
22335
|
+
* The backend proxies the request to the agent's REST API
|
|
22336
|
+
* (POST /api/agent/gateway-auth).
|
|
22337
|
+
*/
|
|
22180
22338
|
pushAgentGatewayAuth: AgentPluginActionResult;
|
|
22181
22339
|
rateMeeting: MeetingMeta;
|
|
22182
22340
|
/** Rate a template */
|
|
@@ -22189,7 +22347,18 @@ export type Mutation = {
|
|
|
22189
22347
|
* Workspace ID is read from gateway context (x-workspace-id header).
|
|
22190
22348
|
*/
|
|
22191
22349
|
recalculateWorkspaceUsage: WorkspaceResourceUsage;
|
|
22192
|
-
/**
|
|
22350
|
+
/**
|
|
22351
|
+
* Receive a message from an external channel platform (Slack, Teams, WhatsApp, etc.)
|
|
22352
|
+
* Called by module-channel-svc via API Gateway when webhook events are received.
|
|
22353
|
+
*
|
|
22354
|
+
* This mutation will:
|
|
22355
|
+
* - Find existing conversation by channelId + externalThreadId, or create new one
|
|
22356
|
+
* - Create the message with EXTERNAL author type
|
|
22357
|
+
* - Handle deduplication by channelMessageId
|
|
22358
|
+
* - Return conversation and message IDs
|
|
22359
|
+
*
|
|
22360
|
+
* Follows spec: 01-scope-boundaries.md (lines 374-407)
|
|
22361
|
+
*/
|
|
22193
22362
|
receiveChannelMessage: ReceiveChannelMessagePayload;
|
|
22194
22363
|
recordAIPromptUsage: AiPrompt;
|
|
22195
22364
|
/** Record multiple activities in batch */
|
|
@@ -22227,7 +22396,10 @@ export type Mutation = {
|
|
|
22227
22396
|
* Creates a new generation based on an existing one.
|
|
22228
22397
|
*/
|
|
22229
22398
|
regenerateDashboard: PromptGeneration;
|
|
22230
|
-
/**
|
|
22399
|
+
/**
|
|
22400
|
+
* Register a user-owned custom domain. Returns the domain with a challenge
|
|
22401
|
+
* token; the user must create a TXT record before verification can succeed.
|
|
22402
|
+
*/
|
|
22231
22403
|
registerCustomTunnelDomain: TunnelDomain;
|
|
22232
22404
|
registerDocsBuildImage: VibecontrolsDocsBuildImage;
|
|
22233
22405
|
/**
|
|
@@ -22237,7 +22409,10 @@ export type Mutation = {
|
|
|
22237
22409
|
* This prevents duplicate agent records when agents restart.
|
|
22238
22410
|
*/
|
|
22239
22411
|
registerEventfullymanagedAgent: EventfullymanagedAgent;
|
|
22240
|
-
/**
|
|
22412
|
+
/**
|
|
22413
|
+
* Auto-register a remotely installed agent in the backend.
|
|
22414
|
+
* Called after installAgentOnTarget completes to create the agent record.
|
|
22415
|
+
*/
|
|
22241
22416
|
registerInstalledAgent: VibecontrolsAgent;
|
|
22242
22417
|
registerIoTDevice: IoTDevice;
|
|
22243
22418
|
registerNode: NodeEndpointConfig;
|
|
@@ -22249,7 +22424,12 @@ export type Mutation = {
|
|
|
22249
22424
|
registerResource: Resource;
|
|
22250
22425
|
/** Register an uploaded part */
|
|
22251
22426
|
registerUploadedPart: UploadPartResponse;
|
|
22252
|
-
/**
|
|
22427
|
+
/**
|
|
22428
|
+
* Register or update an agent by hostname (upsert).
|
|
22429
|
+
* If an active (non-deleted) agent with the given hostname exists in the workspace,
|
|
22430
|
+
* it is updated with the new data. Otherwise a new agent is created.
|
|
22431
|
+
* This prevents duplicate agent records when agents restart.
|
|
22432
|
+
*/
|
|
22253
22433
|
registerVibecontrolsAgent: VibecontrolsAgent;
|
|
22254
22434
|
rejectExpense: ExpenseEntry;
|
|
22255
22435
|
/**
|
|
@@ -22263,7 +22443,10 @@ export type Mutation = {
|
|
|
22263
22443
|
releaseFileLock: ReleaseLockResponse;
|
|
22264
22444
|
/** Release control of a session */
|
|
22265
22445
|
releaseSessionControl: Scalars['Boolean']['output'];
|
|
22266
|
-
/**
|
|
22446
|
+
/**
|
|
22447
|
+
* Remove a plugin from an agent. The backend proxies the request
|
|
22448
|
+
* to the agent's REST API (POST /api/plugins/remove).
|
|
22449
|
+
*/
|
|
22267
22450
|
removeAgentPlugin: AgentPluginActionResult;
|
|
22268
22451
|
removeAllTagsFromEntity: Scalars['Boolean']['output'];
|
|
22269
22452
|
removeAttendee: Scalars['Boolean']['output'];
|
|
@@ -22358,7 +22541,10 @@ export type Mutation = {
|
|
|
22358
22541
|
* Workspace scope is read from gateway context (x-workspace-id header).
|
|
22359
22542
|
*/
|
|
22360
22543
|
resendInvitation: Invitation;
|
|
22361
|
-
/**
|
|
22544
|
+
/**
|
|
22545
|
+
* Reserve a managed subdomain under *.vibetunnels.com. The domain is
|
|
22546
|
+
* created in VERIFIED state and can be attached immediately.
|
|
22547
|
+
*/
|
|
22362
22548
|
reserveTunnelSubdomain: TunnelDomain;
|
|
22363
22549
|
resetCircuitBreaker: CircuitBreakerState;
|
|
22364
22550
|
/**
|
|
@@ -22366,9 +22552,23 @@ export type Mutation = {
|
|
|
22366
22552
|
* Workspace ID is read from gateway context (x-workspace-id header).
|
|
22367
22553
|
*/
|
|
22368
22554
|
resetMonthlyUsage: WorkspaceResourceUsage;
|
|
22369
|
-
/**
|
|
22555
|
+
/**
|
|
22556
|
+
* Reset settings for a category back to defaults.
|
|
22557
|
+
* For user-scoped categories, deletes the user's overrides.
|
|
22558
|
+
* For workspace-scoped categories, deletes the workspace overrides.
|
|
22559
|
+
*/
|
|
22370
22560
|
resetSettings: Scalars['Boolean']['output'];
|
|
22371
|
-
/**
|
|
22561
|
+
/**
|
|
22562
|
+
* Wipe the agent's local state via POST /api/agent/reset on the agent.
|
|
22563
|
+
* Deletes config.json, the encrypted Skalex DB, logs, and the plugins
|
|
22564
|
+
* manifest, then transitions the agent back to 'awaiting-config' WITHOUT
|
|
22565
|
+
* exiting the process — HTTP server + tunnel stay alive so the platform
|
|
22566
|
+
* can re-onboard via addVibecontrolsAgentFromTunnel.
|
|
22567
|
+
*
|
|
22568
|
+
* Returns the new agent API key generated during reset; the platform must
|
|
22569
|
+
* rotate its stored agentApiKey to the returned value before re-onboarding,
|
|
22570
|
+
* otherwise subsequent calls will get 401.
|
|
22571
|
+
*/
|
|
22372
22572
|
resetVibecontrolsAgent: ResetAgentResult;
|
|
22373
22573
|
/** Reset webhook failure count */
|
|
22374
22574
|
resetWebhookFailures: Webhook;
|
|
@@ -22380,7 +22580,10 @@ export type Mutation = {
|
|
|
22380
22580
|
respondToReview: KadaikodiReview;
|
|
22381
22581
|
/** Restart a session */
|
|
22382
22582
|
restartSession: Session;
|
|
22383
|
-
/**
|
|
22583
|
+
/**
|
|
22584
|
+
* Restart the terminal (stop + start session provider + ttyd) for a session.
|
|
22585
|
+
* Use this to recover from dead/orphaned tunnels.
|
|
22586
|
+
*/
|
|
22384
22587
|
restartSessionTerminal: Session;
|
|
22385
22588
|
/** Restart a resource */
|
|
22386
22589
|
restartWorkspaceResource: WorkspaceResource;
|
|
@@ -22457,7 +22660,10 @@ export type Mutation = {
|
|
|
22457
22660
|
rollbackSecret: Secret;
|
|
22458
22661
|
rotateEncryptionKey: EncryptionKey;
|
|
22459
22662
|
rotateSecret: Secret;
|
|
22460
|
-
/**
|
|
22663
|
+
/**
|
|
22664
|
+
* Rotate tunnel credentials (basic auth password, provider secrets). Active
|
|
22665
|
+
* sessions are revoked; caller must re-issue.
|
|
22666
|
+
*/
|
|
22461
22667
|
rotateTunnelCredentials: Tunnel;
|
|
22462
22668
|
/**
|
|
22463
22669
|
* Rotate the workspace secret. Old secret remains valid during grace period.
|
|
@@ -22470,9 +22676,16 @@ export type Mutation = {
|
|
|
22470
22676
|
saveTimeCampusUISession: TimeCampusUiSession;
|
|
22471
22677
|
/** Save UI session */
|
|
22472
22678
|
saveUISession: UiSession;
|
|
22473
|
-
/**
|
|
22679
|
+
/**
|
|
22680
|
+
* Re-run the Trivy CVE scan for an existing image without touching APPROVED
|
|
22681
|
+
* state. Returns the row in SCANNING; transitions to PASSED/FAILED happen
|
|
22682
|
+
* out-of-band.
|
|
22683
|
+
*/
|
|
22474
22684
|
scanDocsBuildImage: VibecontrolsDocsBuildImage;
|
|
22475
|
-
/**
|
|
22685
|
+
/**
|
|
22686
|
+
* Scan SSH config on an agent's environment and return discovered hosts.
|
|
22687
|
+
* If configPath is omitted, defaults to ~/.ssh/config.
|
|
22688
|
+
*/
|
|
22476
22689
|
scanSSHConfig: SshConfigScanResult;
|
|
22477
22690
|
/** Schedule a comment for future posting */
|
|
22478
22691
|
scheduleComment: ScheduledComment;
|
|
@@ -22509,7 +22722,10 @@ export type Mutation = {
|
|
|
22509
22722
|
*/
|
|
22510
22723
|
setDefaultFilterPreset: FilterPreset;
|
|
22511
22724
|
setDefaultVibeDeck: VibeDeck;
|
|
22512
|
-
/**
|
|
22725
|
+
/**
|
|
22726
|
+
* Promote a profile to be the agent's default. The previously-default
|
|
22727
|
+
* profile is demoted in the same transaction.
|
|
22728
|
+
*/
|
|
22513
22729
|
setDefaultVibecontrolsAgentProfile: VibecontrolsAgentProfile;
|
|
22514
22730
|
/** Set a view as the default */
|
|
22515
22731
|
setDefaultView: DashboardView;
|
|
@@ -22521,14 +22737,28 @@ export type Mutation = {
|
|
|
22521
22737
|
setNodeStatus: NodeEndpointConfig;
|
|
22522
22738
|
/** Set default permission level for a role on a resource type */
|
|
22523
22739
|
setRoleDefaultPermission: Role;
|
|
22524
|
-
/**
|
|
22740
|
+
/**
|
|
22741
|
+
* Set or update a settings secret value.
|
|
22742
|
+
* Secret values are stored encrypted and never returned in full.
|
|
22743
|
+
*/
|
|
22525
22744
|
setSettingsSecret: SettingsSecret;
|
|
22526
22745
|
setTimeCampusConfiguration: TimeCampusConfiguration;
|
|
22527
|
-
/**
|
|
22746
|
+
/**
|
|
22747
|
+
* Toggle a single per-vibe feature flag. Persists on the vibe so all viewers
|
|
22748
|
+
* see the same enabled/disabled state. The `featureId` must be a known entry
|
|
22749
|
+
* in `vibeFeatureCatalog`.
|
|
22750
|
+
*/
|
|
22528
22751
|
setVibeFeatureFlag: Vibe;
|
|
22529
22752
|
/** Enable or disable an installed workspace app */
|
|
22530
22753
|
setWorkspaceAppEnabled: WorkspaceInstalledApp;
|
|
22531
|
-
/**
|
|
22754
|
+
/**
|
|
22755
|
+
* Set up gateway auth for an agent end-to-end:
|
|
22756
|
+
* 1. Creates OAuth app in auth-svc (via internal global gateway)
|
|
22757
|
+
* 2. Creates devportal Application linked to the OAuth app
|
|
22758
|
+
* 3. Stores appId/appClientId on the agent record
|
|
22759
|
+
* 4. Pushes OAuth credentials to the agent via REST proxy
|
|
22760
|
+
* Returns the agent with credentials (clientSecret shown once).
|
|
22761
|
+
*/
|
|
22532
22762
|
setupAgentGatewayAuth: SetupAgentGatewayAuthResult;
|
|
22533
22763
|
shareCalendar: CalendarShare;
|
|
22534
22764
|
/** Share collection with users */
|
|
@@ -22544,14 +22774,23 @@ export type Mutation = {
|
|
|
22544
22774
|
startPomodoroSession: PomodoroSession;
|
|
22545
22775
|
/** Start a session */
|
|
22546
22776
|
startSession: Session;
|
|
22547
|
-
/**
|
|
22777
|
+
/**
|
|
22778
|
+
* Start a terminal (session provider + ttyd + tunnel) for a session.
|
|
22779
|
+
* Calls the agent API server-side, starts ttyd, and saves the tunnel URL as ttydUrl.
|
|
22780
|
+
*/
|
|
22548
22781
|
startSessionTerminal: Session;
|
|
22549
22782
|
startTerminal: TerminalResult;
|
|
22550
22783
|
startTimer: TimeEntry;
|
|
22551
|
-
/**
|
|
22784
|
+
/**
|
|
22785
|
+
* Transition a tunnel to ACTIVE: issues a session, instructs the agent to
|
|
22786
|
+
* spawn the provider subprocess, registers the managed DNS record if any.
|
|
22787
|
+
*/
|
|
22552
22788
|
startTunnel: Tunnel;
|
|
22553
22789
|
startTyping: Scalars['Boolean']['output'];
|
|
22554
|
-
/**
|
|
22790
|
+
/**
|
|
22791
|
+
* Start an agent process via the backend proxy.
|
|
22792
|
+
* Calls POST /api/agent/lifecycle/start on the agent.
|
|
22793
|
+
*/
|
|
22555
22794
|
startVibecontrolsAgent: AgentLifecycleActionResult;
|
|
22556
22795
|
/** Start a stopped or inactive resource */
|
|
22557
22796
|
startWorkspaceResource: WorkspaceResource;
|
|
@@ -22561,14 +22800,23 @@ export type Mutation = {
|
|
|
22561
22800
|
stopSandbox: Sandbox;
|
|
22562
22801
|
/** Stop a session */
|
|
22563
22802
|
stopSession: Session;
|
|
22564
|
-
/**
|
|
22803
|
+
/**
|
|
22804
|
+
* Stop the terminal (ttyd + session provider) for a session.
|
|
22805
|
+
* Clears ttydUrl and sets session status to STOPPED.
|
|
22806
|
+
*/
|
|
22565
22807
|
stopSessionTerminal: Session;
|
|
22566
22808
|
stopTerminal: Scalars['Boolean']['output'];
|
|
22567
22809
|
stopTimer: TimeEntry;
|
|
22568
|
-
/**
|
|
22810
|
+
/**
|
|
22811
|
+
* Transition a tunnel to STOPPED: gracefully stops the provider subprocess
|
|
22812
|
+
* on the agent and clears the managed DNS record.
|
|
22813
|
+
*/
|
|
22569
22814
|
stopTunnel: Tunnel;
|
|
22570
22815
|
stopTyping: Scalars['Boolean']['output'];
|
|
22571
|
-
/**
|
|
22816
|
+
/**
|
|
22817
|
+
* Stop an agent process via the backend proxy.
|
|
22818
|
+
* Calls POST /api/agent/lifecycle/stop on the agent.
|
|
22819
|
+
*/
|
|
22572
22820
|
stopVibecontrolsAgent: AgentLifecycleActionResult;
|
|
22573
22821
|
/** Stop a running resource */
|
|
22574
22822
|
stopWorkspaceResource: WorkspaceResource;
|
|
@@ -22914,7 +23162,10 @@ export type Mutation = {
|
|
|
22914
23162
|
updateNodeEndpoint: NodeEndpointConfig;
|
|
22915
23163
|
/** Update an existing note */
|
|
22916
23164
|
updateNote: VibecontrolsNote;
|
|
22917
|
-
/**
|
|
23165
|
+
/**
|
|
23166
|
+
* Update user notification preferences.
|
|
23167
|
+
* Merges provided fields with existing values.
|
|
23168
|
+
*/
|
|
22918
23169
|
updateNotificationPreferences: NotificationPreferences;
|
|
22919
23170
|
updateNotificationSettings: ConversationMembership;
|
|
22920
23171
|
updateOffering: KadaikodiOffering;
|
|
@@ -22928,11 +23179,17 @@ export type Mutation = {
|
|
|
22928
23179
|
updatePolicyReference: PolicyReference;
|
|
22929
23180
|
updatePomodoroGoal: PomodoroGoal;
|
|
22930
23181
|
updatePomodoroSettings: PomodoroSettings;
|
|
22931
|
-
/**
|
|
23182
|
+
/**
|
|
23183
|
+
* Update user UI preferences.
|
|
23184
|
+
* Merges provided fields with existing values.
|
|
23185
|
+
*/
|
|
22932
23186
|
updatePreferences: UserPreferences;
|
|
22933
23187
|
updatePresence: Presence;
|
|
22934
23188
|
updateProduct: Product;
|
|
22935
|
-
/**
|
|
23189
|
+
/**
|
|
23190
|
+
* Update user profile settings.
|
|
23191
|
+
* Merges provided fields with existing values.
|
|
23192
|
+
*/
|
|
22936
23193
|
updateProfile: UserProfile;
|
|
22937
23194
|
/** Update an existing project */
|
|
22938
23195
|
updateProject: Project;
|
|
@@ -23041,7 +23298,10 @@ export type Mutation = {
|
|
|
23041
23298
|
updateWorkflowScheduledJob: ScheduledJobResponse;
|
|
23042
23299
|
/** Update an existing workspace */
|
|
23043
23300
|
updateWorkspace: Workspace;
|
|
23044
|
-
/**
|
|
23301
|
+
/**
|
|
23302
|
+
* Update workspace-level defaults.
|
|
23303
|
+
* Requires admin permission. Merges provided fields with existing values.
|
|
23304
|
+
*/
|
|
23045
23305
|
updateWorkspaceDefaults: WorkspaceDefaults;
|
|
23046
23306
|
/** Update an installed workspace app */
|
|
23047
23307
|
updateWorkspaceInstalledApp: WorkspaceInstalledApp;
|
|
@@ -23065,7 +23325,10 @@ export type Mutation = {
|
|
|
23065
23325
|
/** Create or update a scorecard for an entity */
|
|
23066
23326
|
upsertVibecontrolsScorecard: VibecontrolsScorecard;
|
|
23067
23327
|
validateDocsBuildImage: VibecontrolsDocsBuildImage;
|
|
23068
|
-
/**
|
|
23328
|
+
/**
|
|
23329
|
+
* Force an immediate verification attempt for a custom domain. Normally the
|
|
23330
|
+
* background worker polls every 15s; this lets the user retry on-demand.
|
|
23331
|
+
*/
|
|
23069
23332
|
verifyTunnelDomain: TunnelDomain;
|
|
23070
23333
|
/** Send heartbeat to mark agent as active */
|
|
23071
23334
|
vibecontrolsAgentHeartbeat: VibecontrolsAgent;
|
|
@@ -37586,7 +37849,10 @@ export type NoteAnalytics = {
|
|
|
37586
37849
|
unpinned: Scalars['Int']['output'];
|
|
37587
37850
|
};
|
|
37588
37851
|
|
|
37589
|
-
/**
|
|
37852
|
+
/**
|
|
37853
|
+
* A tag assignment linking a UniversalTag to a note.
|
|
37854
|
+
* Delegated to wspace-tags-svc via the NoteTagAdapter.
|
|
37855
|
+
*/
|
|
37590
37856
|
export type NoteTagAssignment = {
|
|
37591
37857
|
__typename?: 'NoteTagAssignment';
|
|
37592
37858
|
/** When the tag was assigned */
|
|
@@ -40704,7 +40970,10 @@ export type PushAgentGatewayAuthInput = {
|
|
|
40704
40970
|
globalGatewayUrl: Scalars['String']['input'];
|
|
40705
40971
|
/** OAuth2 scopes */
|
|
40706
40972
|
scopes: Array<Scalars['String']['input']>;
|
|
40707
|
-
/**
|
|
40973
|
+
/**
|
|
40974
|
+
* Workspace gateway URL (public) — used by the agent for issueWorkspaceToken
|
|
40975
|
+
* and the encryption-key fetch. Must be distinct from globalGatewayUrl.
|
|
40976
|
+
*/
|
|
40708
40977
|
workspaceGatewayUrl: Scalars['String']['input'];
|
|
40709
40978
|
/** Workspace UUID — required for the agent's issueWorkspaceToken step. */
|
|
40710
40979
|
workspaceId: Scalars['String']['input'];
|
|
@@ -40822,15 +41091,29 @@ export type Query = {
|
|
|
40822
41091
|
adminAnalyticsModules: Array<AdminAnalyticsModuleSummary>;
|
|
40823
41092
|
adminAnalyticsOverview: AdminAnalyticsOverview;
|
|
40824
41093
|
adminAnalyticsTimeline: AdminAnalyticsTimelineResult;
|
|
40825
|
-
/**
|
|
41094
|
+
/**
|
|
41095
|
+
* Proxy a GET request to an agent AI API route via the backend.
|
|
41096
|
+
* Path must start with /api/ai/.
|
|
41097
|
+
*/
|
|
40826
41098
|
agentAiGet: AgentProxyResponse;
|
|
40827
41099
|
agentConnectionConfig: AgentConnectionConfig;
|
|
40828
41100
|
agentGraph: AgentGraph;
|
|
40829
|
-
/**
|
|
41101
|
+
/**
|
|
41102
|
+
* Read the current lifecycle state of an agent via the backend proxy.
|
|
41103
|
+
* Calls GET /api/agent/lifecycle/state on the agent.
|
|
41104
|
+
*/
|
|
40830
41105
|
agentLifecycleState: AgentLifecycleStateResult;
|
|
40831
|
-
/**
|
|
41106
|
+
/**
|
|
41107
|
+
* List installed and available plugins on an agent.
|
|
41108
|
+
* The backend proxies requests to the agent's REST API.
|
|
41109
|
+
*/
|
|
40832
41110
|
agentPlugins: AgentPluginListResult;
|
|
40833
|
-
/**
|
|
41111
|
+
/**
|
|
41112
|
+
* List `vibe-*` sessions on the agent host that are NOT currently
|
|
41113
|
+
* tracked in agent storage. These are orphan tmux/wezterm/zellij
|
|
41114
|
+
* sessions that survived an agent kill or storage wipe and can be
|
|
41115
|
+
* reconnected via `adoptAgentSession`.
|
|
41116
|
+
*/
|
|
40834
41117
|
agentSessionOrphans: Array<AgentSessionOrphan>;
|
|
40835
41118
|
/** Get aggregated metrics for a resource */
|
|
40836
41119
|
aggregatedResourceMetrics: AggregatedMetricResult;
|
|
@@ -40950,7 +41233,10 @@ export type Query = {
|
|
|
40950
41233
|
discoveryJobs: Array<DiscoveryJob>;
|
|
40951
41234
|
docsBuildImage?: Maybe<VibecontrolsDocsBuildImage>;
|
|
40952
41235
|
docsBuildImages: VibecontrolsDocsBuildImageList;
|
|
40953
|
-
/**
|
|
41236
|
+
/**
|
|
41237
|
+
* Get rendered docs HTML content for a specific file path.
|
|
41238
|
+
* Used by the frontend to render docs in an iframe via srcdoc.
|
|
41239
|
+
*/
|
|
40954
41240
|
docsContent?: Maybe<VibecontrolsDocsContentPayload>;
|
|
40955
41241
|
/** Get a single docs page by ID */
|
|
40956
41242
|
docsPage?: Maybe<VibecontrolsDocsPage>;
|
|
@@ -41248,7 +41534,10 @@ export type Query = {
|
|
|
41248
41534
|
getEntitiesByTag: EntityList;
|
|
41249
41535
|
getEntitiesByTags: EntityList;
|
|
41250
41536
|
getEntityAuditTrail: Array<VaultAuditLog>;
|
|
41251
|
-
/**
|
|
41537
|
+
/**
|
|
41538
|
+
* Get a single comment by ID
|
|
41539
|
+
* @rbac(public: true, scopeType: "wspace")
|
|
41540
|
+
*/
|
|
41252
41541
|
getEntityComment?: Maybe<EntityComment>;
|
|
41253
41542
|
/** Get edit history for a comment */
|
|
41254
41543
|
getEntityCommentEditHistory: Array<EntityCommentEdit>;
|
|
@@ -41810,7 +42099,10 @@ export type Query = {
|
|
|
41810
42099
|
listSandboxTemplates: SandboxTemplateConfigList;
|
|
41811
42100
|
listSandboxes: SandboxList;
|
|
41812
42101
|
listServiceProviders: Array<KadaikodiServiceProvider>;
|
|
41813
|
-
/**
|
|
42102
|
+
/**
|
|
42103
|
+
* List all settings secrets for the current workspace.
|
|
42104
|
+
* Returns keys and metadata, but values are redacted for security.
|
|
42105
|
+
*/
|
|
41814
42106
|
listSettingsSecrets: Array<SettingsSecret>;
|
|
41815
42107
|
/** List dashboards shared with a user */
|
|
41816
42108
|
listSharedWithMe: DashboardShareConnection;
|
|
@@ -41868,9 +42160,15 @@ export type Query = {
|
|
|
41868
42160
|
* Use this for quick role checks without fetching full permissions.
|
|
41869
42161
|
*/
|
|
41870
42162
|
myRoles: MyRolesResult;
|
|
41871
|
-
/**
|
|
42163
|
+
/**
|
|
42164
|
+
* Get all settings for the current user in this workspace.
|
|
42165
|
+
* Returns a complete bundle with defaults for any missing values.
|
|
42166
|
+
*/
|
|
41872
42167
|
mySettings: SettingsBundle;
|
|
41873
|
-
/**
|
|
42168
|
+
/**
|
|
42169
|
+
* Get settings for a specific category.
|
|
42170
|
+
* Returns the typed settings object for that category.
|
|
42171
|
+
*/
|
|
41874
42172
|
mySettingsByCategory: Scalars['JSON']['output'];
|
|
41875
42173
|
/**
|
|
41876
42174
|
* Get workspaces for the current authenticated user
|
|
@@ -42035,9 +42333,16 @@ export type Query = {
|
|
|
42035
42333
|
previewSchedule: SchedulePreview;
|
|
42036
42334
|
/** Preview smart collection results without creating */
|
|
42037
42335
|
previewSmartCollection: CollectionItemList;
|
|
42038
|
-
/**
|
|
42336
|
+
/**
|
|
42337
|
+
* Probe an existing agent's connectivity by its ID.
|
|
42338
|
+
* Looks up the agent record and calls /health and /api/agent/identity.
|
|
42339
|
+
*/
|
|
42039
42340
|
probeAgentConnection: AgentProbeResult;
|
|
42040
|
-
/**
|
|
42341
|
+
/**
|
|
42342
|
+
* Probe an agent tunnel URL for health and identity.
|
|
42343
|
+
* Used by the Add Agent wizard before the agent record exists.
|
|
42344
|
+
* The backend calls /health and /api/agent/identity on the given URL.
|
|
42345
|
+
*/
|
|
42041
42346
|
probeAgentTunnel: AgentProbeResult;
|
|
42042
42347
|
problems: Array<Problem>;
|
|
42043
42348
|
product?: Maybe<Product>;
|
|
@@ -42189,7 +42494,10 @@ export type Query = {
|
|
|
42189
42494
|
sessions: SessionList;
|
|
42190
42495
|
/** Get sessions shared with the current user */
|
|
42191
42496
|
sessionsSharedWithMe: SessionShareConnection;
|
|
42192
|
-
/**
|
|
42497
|
+
/**
|
|
42498
|
+
* Get a shared VibeDeck by token (PUBLIC — no auth required).
|
|
42499
|
+
* Returns sanitized deck data if the token is valid.
|
|
42500
|
+
*/
|
|
42193
42501
|
sharedVibeDeck?: Maybe<SharedVibeDeck>;
|
|
42194
42502
|
shipment?: Maybe<Shipment>;
|
|
42195
42503
|
shipmentTracking: Array<TrackingEvent>;
|
|
@@ -42237,7 +42545,10 @@ export type Query = {
|
|
|
42237
42545
|
traverseGraph: Array<GraphPath>;
|
|
42238
42546
|
/** Get a specific tunnel by ID. */
|
|
42239
42547
|
tunnel?: Maybe<Tunnel>;
|
|
42240
|
-
/**
|
|
42548
|
+
/**
|
|
42549
|
+
* Audit log entries scoped to a tunnel. Returns entries from the shared
|
|
42550
|
+
* AuditLog table filtered by resource type TUNNEL / TUNNEL_DOMAIN / TUNNEL_SESSION.
|
|
42551
|
+
*/
|
|
42241
42552
|
tunnelAudit: VibeAuditLogList;
|
|
42242
42553
|
/** Get a tunnel by its workspace-unique slug. */
|
|
42243
42554
|
tunnelBySlug?: Maybe<Tunnel>;
|
|
@@ -42284,7 +42595,10 @@ export type Query = {
|
|
|
42284
42595
|
/** Validate a share link (public - for join page, requires login) */
|
|
42285
42596
|
validateShareLink: ShareLinkValidation;
|
|
42286
42597
|
validateTagAssignment: TagAssignmentValidation;
|
|
42287
|
-
/**
|
|
42598
|
+
/**
|
|
42599
|
+
* Validate a share link token (PUBLIC — no auth required).
|
|
42600
|
+
* Returns whether the link is valid and what it grants.
|
|
42601
|
+
*/
|
|
42288
42602
|
validateVibeDeckShareLink: VibeDeckShareLinkValidation;
|
|
42289
42603
|
vehicle?: Maybe<Vehicle>;
|
|
42290
42604
|
vehicles: Array<Vehicle>;
|
|
@@ -42311,23 +42625,48 @@ export type Query = {
|
|
|
42311
42625
|
/** List share links for a specific vibe deck (owner-only) */
|
|
42312
42626
|
vibeDeckShareLinks: Array<VibeDeckShareLink>;
|
|
42313
42627
|
vibeDecks: VibeDeckConnection;
|
|
42314
|
-
/**
|
|
42628
|
+
/**
|
|
42629
|
+
* List the catalog of toggleable features that can be enabled/disabled per vibe.
|
|
42630
|
+
* Drives the per-vibe feature toggles UI.
|
|
42631
|
+
*/
|
|
42315
42632
|
vibeFeatureCatalog: Array<VibeFeatureDefinition>;
|
|
42316
42633
|
/** Get vibe hierarchy */
|
|
42317
42634
|
vibeHierarchy: Array<Vibe>;
|
|
42318
42635
|
/** Get specific agent by ID */
|
|
42319
42636
|
vibecontrolsAgent?: Maybe<VibecontrolsAgent>;
|
|
42320
|
-
/**
|
|
42637
|
+
/**
|
|
42638
|
+
* Get the SQLite encryption key for agents in this workspace.
|
|
42639
|
+
* One key per workspace regardless of number of agents.
|
|
42640
|
+
* Key is auto-generated on first agent registration and stored encrypted in the vault.
|
|
42641
|
+
* Agents call this on every startup using their OAuth2 credentials.
|
|
42642
|
+
*/
|
|
42321
42643
|
vibecontrolsAgentEncryptionKey: Scalars['String']['output'];
|
|
42322
|
-
/**
|
|
42644
|
+
/**
|
|
42645
|
+
* Probe the health of all agents in the workspace.
|
|
42646
|
+
* The backend calls each agent's /health endpoint and returns results.
|
|
42647
|
+
*/
|
|
42323
42648
|
vibecontrolsAgentHealthProbes: Array<AgentHealthProbeResult>;
|
|
42324
|
-
/**
|
|
42649
|
+
/**
|
|
42650
|
+
* Look up the current tunnel URL + a freshly-minted scoped peer key for a
|
|
42651
|
+
* target agent. Used by another agent (the caller) to recover from
|
|
42652
|
+
* rotation: when the caller's cached key/url stops working, it asks the
|
|
42653
|
+
* platform for the latest values. The caller is identified via the
|
|
42654
|
+
* authenticated context (clientId/secret OAuth session); RBAC checks that
|
|
42655
|
+
* the caller has been granted peer access to the target.
|
|
42656
|
+
*
|
|
42657
|
+
* Returns null when the caller has no active grant or the target has no
|
|
42658
|
+
* reachable tunnel.
|
|
42659
|
+
*/
|
|
42325
42660
|
vibecontrolsAgentNetworkLookup?: Maybe<VibecontrolsAgentNetworkLookupResult>;
|
|
42326
42661
|
/** List the active (non-deleted) profiles hosted by an agent. */
|
|
42327
42662
|
vibecontrolsAgentProfiles: Array<VibecontrolsAgentProfile>;
|
|
42328
42663
|
/** Get all agents in a workspace. Supports optional pagination (limit/offset). */
|
|
42329
42664
|
vibecontrolsAgents: Array<VibecontrolsAgent>;
|
|
42330
|
-
/**
|
|
42665
|
+
/**
|
|
42666
|
+
* Consolidated analytics for all VibeControls entities.
|
|
42667
|
+
* Returns aggregated stats, breakdowns, and time-series data in a single query.
|
|
42668
|
+
* Use the entityTypes filter to request only specific entity analytics.
|
|
42669
|
+
*/
|
|
42331
42670
|
vibecontrolsAnalytics: VibecontrolsAnalyticsResult;
|
|
42332
42671
|
/** Get a specific catalog by ID */
|
|
42333
42672
|
vibecontrolsCatalog?: Maybe<VibecontrolsCatalog>;
|
|
@@ -42344,7 +42683,17 @@ export type Query = {
|
|
|
42344
42683
|
/** Get docs site by owner type and owner ID */
|
|
42345
42684
|
vibecontrolsDocsSiteByOwner?: Maybe<VibecontrolsDocsSite>;
|
|
42346
42685
|
vibecontrolsEntityTags: Array<EntityTagAssignment>;
|
|
42347
|
-
/**
|
|
42686
|
+
/**
|
|
42687
|
+
* Resolve a wspace-integrations-svc connection to a fresh access token for
|
|
42688
|
+
* agent plugins. The agent calls this with its OAuth2 client-credential
|
|
42689
|
+
* session (actor=app); this resolver re-issues the underlying
|
|
42690
|
+
* `getConnectionToken` to integrations-svc as a service actor after
|
|
42691
|
+
* validating workspace ownership.
|
|
42692
|
+
*
|
|
42693
|
+
* Plugins that need third-party credentials (AI provider keys, GitHub
|
|
42694
|
+
* OAuth, Slack bot tokens, …) store a `connectionId` instead of raw
|
|
42695
|
+
* secrets and call this to materialize a token at runtime.
|
|
42696
|
+
*/
|
|
42348
42697
|
vibecontrolsResolveIntegrationToken: VibecontrolsIntegrationTokenResult;
|
|
42349
42698
|
/** Get a scorecard by owner type and owner ID */
|
|
42350
42699
|
vibecontrolsScorecard?: Maybe<VibecontrolsScorecard>;
|
|
@@ -51914,7 +52263,11 @@ export type ReactionSummary = {
|
|
|
51914
52263
|
userIds: Array<Scalars['ID']['output']>;
|
|
51915
52264
|
};
|
|
51916
52265
|
|
|
51917
|
-
/**
|
|
52266
|
+
/**
|
|
52267
|
+
* Input for receiving a message from an external channel platform.
|
|
52268
|
+
* Called by module-channel-svc when a webhook event is received.
|
|
52269
|
+
* This follows the spec in 01-scope-boundaries.md (lines 374-407).
|
|
52270
|
+
*/
|
|
51918
52271
|
export type ReceiveChannelMessageInput = {
|
|
51919
52272
|
/** File attachments from the platform */
|
|
51920
52273
|
attachments?: InputMaybe<Array<ChannelAttachmentInput>>;
|
|
@@ -52623,18 +52976,27 @@ export type RequestAiPredictionInput = {
|
|
|
52623
52976
|
|
|
52624
52977
|
export type ReserveTunnelSubdomainInput = {
|
|
52625
52978
|
environment: TunnelEnvironment;
|
|
52626
|
-
/**
|
|
52979
|
+
/**
|
|
52980
|
+
* The subdomain label (without the zone suffix). e.g. "demo" reserves
|
|
52981
|
+
* "demo.vibetunnels.com" (or "demo.alpha.vibetunnels.com" for alpha).
|
|
52982
|
+
*/
|
|
52627
52983
|
label: Scalars['String']['input'];
|
|
52628
52984
|
};
|
|
52629
52985
|
|
|
52630
52986
|
/** Result of resetting an agent's local state. */
|
|
52631
52987
|
export type ResetAgentResult = {
|
|
52632
52988
|
__typename?: 'ResetAgentResult';
|
|
52633
|
-
/**
|
|
52989
|
+
/**
|
|
52990
|
+
* Updated agent record. `appId`/`appClientId` are cleared; tunnelUrl
|
|
52991
|
+
* and agentApiKey are refreshed to the values the agent reports post-reset.
|
|
52992
|
+
*/
|
|
52634
52993
|
agent: VibecontrolsAgent;
|
|
52635
52994
|
/** Error message if the agent rejected reset or was unreachable. */
|
|
52636
52995
|
error?: Maybe<Scalars['String']['output']>;
|
|
52637
|
-
/**
|
|
52996
|
+
/**
|
|
52997
|
+
* Newly generated API key. The platform stored this on the agent record;
|
|
52998
|
+
* return it once for operator audit so it can also be copied if needed.
|
|
52999
|
+
*/
|
|
52638
53000
|
newApiKey: Scalars['String']['output'];
|
|
52639
53001
|
/** Whether reset succeeded end-to-end (agent reachable + wipe completed). */
|
|
52640
53002
|
success: Scalars['Boolean']['output'];
|
|
@@ -54765,7 +55127,10 @@ export type ServiceProviderFilterInput = {
|
|
|
54765
55127
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
54766
55128
|
};
|
|
54767
55129
|
|
|
54768
|
-
/**
|
|
55130
|
+
/**
|
|
55131
|
+
* An interactive or background process running in a development environment.
|
|
55132
|
+
* Sessions can be tmux sessions, SSH sessions, terminals, or custom processes.
|
|
55133
|
+
*/
|
|
54769
55134
|
export type Session = {
|
|
54770
55135
|
__typename?: 'Session';
|
|
54771
55136
|
/** Agent executing this session */
|
|
@@ -55235,7 +55600,10 @@ export type ShareVaultInput = {
|
|
|
55235
55600
|
vaultId: Scalars['ID']['input'];
|
|
55236
55601
|
};
|
|
55237
55602
|
|
|
55238
|
-
/**
|
|
55603
|
+
/**
|
|
55604
|
+
* A read-only representation of a VibeDeck for shared/public access.
|
|
55605
|
+
* Exposes only safe fields — no commands, scripts, webhook URLs, or secrets.
|
|
55606
|
+
*/
|
|
55239
55607
|
export type SharedVibeDeck = {
|
|
55240
55608
|
__typename?: 'SharedVibeDeck';
|
|
55241
55609
|
buttonSize?: Maybe<Scalars['String']['output']>;
|
|
@@ -55250,7 +55618,10 @@ export type SharedVibeDeck = {
|
|
|
55250
55618
|
permission: VibeDeckSharePermission;
|
|
55251
55619
|
};
|
|
55252
55620
|
|
|
55253
|
-
/**
|
|
55621
|
+
/**
|
|
55622
|
+
* A sanitized button representation for shared access.
|
|
55623
|
+
* Only display metadata — no executable details exposed.
|
|
55624
|
+
*/
|
|
55254
55625
|
export type SharedVibeDeckButton = {
|
|
55255
55626
|
__typename?: 'SharedVibeDeckButton';
|
|
55256
55627
|
actionType: VibeDeckButtonActionType;
|
|
@@ -55850,7 +56221,10 @@ export type Subscription = {
|
|
|
55850
56221
|
exportJobProgress: ExportJob;
|
|
55851
56222
|
/** Subscribe to file deletion events */
|
|
55852
56223
|
fileDeleted: FileDeletedEvent;
|
|
55853
|
-
/**
|
|
56224
|
+
/**
|
|
56225
|
+
* Subscribe to all file events in a workspace
|
|
56226
|
+
* Real-time updates for file uploads, updates, deletions, etc.
|
|
56227
|
+
*/
|
|
55854
56228
|
fileEvents: FileEventUnion;
|
|
55855
56229
|
/** Subscribe to lock events for a specific file */
|
|
55856
56230
|
fileLockChanged: FileLock;
|
|
@@ -55925,7 +56299,11 @@ export type Subscription = {
|
|
|
55925
56299
|
presenceChanged: Presence;
|
|
55926
56300
|
/** Subscribe to quota warnings for workspace */
|
|
55927
56301
|
quotaWarning: QuotaWarningEvent;
|
|
55928
|
-
/**
|
|
56302
|
+
/**
|
|
56303
|
+
* Live stream of AI tool events for an agent. Emits the recent-events
|
|
56304
|
+
* array (most recent first, capped at `limit`) on every new event so
|
|
56305
|
+
* the UI can replace the polling query with a single subscription.
|
|
56306
|
+
*/
|
|
55929
56307
|
recentAiToolEventsStream: Array<AiToolEvent>;
|
|
55930
56308
|
reportRunUpdates: ReportRun;
|
|
55931
56309
|
/**
|
|
@@ -55972,7 +56350,10 @@ export type Subscription = {
|
|
|
55972
56350
|
userActivityUpdates: ActivityLog;
|
|
55973
56351
|
/** Subscribe to when user is mentioned in comments */
|
|
55974
56352
|
userMentioned: UserMentionedEvent;
|
|
55975
|
-
/**
|
|
56353
|
+
/**
|
|
56354
|
+
* Subscribe to real-time user presence on a file
|
|
56355
|
+
* Useful for showing who's currently viewing/editing a file
|
|
56356
|
+
*/
|
|
55976
56357
|
userPresence: UserPresenceEvent;
|
|
55977
56358
|
/** Real-time audit events for the workspace */
|
|
55978
56359
|
vibeAuditLogCreated: VibeAuditLog;
|
|
@@ -55980,9 +56361,18 @@ export type Subscription = {
|
|
|
55980
56361
|
vibeStatusChanged: Vibe;
|
|
55981
56362
|
/** Subscribe to vibe updates */
|
|
55982
56363
|
vibeUpdated: Vibe;
|
|
55983
|
-
/**
|
|
56364
|
+
/**
|
|
56365
|
+
* Stream of all agent health probe results for the workspace. Replaces
|
|
56366
|
+
* client-side polling of vibecontrolsAgentHealthProbes — emits the full
|
|
56367
|
+
* array each time any agent's health changes (or on a 30s heartbeat).
|
|
56368
|
+
*/
|
|
55984
56369
|
vibecontrolsAgentHealthProbeStream: Array<AgentHealthProbeResult>;
|
|
55985
|
-
/**
|
|
56370
|
+
/**
|
|
56371
|
+
* Stream of installed plugins on a single agent. Replaces FE polling of
|
|
56372
|
+
* the `agentPlugins` query. The svc proxies the agent's /api/plugins
|
|
56373
|
+
* every 30s server-side and emits the new list whenever it diverges
|
|
56374
|
+
* from the last snapshot. Pass `agentId` to scope to one agent.
|
|
56375
|
+
*/
|
|
55986
56376
|
vibecontrolsAgentPluginStream: Array<AgentPlugin>;
|
|
55987
56377
|
/** Subscribe to catalog updates */
|
|
55988
56378
|
vibecontrolsCatalogUpdated: VibecontrolsCatalog;
|
|
@@ -56738,7 +57128,11 @@ export type TagAssignmentList = {
|
|
|
56738
57128
|
__typename?: 'TagAssignmentList';
|
|
56739
57129
|
hasMore: Scalars['Boolean']['output'];
|
|
56740
57130
|
items: Array<UniversalTagAssignment>;
|
|
56741
|
-
/**
|
|
57131
|
+
/**
|
|
57132
|
+
* Opaque cursor pointing to the item immediately after the last item in
|
|
57133
|
+
* `items`. Pass it back as `pagination.cursor` to fetch the next page.
|
|
57134
|
+
* Null when `hasMore` is false.
|
|
57135
|
+
*/
|
|
56742
57136
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
56743
57137
|
total: Scalars['Int']['output'];
|
|
56744
57138
|
};
|
|
@@ -56882,7 +57276,11 @@ export type TagList = {
|
|
|
56882
57276
|
__typename?: 'TagList';
|
|
56883
57277
|
hasMore: Scalars['Boolean']['output'];
|
|
56884
57278
|
items: Array<UniversalTag>;
|
|
56885
|
-
/**
|
|
57279
|
+
/**
|
|
57280
|
+
* Opaque cursor pointing to the item immediately after the last item in
|
|
57281
|
+
* `items`. Pass it back as `pagination.cursor` to fetch the next page.
|
|
57282
|
+
* Null when `hasMore` is false.
|
|
57283
|
+
*/
|
|
56886
57284
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
56887
57285
|
total: Scalars['Int']['output'];
|
|
56888
57286
|
};
|
|
@@ -57803,7 +58201,10 @@ export type TriggerWorkflowInput = {
|
|
|
57803
58201
|
workflowKey: Scalars['String']['input'];
|
|
57804
58202
|
};
|
|
57805
58203
|
|
|
57806
|
-
/**
|
|
58204
|
+
/**
|
|
58205
|
+
* A managed tunnel exposing a local service to the public internet.
|
|
58206
|
+
* Tunnels are workspace-scoped and bound to an agent machine.
|
|
58207
|
+
*/
|
|
57807
58208
|
export type Tunnel = {
|
|
57808
58209
|
__typename?: 'Tunnel';
|
|
57809
58210
|
/** Currently active sessions for this tunnel. */
|
|
@@ -57840,16 +58241,31 @@ export type Tunnel = {
|
|
|
57840
58241
|
workspaceId: Scalars['ID']['output'];
|
|
57841
58242
|
};
|
|
57842
58243
|
|
|
57843
|
-
/**
|
|
58244
|
+
/**
|
|
58245
|
+
* A domain attached to a tunnel. Either a managed subdomain under
|
|
58246
|
+
* *.vibetunnels.com (auto-verified at reservation time) or a user-owned custom
|
|
58247
|
+
* domain verified via a TXT record challenge.
|
|
58248
|
+
*/
|
|
57844
58249
|
export type TunnelDomain = {
|
|
57845
58250
|
__typename?: 'TunnelDomain';
|
|
57846
|
-
/**
|
|
58251
|
+
/**
|
|
58252
|
+
* Name of the TXT record the user must create for verification
|
|
58253
|
+
* (e.g. `_vibetunnels-challenge.example.com`). Only populated for CUSTOM
|
|
58254
|
+
* domains in PENDING or VERIFYING state.
|
|
58255
|
+
*/
|
|
57847
58256
|
challengeRecordName?: Maybe<Scalars['String']['output']>;
|
|
57848
|
-
/**
|
|
58257
|
+
/**
|
|
58258
|
+
* Verification token value the user must put in the TXT record. Only
|
|
58259
|
+
* returned while verification is still in progress — redacted after
|
|
58260
|
+
* verification completes.
|
|
58261
|
+
*/
|
|
57849
58262
|
challengeToken?: Maybe<Scalars['String']['output']>;
|
|
57850
58263
|
createdAt: Scalars['DateTime']['output'];
|
|
57851
58264
|
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
57852
|
-
/**
|
|
58265
|
+
/**
|
|
58266
|
+
* Suggested DNS target (CNAME) the user should point their custom domain at
|
|
58267
|
+
* once verification is complete.
|
|
58268
|
+
*/
|
|
57853
58269
|
dnsTargetHint?: Maybe<Scalars['String']['output']>;
|
|
57854
58270
|
environment?: Maybe<TunnelEnvironment>;
|
|
57855
58271
|
hostname: Scalars['String']['output'];
|
|
@@ -57857,7 +58273,10 @@ export type TunnelDomain = {
|
|
|
57857
58273
|
isPrimary: Scalars['Boolean']['output'];
|
|
57858
58274
|
lastCheckError?: Maybe<Scalars['String']['output']>;
|
|
57859
58275
|
lastCheckedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
57860
|
-
/**
|
|
58276
|
+
/**
|
|
58277
|
+
* The tunnel this domain is attached to. Null for reserved-but-unattached
|
|
58278
|
+
* domains.
|
|
58279
|
+
*/
|
|
57861
58280
|
tunnel?: Maybe<Tunnel>;
|
|
57862
58281
|
tunnelId?: Maybe<Scalars['ID']['output']>;
|
|
57863
58282
|
type: TunnelDomainType;
|
|
@@ -57923,7 +58342,10 @@ export enum TunnelProtocol {
|
|
|
57923
58342
|
Udp = 'UDP'
|
|
57924
58343
|
}
|
|
57925
58344
|
|
|
57926
|
-
/**
|
|
58345
|
+
/**
|
|
58346
|
+
* A tunnel provider implementation. Seeded rows: VIBETUNNELS (frp-based) and
|
|
58347
|
+
* CLOUDFLARE (cloudflared-based).
|
|
58348
|
+
*/
|
|
57927
58349
|
export type TunnelProvider = {
|
|
57928
58350
|
__typename?: 'TunnelProvider';
|
|
57929
58351
|
capabilities: TunnelProviderCapabilities;
|
|
@@ -57965,7 +58387,10 @@ export enum TunnelProviderKey {
|
|
|
57965
58387
|
Vibetunnels = 'VIBETUNNELS'
|
|
57966
58388
|
}
|
|
57967
58389
|
|
|
57968
|
-
/**
|
|
58390
|
+
/**
|
|
58391
|
+
* A single tunnel session lifetime. Represents one token-authenticated
|
|
58392
|
+
* connection from the agent's provider subprocess to the tunnel server.
|
|
58393
|
+
*/
|
|
57969
58394
|
export type TunnelSession = {
|
|
57970
58395
|
__typename?: 'TunnelSession';
|
|
57971
58396
|
agentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -57982,13 +58407,21 @@ export type TunnelSession = {
|
|
|
57982
58407
|
revokedReason?: Maybe<Scalars['String']['output']>;
|
|
57983
58408
|
shardId?: Maybe<Scalars['ID']['output']>;
|
|
57984
58409
|
status: TunnelSessionStatus;
|
|
57985
|
-
/**
|
|
58410
|
+
/**
|
|
58411
|
+
* First 8 hex characters of the token hash — useful for UI identification
|
|
58412
|
+
* without exposing the token itself.
|
|
58413
|
+
*/
|
|
57986
58414
|
tokenFingerprint: Scalars['String']['output'];
|
|
57987
58415
|
tunnelId: Scalars['ID']['output'];
|
|
57988
58416
|
workspaceId: Scalars['ID']['output'];
|
|
57989
58417
|
};
|
|
57990
58418
|
|
|
57991
|
-
/**
|
|
58419
|
+
/**
|
|
58420
|
+
* Result of issuing a tunnel session. The token is returned exactly once — the
|
|
58421
|
+
* backend stores only its sha256 hash. The agentConfigHint contains provider-
|
|
58422
|
+
* specific connection metadata (frps address, proxy name, etc.) that the agent
|
|
58423
|
+
* plugin uses to spawn frpc or cloudflared.
|
|
58424
|
+
*/
|
|
57992
58425
|
export type TunnelSessionIssueResult = {
|
|
57993
58426
|
__typename?: 'TunnelSessionIssueResult';
|
|
57994
58427
|
agentConfigHint: Scalars['JSON']['output'];
|
|
@@ -58011,7 +58444,10 @@ export enum TunnelSessionStatus {
|
|
|
58011
58444
|
Revoked = 'REVOKED'
|
|
58012
58445
|
}
|
|
58013
58446
|
|
|
58014
|
-
/**
|
|
58447
|
+
/**
|
|
58448
|
+
* A tunnel server shard (e.g. an frps instance). Backends select a shard when
|
|
58449
|
+
* issuing a session.
|
|
58450
|
+
*/
|
|
58015
58451
|
export type TunnelShard = {
|
|
58016
58452
|
__typename?: 'TunnelShard';
|
|
58017
58453
|
capacity: Scalars['Int']['output'];
|
|
@@ -58078,7 +58514,10 @@ export type TypingIndicatorPayload = {
|
|
|
58078
58514
|
userId: Scalars['ID']['output'];
|
|
58079
58515
|
};
|
|
58080
58516
|
|
|
58081
|
-
/**
|
|
58517
|
+
/**
|
|
58518
|
+
* Persisted UI state for user sessions.
|
|
58519
|
+
* Stores active vibe, panel layout, and user preferences.
|
|
58520
|
+
*/
|
|
58082
58521
|
export type UiSession = {
|
|
58083
58522
|
__typename?: 'UISession';
|
|
58084
58523
|
/** Currently active session */
|
|
@@ -58115,7 +58554,10 @@ export type UninstallAppPayload = {
|
|
|
58115
58554
|
success: Scalars['Boolean']['output'];
|
|
58116
58555
|
};
|
|
58117
58556
|
|
|
58118
|
-
/**
|
|
58557
|
+
/**
|
|
58558
|
+
* UniversalTag type stub - exists in wspace-tags-svc
|
|
58559
|
+
* Federation stub for referencing tags from other services
|
|
58560
|
+
*/
|
|
58119
58561
|
export type UniversalTag = {
|
|
58120
58562
|
__typename?: 'UniversalTag';
|
|
58121
58563
|
ancestors: Array<UniversalTag>;
|
|
@@ -59234,7 +59676,10 @@ export type UpdateFileInput = {
|
|
|
59234
59676
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
59235
59677
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
|
59236
59678
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
59237
|
-
/**
|
|
59679
|
+
/**
|
|
59680
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key,value,...}`
|
|
59681
|
+
* records. Replaces the row's `File.tags` Json column on update.
|
|
59682
|
+
*/
|
|
59238
59683
|
tags?: InputMaybe<Scalars['JSON']['input']>;
|
|
59239
59684
|
visibility?: InputMaybe<FileVisibility>;
|
|
59240
59685
|
};
|
|
@@ -59271,7 +59716,10 @@ export type UpdateFolderInput = {
|
|
|
59271
59716
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
59272
59717
|
icon?: InputMaybe<Scalars['String']['input']>;
|
|
59273
59718
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
59274
|
-
/**
|
|
59719
|
+
/**
|
|
59720
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key,value,...}`
|
|
59721
|
+
* records. Replaces the row's `Folder.tags` Json column on update.
|
|
59722
|
+
*/
|
|
59275
59723
|
tags?: InputMaybe<Scalars['JSON']['input']>;
|
|
59276
59724
|
visibility?: InputMaybe<FileVisibility>;
|
|
59277
59725
|
};
|
|
@@ -60572,15 +61020,25 @@ export type UpdateVibeInput = {
|
|
|
60572
61020
|
context?: InputMaybe<ContextInput>;
|
|
60573
61021
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
60574
61022
|
environmentVariables?: InputMaybe<Scalars['JSON']['input']>;
|
|
60575
|
-
/**
|
|
61023
|
+
/**
|
|
61024
|
+
* Partial feature flag overrides ({ featureId: boolean }). Provided keys are
|
|
61025
|
+
* merged on top of the existing stored value; omitted keys are left untouched.
|
|
61026
|
+
* Unknown feature ids are ignored.
|
|
61027
|
+
*/
|
|
60576
61028
|
featureFlags?: InputMaybe<Scalars['JSON']['input']>;
|
|
60577
61029
|
gitBranch?: InputMaybe<Scalars['String']['input']>;
|
|
60578
61030
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
60579
61031
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
60580
61032
|
status?: InputMaybe<VibeStatus>;
|
|
60581
|
-
/**
|
|
61033
|
+
/**
|
|
61034
|
+
* Legacy tag input (string array). Use `tagsV2` for the canonical
|
|
61035
|
+
* `[{key,value,...}]` shape (marqueue §251). Both fields are still written.
|
|
61036
|
+
*/
|
|
60582
61037
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
60583
|
-
/**
|
|
61038
|
+
/**
|
|
61039
|
+
* Canonical universal-tag input (marqueue §251). JSON array of `{key,value,...}`
|
|
61040
|
+
* records. When provided, takes precedence over legacy `tags`.
|
|
61041
|
+
*/
|
|
60584
61042
|
tagsV2?: InputMaybe<Scalars['JSON']['input']>;
|
|
60585
61043
|
};
|
|
60586
61044
|
|
|
@@ -60893,7 +61351,10 @@ export type UploadFileInput = {
|
|
|
60893
61351
|
s3Bucket: Scalars['String']['input'];
|
|
60894
61352
|
s3Key: Scalars['String']['input'];
|
|
60895
61353
|
size: Scalars['BigInt']['input'];
|
|
60896
|
-
/**
|
|
61354
|
+
/**
|
|
61355
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key,value,...}`
|
|
61356
|
+
* records. Backed by the canonical `File.tags` Json column.
|
|
61357
|
+
*/
|
|
60897
61358
|
tags?: InputMaybe<Scalars['JSON']['input']>;
|
|
60898
61359
|
visibility?: InputMaybe<FileVisibility>;
|
|
60899
61360
|
};
|
|
@@ -61848,7 +62309,10 @@ export enum VersionStatus {
|
|
|
61848
62309
|
Published = 'PUBLISHED'
|
|
61849
62310
|
}
|
|
61850
62311
|
|
|
61851
|
-
/**
|
|
62312
|
+
/**
|
|
62313
|
+
* A development project or repository representing a development environment.
|
|
62314
|
+
* Vibes can be organized hierarchically and support various types (local, remote, docker, cloud).
|
|
62315
|
+
*/
|
|
61852
62316
|
export type Vibe = {
|
|
61853
62317
|
__typename?: 'Vibe';
|
|
61854
62318
|
/** Agent managing this vibe */
|
|
@@ -61867,11 +62331,18 @@ export type Vibe = {
|
|
|
61867
62331
|
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
61868
62332
|
/** Vibe description */
|
|
61869
62333
|
description?: Maybe<Scalars['String']['output']>;
|
|
61870
|
-
/**
|
|
62334
|
+
/**
|
|
62335
|
+
* Per-vibe feature toggles after merging stored overrides on top of the catalog defaults.
|
|
62336
|
+
* Always returns a value for every known feature id.
|
|
62337
|
+
*/
|
|
61871
62338
|
effectiveFeatureFlags: Scalars['JSON']['output'];
|
|
61872
62339
|
/** Environment variables */
|
|
61873
62340
|
environmentVariables?: Maybe<Scalars['JSON']['output']>;
|
|
61874
|
-
/**
|
|
62341
|
+
/**
|
|
62342
|
+
* Raw per-vibe feature toggles as stored on the vibe.
|
|
62343
|
+
* Shape: { "<featureId>": boolean }. Missing keys fall back to the catalog default.
|
|
62344
|
+
* Use `effectiveFeatureFlags` for the merged view that the UI should drive off.
|
|
62345
|
+
*/
|
|
61875
62346
|
featureFlags?: Maybe<Scalars['JSON']['output']>;
|
|
61876
62347
|
/** Current Git branch */
|
|
61877
62348
|
gitBranch?: Maybe<Scalars['String']['output']>;
|
|
@@ -61899,11 +62370,15 @@ export type Vibe = {
|
|
|
61899
62370
|
status: VibeStatus;
|
|
61900
62371
|
tagAssignments: Array<EntityTagAssignment>;
|
|
61901
62372
|
/**
|
|
61902
|
-
* Tags for categorization (legacy String[] shape).
|
|
62373
|
+
* Tags for categorization (legacy String[] shape).
|
|
62374
|
+
* Backwards-compat projection of the canonical `tagsV2` Json column (marqueue §251).
|
|
61903
62375
|
* @deprecated Use tagsV2 (canonical Json shape). This field will be removed once consumers migrate.
|
|
61904
62376
|
*/
|
|
61905
62377
|
tags: Array<Scalars['String']['output']>;
|
|
61906
|
-
/**
|
|
62378
|
+
/**
|
|
62379
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key, value, ...}`
|
|
62380
|
+
* records mirroring `wspace-workspace-svc` Project.tags shape.
|
|
62381
|
+
*/
|
|
61907
62382
|
tagsV2: Scalars['JSON']['output'];
|
|
61908
62383
|
/** Vibe type */
|
|
61909
62384
|
type: VibeType;
|
|
@@ -61970,7 +62445,10 @@ export type VibeAuditDayCount = {
|
|
|
61970
62445
|
};
|
|
61971
62446
|
|
|
61972
62447
|
export type VibeAuditDeleteInput = {
|
|
61973
|
-
/**
|
|
62448
|
+
/**
|
|
62449
|
+
* Reason for deleting this audit log entry (required for compliance).
|
|
62450
|
+
* This deletion is itself recorded as an audit event.
|
|
62451
|
+
*/
|
|
61974
62452
|
reason: Scalars['String']['input'];
|
|
61975
62453
|
};
|
|
61976
62454
|
|
|
@@ -61984,7 +62462,10 @@ export type VibeAuditExportInput = {
|
|
|
61984
62462
|
format?: InputMaybe<VibeAuditExportFormat>;
|
|
61985
62463
|
};
|
|
61986
62464
|
|
|
61987
|
-
/**
|
|
62465
|
+
/**
|
|
62466
|
+
* An audit log entry recording a single operation within VibeControls.
|
|
62467
|
+
* Captures who did what, when, on which resource, with full state snapshots.
|
|
62468
|
+
*/
|
|
61988
62469
|
export type VibeAuditLog = {
|
|
61989
62470
|
__typename?: 'VibeAuditLog';
|
|
61990
62471
|
action: VibeAuditAction;
|
|
@@ -62317,7 +62798,10 @@ export type VibeDeckShareLinkList = {
|
|
|
62317
62798
|
total: Scalars['Int']['output'];
|
|
62318
62799
|
};
|
|
62319
62800
|
|
|
62320
|
-
/**
|
|
62801
|
+
/**
|
|
62802
|
+
* Result of validating a share link token. Used by the public shared page
|
|
62803
|
+
* to determine if the link is valid and what access it grants.
|
|
62804
|
+
*/
|
|
62321
62805
|
export type VibeDeckShareLinkValidation = {
|
|
62322
62806
|
__typename?: 'VibeDeckShareLinkValidation';
|
|
62323
62807
|
allowIframe?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -62400,7 +62884,10 @@ export enum VibecontrolsActionType {
|
|
|
62400
62884
|
Workflow = 'WORKFLOW'
|
|
62401
62885
|
}
|
|
62402
62886
|
|
|
62403
|
-
/**
|
|
62887
|
+
/**
|
|
62888
|
+
* A service running on a host machine that manages local development environments.
|
|
62889
|
+
* Agents execute sessions and manage vibes.
|
|
62890
|
+
*/
|
|
62404
62891
|
export type VibecontrolsAgent = {
|
|
62405
62892
|
__typename?: 'VibecontrolsAgent';
|
|
62406
62893
|
/** API key for authenticating with the agent (changes on agent restart) */
|
|
@@ -62452,7 +62939,11 @@ export type VibecontrolsAgent = {
|
|
|
62452
62939
|
targetId: Scalars['String']['output'];
|
|
62453
62940
|
/** Tunnel connection status */
|
|
62454
62941
|
tunnelStatus?: Maybe<Scalars['String']['output']>;
|
|
62455
|
-
/**
|
|
62942
|
+
/**
|
|
62943
|
+
* Tunnel URL for remote access — single canonical URL the platform uses
|
|
62944
|
+
* to reach the agent (legacy `apiUrl` was consolidated into this field
|
|
62945
|
+
* on 2026-05-01).
|
|
62946
|
+
*/
|
|
62456
62947
|
tunnelUrl?: Maybe<Scalars['String']['output']>;
|
|
62457
62948
|
/** Timestamp when last updated */
|
|
62458
62949
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -62479,7 +62970,11 @@ export type VibecontrolsAgentList = {
|
|
|
62479
62970
|
total: Scalars['Int']['output'];
|
|
62480
62971
|
};
|
|
62481
62972
|
|
|
62482
|
-
/**
|
|
62973
|
+
/**
|
|
62974
|
+
* Result of `vibecontrolsAgentNetworkLookup` — the live tunnel URL and a
|
|
62975
|
+
* peer API key the caller can use to talk to the target. The key is minted
|
|
62976
|
+
* fresh on every lookup and bound to the operation tag for audit logging.
|
|
62977
|
+
*/
|
|
62483
62978
|
export type VibecontrolsAgentNetworkLookupResult = {
|
|
62484
62979
|
__typename?: 'VibecontrolsAgentNetworkLookupResult';
|
|
62485
62980
|
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -62488,7 +62983,10 @@ export type VibecontrolsAgentNetworkLookupResult = {
|
|
|
62488
62983
|
tunnelUrl: Scalars['String']['output'];
|
|
62489
62984
|
};
|
|
62490
62985
|
|
|
62491
|
-
/**
|
|
62986
|
+
/**
|
|
62987
|
+
* A named profile hosted by an agent. The profile's `name` is the path
|
|
62988
|
+
* segment used when reaching `/api/profiles/<name>/...` on the agent.
|
|
62989
|
+
*/
|
|
62492
62990
|
export type VibecontrolsAgentProfile = {
|
|
62493
62991
|
__typename?: 'VibecontrolsAgentProfile';
|
|
62494
62992
|
agentId: Scalars['ID']['output'];
|
|
@@ -62517,7 +63015,10 @@ export type VibecontrolsAnalyticsInput = {
|
|
|
62517
63015
|
vibeId?: InputMaybe<Scalars['ID']['input']>;
|
|
62518
63016
|
};
|
|
62519
63017
|
|
|
62520
|
-
/**
|
|
63018
|
+
/**
|
|
63019
|
+
* Consolidated analytics result for all VibeControls entities.
|
|
63020
|
+
* Fields are nullable — null means the entity was not requested via entityTypes filter.
|
|
63021
|
+
*/
|
|
62521
63022
|
export type VibecontrolsAnalyticsResult = {
|
|
62522
63023
|
__typename?: 'VibecontrolsAnalyticsResult';
|
|
62523
63024
|
actions?: Maybe<ActionAnalytics>;
|
|
@@ -62538,7 +63039,10 @@ export type VibecontrolsAnalyticsResult = {
|
|
|
62538
63039
|
webhooks?: Maybe<WebhookAnalytics>;
|
|
62539
63040
|
};
|
|
62540
63041
|
|
|
62541
|
-
/**
|
|
63042
|
+
/**
|
|
63043
|
+
* A curated collection of components and vibes within a workspace.
|
|
63044
|
+
* Catalogs support visibility controls, dependency graphs, and aggregated SBOMs.
|
|
63045
|
+
*/
|
|
62542
63046
|
export type VibecontrolsCatalog = {
|
|
62543
63047
|
__typename?: 'VibecontrolsCatalog';
|
|
62544
63048
|
/** Number of components in this catalog */
|
|
@@ -62651,7 +63155,10 @@ export type VibecontrolsCloneTemplateInput = {
|
|
|
62651
63155
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
62652
63156
|
};
|
|
62653
63157
|
|
|
62654
|
-
/**
|
|
63158
|
+
/**
|
|
63159
|
+
* A software component (microservice, library, API, etc.) registered in the service catalog.
|
|
63160
|
+
* Components can be organized into catalogs, scored via scorecards, and published as templates.
|
|
63161
|
+
*/
|
|
62655
63162
|
export type VibecontrolsComponent = {
|
|
62656
63163
|
__typename?: 'VibecontrolsComponent';
|
|
62657
63164
|
/** Number of catalogs this component belongs to */
|
|
@@ -62789,7 +63296,12 @@ export type VibecontrolsDocsBuildImageList = {
|
|
|
62789
63296
|
total: Scalars['Int']['output'];
|
|
62790
63297
|
};
|
|
62791
63298
|
|
|
62792
|
-
/**
|
|
63299
|
+
/**
|
|
63300
|
+
* Image pull policy for sandbox builder pods (mirrors Kubernetes semantics):
|
|
63301
|
+
* - IF_NOT_PRESENT (default): pull only if missing from the node cache.
|
|
63302
|
+
* - ALWAYS: pull on every build (use when imageRef is a mutable tag).
|
|
63303
|
+
* - DIGEST_ONLY: refuse to schedule unless imageRef is a digest pin (sha256:...).
|
|
63304
|
+
*/
|
|
62793
63305
|
export enum VibecontrolsDocsBuildImagePullPolicy {
|
|
62794
63306
|
Always = 'ALWAYS',
|
|
62795
63307
|
DigestOnly = 'DIGEST_ONLY',
|
|
@@ -62988,7 +63500,11 @@ export enum VibecontrolsDocsSiteVisibility {
|
|
|
62988
63500
|
Public = 'PUBLIC'
|
|
62989
63501
|
}
|
|
62990
63502
|
|
|
62991
|
-
/**
|
|
63503
|
+
/**
|
|
63504
|
+
* Decrypted integration token returned to the agent. Same shape as
|
|
63505
|
+
* `ConnectionToken` from wspace-integrations-svc, kept local so we don't
|
|
63506
|
+
* have to extend a federated type owned by another subgraph.
|
|
63507
|
+
*/
|
|
62992
63508
|
export type VibecontrolsIntegrationToken = {
|
|
62993
63509
|
__typename?: 'VibecontrolsIntegrationToken';
|
|
62994
63510
|
accessToken: Scalars['String']['output'];
|
|
@@ -63000,10 +63516,17 @@ export type VibecontrolsIntegrationToken = {
|
|
|
63000
63516
|
tokenType: Scalars['String']['output'];
|
|
63001
63517
|
};
|
|
63002
63518
|
|
|
63003
|
-
/**
|
|
63519
|
+
/**
|
|
63520
|
+
* Result of `vibecontrolsResolveIntegrationToken` — a passthrough of the
|
|
63521
|
+
* upstream `ConnectionTokenResult` from wspace-integrations-svc, narrowed to
|
|
63522
|
+
* the fields agents actually need at runtime.
|
|
63523
|
+
*/
|
|
63004
63524
|
export type VibecontrolsIntegrationTokenResult = {
|
|
63005
63525
|
__typename?: 'VibecontrolsIntegrationTokenResult';
|
|
63006
|
-
/**
|
|
63526
|
+
/**
|
|
63527
|
+
* Current connection status after resolution
|
|
63528
|
+
* (e.g. ACTIVE, EXPIRED, REVOKED).
|
|
63529
|
+
*/
|
|
63007
63530
|
connectionStatus: Scalars['String']['output'];
|
|
63008
63531
|
/** Error message if `success` is false. */
|
|
63009
63532
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -63015,7 +63538,10 @@ export type VibecontrolsIntegrationTokenResult = {
|
|
|
63015
63538
|
wasRefreshed: Scalars['Boolean']['output'];
|
|
63016
63539
|
};
|
|
63017
63540
|
|
|
63018
|
-
/**
|
|
63541
|
+
/**
|
|
63542
|
+
* A markdown-formatted note associated with a vibe or workspace.
|
|
63543
|
+
* Notes support tagging, pinning, and full-text search.
|
|
63544
|
+
*/
|
|
63019
63545
|
export type VibecontrolsNote = {
|
|
63020
63546
|
__typename?: 'VibecontrolsNote';
|
|
63021
63547
|
/** Markdown content */
|
|
@@ -63194,7 +63720,10 @@ export enum VibecontrolsSessionType {
|
|
|
63194
63720
|
Zellij = 'ZELLIJ'
|
|
63195
63721
|
}
|
|
63196
63722
|
|
|
63197
|
-
/**
|
|
63723
|
+
/**
|
|
63724
|
+
* A reusable template created from a component snapshot.
|
|
63725
|
+
* Templates can be instantiated to create new components.
|
|
63726
|
+
*/
|
|
63198
63727
|
export type VibecontrolsTemplate = {
|
|
63199
63728
|
__typename?: 'VibecontrolsTemplate';
|
|
63200
63729
|
/** Template category classification */
|
|
@@ -63376,7 +63905,11 @@ export type VocabularyList = {
|
|
|
63376
63905
|
__typename?: 'VocabularyList';
|
|
63377
63906
|
hasMore: Scalars['Boolean']['output'];
|
|
63378
63907
|
items: Array<TagVocabulary>;
|
|
63379
|
-
/**
|
|
63908
|
+
/**
|
|
63909
|
+
* Opaque cursor pointing to the item immediately after the last item in
|
|
63910
|
+
* `items`. Pass it back as `pagination.cursor` to fetch the next page.
|
|
63911
|
+
* Null when `hasMore` is false.
|
|
63912
|
+
*/
|
|
63380
63913
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
63381
63914
|
total: Scalars['Int']['output'];
|
|
63382
63915
|
};
|
|
@@ -63525,7 +64058,10 @@ export type WeatherMonthlySummary = {
|
|
|
63525
64058
|
year: Scalars['Int']['output'];
|
|
63526
64059
|
};
|
|
63527
64060
|
|
|
63528
|
-
/**
|
|
64061
|
+
/**
|
|
64062
|
+
* Webhook configuration for event notifications.
|
|
64063
|
+
* Webhooks receive HTTP POST requests when subscribed events occur.
|
|
64064
|
+
*/
|
|
63529
64065
|
export type Webhook = {
|
|
63530
64066
|
__typename?: 'Webhook';
|
|
63531
64067
|
/** Scoped agent IDs (empty = all agents) */
|