@burdenoff/microfe-movethewheels 2026.513.1 → 2026.514.1
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 +2 -1
- package/src/generated/wspace-types.ts +681 -145
|
@@ -255,7 +255,10 @@ export type AccessShareResult = {
|
|
|
255
255
|
export type AcquireLockInput = {
|
|
256
256
|
/** Auto-release lock when it expires (default: true) */
|
|
257
257
|
autoRelease?: InputMaybe<Scalars['Boolean']['input']>;
|
|
258
|
-
/**
|
|
258
|
+
/**
|
|
259
|
+
* Lock duration in seconds (default: 3600 = 1 hour)
|
|
260
|
+
* Max: 86400 (24 hours)
|
|
261
|
+
*/
|
|
259
262
|
durationSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
260
263
|
/** File ID to lock */
|
|
261
264
|
fileId: Scalars['ID']['input'];
|
|
@@ -270,7 +273,11 @@ export type AcquireLockResponse = {
|
|
|
270
273
|
message?: Maybe<Scalars['String']['output']>;
|
|
271
274
|
success: Scalars['Boolean']['output'];
|
|
272
275
|
};
|
|
273
|
-
/**
|
|
276
|
+
/**
|
|
277
|
+
* A reusable action that can be executed on agents, triggered via webhooks,
|
|
278
|
+
* or orchestrated as workflows. Actions are first-class entities that can be
|
|
279
|
+
* independently managed, shared via store, and referenced by VibeDeck buttons.
|
|
280
|
+
*/
|
|
274
281
|
export type Action = {
|
|
275
282
|
__typename?: 'Action';
|
|
276
283
|
actionType: VibecontrolsActionType;
|
|
@@ -320,7 +327,11 @@ export type Action = {
|
|
|
320
327
|
workingDirectory?: Maybe<Scalars['String']['output']>;
|
|
321
328
|
workspaceId: Scalars['ID']['output'];
|
|
322
329
|
};
|
|
323
|
-
/**
|
|
330
|
+
/**
|
|
331
|
+
* A reusable action that can be executed on agents, triggered via webhooks,
|
|
332
|
+
* or orchestrated as workflows. Actions are first-class entities that can be
|
|
333
|
+
* independently managed, shared via store, and referenced by VibeDeck buttons.
|
|
334
|
+
*/
|
|
324
335
|
export type ActionRecentExecutionsArgs = {
|
|
325
336
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
326
337
|
};
|
|
@@ -386,7 +397,10 @@ export type ActionDefinition = {
|
|
|
386
397
|
/** VIEWER role level includes this action by default */
|
|
387
398
|
viewerDefault: Scalars['Boolean']['output'];
|
|
388
399
|
};
|
|
389
|
-
/**
|
|
400
|
+
/**
|
|
401
|
+
* A record of an action execution with full status tracking, output capture,
|
|
402
|
+
* and timing information. Provides a persistent audit trail of all executions.
|
|
403
|
+
*/
|
|
390
404
|
export type ActionExecution = {
|
|
391
405
|
__typename?: 'ActionExecution';
|
|
392
406
|
action: Action;
|
|
@@ -1093,7 +1107,11 @@ export type AgentPluginListResult = {
|
|
|
1093
1107
|
/** Installed plugins */
|
|
1094
1108
|
installed: Array<AgentPlugin>;
|
|
1095
1109
|
};
|
|
1096
|
-
/**
|
|
1110
|
+
/**
|
|
1111
|
+
* Result of probing an agent's tunnel URL for health and identity.
|
|
1112
|
+
* Used by the Add Agent wizard (pre-creation) and Agent Detail page
|
|
1113
|
+
* to validate connectivity without the frontend calling the agent directly.
|
|
1114
|
+
*/
|
|
1097
1115
|
export type AgentProbeResult = {
|
|
1098
1116
|
__typename?: 'AgentProbeResult';
|
|
1099
1117
|
/** Agent software version from /health */
|
|
@@ -1277,7 +1295,10 @@ export declare enum AiPromptStatus {
|
|
|
1277
1295
|
Archived = "ARCHIVED",
|
|
1278
1296
|
Draft = "DRAFT"
|
|
1279
1297
|
}
|
|
1280
|
-
/**
|
|
1298
|
+
/**
|
|
1299
|
+
* An event from an AI coding tool running on an agent.
|
|
1300
|
+
* Used to track task completions, tool usage, and other AI tool activities.
|
|
1301
|
+
*/
|
|
1281
1302
|
export type AiToolEvent = {
|
|
1282
1303
|
__typename?: 'AiToolEvent';
|
|
1283
1304
|
/** Associated agent */
|
|
@@ -2924,7 +2945,10 @@ export type BulkAssignTagsInput = {
|
|
|
2924
2945
|
source?: InputMaybe<AssignmentSource>;
|
|
2925
2946
|
tagIds: Array<Scalars['ID']['input']>;
|
|
2926
2947
|
};
|
|
2927
|
-
/**
|
|
2948
|
+
/**
|
|
2949
|
+
* Input for assigning many tags to many entities in one round-trip.
|
|
2950
|
+
* Server applies the cartesian product (tagIds × targets).
|
|
2951
|
+
*/
|
|
2928
2952
|
export type BulkAssignTagsToEntitiesInput = {
|
|
2929
2953
|
/** Operation context for scoping (workspaceId, userId, projectId, etc.) */
|
|
2930
2954
|
context?: InputMaybe<ContextInput>;
|
|
@@ -4230,7 +4254,10 @@ export declare enum ConfigScope {
|
|
|
4230
4254
|
Vibe = "VIBE",
|
|
4231
4255
|
Workspace = "WORKSPACE"
|
|
4232
4256
|
}
|
|
4233
|
-
/**
|
|
4257
|
+
/**
|
|
4258
|
+
* Configuration key-value storage with scoping.
|
|
4259
|
+
* Supports workspace, vibe, session, and agent-scoped configurations.
|
|
4260
|
+
*/
|
|
4234
4261
|
export type Configuration = {
|
|
4235
4262
|
__typename?: 'Configuration';
|
|
4236
4263
|
/** Opaque IDs for cross-service context (organizationId, userId, etc.) */
|
|
@@ -5860,7 +5887,10 @@ export type CreateFolderInput = {
|
|
|
5860
5887
|
icon?: InputMaybe<Scalars['String']['input']>;
|
|
5861
5888
|
name: Scalars['String']['input'];
|
|
5862
5889
|
parentFolderId?: InputMaybe<Scalars['ID']['input']>;
|
|
5863
|
-
/**
|
|
5890
|
+
/**
|
|
5891
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key,value,...}`
|
|
5892
|
+
* records. Backed by the canonical `Folder.tags` Json column.
|
|
5893
|
+
*/
|
|
5864
5894
|
tags?: InputMaybe<Scalars['JSON']['input']>;
|
|
5865
5895
|
visibility?: InputMaybe<FileVisibility>;
|
|
5866
5896
|
};
|
|
@@ -6924,7 +6954,11 @@ export type CreateSessionInput = {
|
|
|
6924
6954
|
/** Operation context for scoping (workspaceId, userId, projectId, etc.) */
|
|
6925
6955
|
context?: InputMaybe<ContextInput>;
|
|
6926
6956
|
environmentVariables?: InputMaybe<Scalars['JSON']['input']>;
|
|
6927
|
-
/**
|
|
6957
|
+
/**
|
|
6958
|
+
* Provider-native session name (e.g. tmux session name). When set, the
|
|
6959
|
+
* agent attaches to that existing daemon-side session instead of
|
|
6960
|
+
* creating a new one. Agent errors if no such session exists.
|
|
6961
|
+
*/
|
|
6928
6962
|
externalSessionName?: InputMaybe<Scalars['String']['input']>;
|
|
6929
6963
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
6930
6964
|
name: Scalars['String']['input'];
|
|
@@ -7350,9 +7384,15 @@ export type CreateVibeInput = {
|
|
|
7350
7384
|
name: Scalars['String']['input'];
|
|
7351
7385
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
7352
7386
|
path: Scalars['String']['input'];
|
|
7353
|
-
/**
|
|
7387
|
+
/**
|
|
7388
|
+
* Legacy tag input (string array). Use `tagsV2` for the canonical
|
|
7389
|
+
* `[{key,value,...}]` shape (marqueue §251). Both fields are still written.
|
|
7390
|
+
*/
|
|
7354
7391
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7355
|
-
/**
|
|
7392
|
+
/**
|
|
7393
|
+
* Canonical universal-tag input (marqueue §251). JSON array of `{key,value,...}`
|
|
7394
|
+
* records. When provided, takes precedence over legacy `tags`.
|
|
7395
|
+
*/
|
|
7356
7396
|
tagsV2?: InputMaybe<Scalars['JSON']['input']>;
|
|
7357
7397
|
type: VibeType;
|
|
7358
7398
|
};
|
|
@@ -9516,7 +9556,11 @@ export type EntityList = {
|
|
|
9516
9556
|
__typename?: 'EntityList';
|
|
9517
9557
|
entities: Array<TaggedEntity>;
|
|
9518
9558
|
hasMore: Scalars['Boolean']['output'];
|
|
9519
|
-
/**
|
|
9559
|
+
/**
|
|
9560
|
+
* Opaque cursor pointing to the entity immediately after the last item in
|
|
9561
|
+
* `entities`. Pass it back as `pagination.cursor` to fetch the next page.
|
|
9562
|
+
* Null when `hasMore` is false.
|
|
9563
|
+
*/
|
|
9520
9564
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
9521
9565
|
total: Scalars['Int']['output'];
|
|
9522
9566
|
};
|
|
@@ -11926,7 +11970,11 @@ export type File = {
|
|
|
11926
11970
|
starred: Scalars['Boolean']['output'];
|
|
11927
11971
|
status: FileStatus;
|
|
11928
11972
|
tagAssignments: Array<FileTagAssignment>;
|
|
11929
|
-
/**
|
|
11973
|
+
/**
|
|
11974
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key, value, ...}`
|
|
11975
|
+
* records mirroring `wspace-workspace-svc` Project.tags shape. Lives alongside
|
|
11976
|
+
* `tagAssignments` (the wspace-tags-svc-backed structured view).
|
|
11977
|
+
*/
|
|
11930
11978
|
tags: Scalars['JSON']['output'];
|
|
11931
11979
|
updatedAt: Scalars['DateTime']['output'];
|
|
11932
11980
|
uploadedById: Scalars['ID']['output'];
|
|
@@ -12580,7 +12628,11 @@ export type Folder = {
|
|
|
12580
12628
|
subFolders?: Maybe<Array<Folder>>;
|
|
12581
12629
|
subfoldersCount?: Maybe<Scalars['Int']['output']>;
|
|
12582
12630
|
tagAssignments: Array<FolderTagAssignment>;
|
|
12583
|
-
/**
|
|
12631
|
+
/**
|
|
12632
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key, value, ...}`
|
|
12633
|
+
* records mirroring `wspace-workspace-svc` Project.tags shape. Lives alongside
|
|
12634
|
+
* `tagAssignments` (the wspace-tags-svc-backed structured view).
|
|
12635
|
+
*/
|
|
12584
12636
|
tags: Scalars['JSON']['output'];
|
|
12585
12637
|
updatedAt: Scalars['DateTime']['output'];
|
|
12586
12638
|
visibility: FileVisibility;
|
|
@@ -18065,11 +18117,20 @@ export type LockCheckResult = {
|
|
|
18065
18117
|
message?: Maybe<Scalars['String']['output']>;
|
|
18066
18118
|
};
|
|
18067
18119
|
export declare enum LockType {
|
|
18068
|
-
/**
|
|
18120
|
+
/**
|
|
18121
|
+
* Optimistic locking - last-write-wins with version check
|
|
18122
|
+
* Allows multiple users to work, validates on save
|
|
18123
|
+
*/
|
|
18069
18124
|
Optimistic = "OPTIMISTIC",
|
|
18070
|
-
/**
|
|
18125
|
+
/**
|
|
18126
|
+
* Pessimistic locking - exclusive lock
|
|
18127
|
+
* Only one user can edit at a time
|
|
18128
|
+
*/
|
|
18071
18129
|
Pessimistic = "PESSIMISTIC",
|
|
18072
|
-
/**
|
|
18130
|
+
/**
|
|
18131
|
+
* Shared read lock - multiple readers allowed
|
|
18132
|
+
* Prevents writes while reads are ongoing
|
|
18133
|
+
*/
|
|
18073
18134
|
Shared = "SHARED"
|
|
18074
18135
|
}
|
|
18075
18136
|
export declare enum LogAction {
|
|
@@ -18554,7 +18615,10 @@ export type MessageFilter = {
|
|
|
18554
18615
|
toDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18555
18616
|
types?: InputMaybe<Array<MessageType>>;
|
|
18556
18617
|
};
|
|
18557
|
-
/**
|
|
18618
|
+
/**
|
|
18619
|
+
* Message permissions for the current user
|
|
18620
|
+
* Calculated based on conversation membership, role, and settings
|
|
18621
|
+
*/
|
|
18558
18622
|
export type MessagePermissions = {
|
|
18559
18623
|
__typename?: 'MessagePermissions';
|
|
18560
18624
|
canDelete: Scalars['Boolean']['output'];
|
|
@@ -18994,7 +19058,16 @@ export type Mutation = {
|
|
|
18994
19058
|
addTrackingEvent: TrackingEvent;
|
|
18995
19059
|
/** Add a vibe to a catalog */
|
|
18996
19060
|
addVibeToVibecontrolsCatalog: VibecontrolsCatalogVibe;
|
|
18997
|
-
/**
|
|
19061
|
+
/**
|
|
19062
|
+
* Zero-config agent onboarding. Probes the agent via tunnelUrl + apiKey, then
|
|
19063
|
+
* chains registerOrUpdateAgent + setupAgentGatewayAuth + pushAgentGatewayAuth
|
|
19064
|
+
* in a single mutation so the operator only needs to paste the tunnel URL and
|
|
19065
|
+
* the agent's API key shown in its startup banner.
|
|
19066
|
+
*
|
|
19067
|
+
* On success the agent transitions from 'awaiting-config' to 'ready' inside
|
|
19068
|
+
* the POST /api/agent/gateway-auth call invoked during push — so by the time
|
|
19069
|
+
* this mutation returns, the agent is fully functional.
|
|
19070
|
+
*/
|
|
18998
19071
|
addVibecontrolsAgentFromTunnel: AddAgentFromTunnelResult;
|
|
18999
19072
|
/** Add a new metric to a scorecard */
|
|
19000
19073
|
addVibecontrolsScorecardMetric: VibecontrolsScorecardMetric;
|
|
@@ -19007,9 +19080,17 @@ export type Mutation = {
|
|
|
19007
19080
|
*/
|
|
19008
19081
|
addWorkspaceMember: WorkspaceMember;
|
|
19009
19082
|
adjustInventoryStock: InventoryItem;
|
|
19010
|
-
/**
|
|
19083
|
+
/**
|
|
19084
|
+
* Adopt an orphan agent session. Creates a Session row tracking the
|
|
19085
|
+
* existing daemon-side session (tmux/wezterm/zellij) and starts a web
|
|
19086
|
+
* terminal so the UI can attach. Idempotent — calling twice returns
|
|
19087
|
+
* the same row.
|
|
19088
|
+
*/
|
|
19011
19089
|
adoptAgentSession: Session;
|
|
19012
|
-
/**
|
|
19090
|
+
/**
|
|
19091
|
+
* Proxy a mutating AI request to an agent via the backend.
|
|
19092
|
+
* Path must start with /api/ai/.
|
|
19093
|
+
*/
|
|
19013
19094
|
agentAiMutate: AgentProxyResponse;
|
|
19014
19095
|
approveExpense: ExpenseEntry;
|
|
19015
19096
|
approveRequest: TimeApprovalRequest;
|
|
@@ -19071,7 +19152,11 @@ export type Mutation = {
|
|
|
19071
19152
|
/** Bulk assign a role to multiple actors */
|
|
19072
19153
|
bulkAssignRole: Scalars['Int']['output'];
|
|
19073
19154
|
bulkAssignTags: Array<UniversalTagAssignment>;
|
|
19074
|
-
/**
|
|
19155
|
+
/**
|
|
19156
|
+
* Assign N tags across M entities in one round-trip; server applies the
|
|
19157
|
+
* cartesian product (tagIds × targets). Replaces the per-entity loop the
|
|
19158
|
+
* bulk-operations UI used to do client-side.
|
|
19159
|
+
*/
|
|
19075
19160
|
bulkAssignTagsToEntities: Array<UniversalTagAssignment>;
|
|
19076
19161
|
bulkCreateAllocations: Array<ResourceAllocation>;
|
|
19077
19162
|
bulkCreateEmailTimeEntries: Array<EmailTimeEntry>;
|
|
@@ -19173,7 +19258,10 @@ export type Mutation = {
|
|
|
19173
19258
|
categorizeApplication: Array<ApplicationUsage>;
|
|
19174
19259
|
chatWithAgent: ChatResponse;
|
|
19175
19260
|
checkInToEvent: EventAttendee;
|
|
19176
|
-
/**
|
|
19261
|
+
/**
|
|
19262
|
+
* Check health of all running sessions by verifying them with their agents.
|
|
19263
|
+
* Updates status of dead sessions. Returns summary of the check.
|
|
19264
|
+
*/
|
|
19177
19265
|
checkSessionHealth: SessionHealthCheckResult;
|
|
19178
19266
|
/** Clean up expired batch downloads (admin) */
|
|
19179
19267
|
cleanupExpiredBatchDownloads: Scalars['Int']['output'];
|
|
@@ -19206,9 +19294,19 @@ export type Mutation = {
|
|
|
19206
19294
|
confirmBooking: Booking;
|
|
19207
19295
|
connectAgentToTarget: AgentConnection;
|
|
19208
19296
|
connectExternalCalendar: ExternalCalendarSync;
|
|
19209
|
-
/**
|
|
19297
|
+
/**
|
|
19298
|
+
* Anonymise the subject's conversations data. With dryRun=true, returns
|
|
19299
|
+
* counts without mutating. Message bodies are RETAINED for thread
|
|
19300
|
+
* integrity; senderId / mention / reaction / read-receipt records keyed
|
|
19301
|
+
* to the subject are anonymised or deleted. Reported back via
|
|
19302
|
+
* `retainedForLegalReason: "thread-integrity"`.
|
|
19303
|
+
*/
|
|
19210
19304
|
conversationsEraseSubject: ConversationsEraseResult;
|
|
19211
|
-
/**
|
|
19305
|
+
/**
|
|
19306
|
+
* Export the subject's conversations data: messages authored, conversation
|
|
19307
|
+
* memberships, mentions of the subject, reactions, poll votes, call
|
|
19308
|
+
* participations, comment activity. Attachments listed by reference only.
|
|
19309
|
+
*/
|
|
19212
19310
|
conversationsExportSubject: Scalars['JSON']['output'];
|
|
19213
19311
|
/** Convert a lead into a deal */
|
|
19214
19312
|
convertHeadshotmarketingLead: HeadshotmarketingDeal;
|
|
@@ -19240,7 +19338,10 @@ export type Mutation = {
|
|
|
19240
19338
|
createAppTemplate: AppTemplate;
|
|
19241
19339
|
createAsset: Asset;
|
|
19242
19340
|
createAvailabilityRule: AvailabilityRule;
|
|
19243
|
-
/**
|
|
19341
|
+
/**
|
|
19342
|
+
* Create a new batch download
|
|
19343
|
+
* Initiates ZIP archive creation
|
|
19344
|
+
*/
|
|
19244
19345
|
createBatchDownload: CreateBatchDownloadResponse;
|
|
19245
19346
|
/** Create a new BigConsole dashboard */
|
|
19246
19347
|
createBigConsoleDashboard: Dashboard;
|
|
@@ -19277,7 +19378,11 @@ export type Mutation = {
|
|
|
19277
19378
|
createCollectionFromTemplate: Collection;
|
|
19278
19379
|
createConnection: IntegrationConnection;
|
|
19279
19380
|
createConversation: CreateConversationPayload;
|
|
19280
|
-
/**
|
|
19381
|
+
/**
|
|
19382
|
+
* Submit an export job for workspace conversations + messages through
|
|
19383
|
+
* the central `wspace-export-svc`. The legacy `exportEntityComments`
|
|
19384
|
+
* mutation is deprecated in favour of this canonical entry point.
|
|
19385
|
+
*/
|
|
19281
19386
|
createConversationsExportJob: ConversationsExportJobResponse;
|
|
19282
19387
|
createCrewAnnouncement: CrewAnnouncement;
|
|
19283
19388
|
createCrewCandidate: CrewCandidate;
|
|
@@ -19321,7 +19426,12 @@ export type Mutation = {
|
|
|
19321
19426
|
createExportTemplate: ExportTemplate;
|
|
19322
19427
|
/** Create a new version from current file state */
|
|
19323
19428
|
createFileVersion: FileVersion;
|
|
19324
|
-
/**
|
|
19429
|
+
/**
|
|
19430
|
+
* Create an export job for workspace files.
|
|
19431
|
+
* The export service will asynchronously build a ZIP archive containing
|
|
19432
|
+
* all files metadata (and optionally media) in the requested format.
|
|
19433
|
+
* Poll the export service for job completion and download URL.
|
|
19434
|
+
*/
|
|
19325
19435
|
createFilesExportJob: ExportJobResponse;
|
|
19326
19436
|
/** Create a new filter preset */
|
|
19327
19437
|
createFilterPreset: FilterPreset;
|
|
@@ -19497,7 +19607,11 @@ export type Mutation = {
|
|
|
19497
19607
|
createTagRule: UniversalTagRule;
|
|
19498
19608
|
createTagSegment: UniversalTagSegment;
|
|
19499
19609
|
createTagTranslation: UniversalTagTranslation;
|
|
19500
|
-
/**
|
|
19610
|
+
/**
|
|
19611
|
+
* Submit an export job for workspace tags + vocabularies through the
|
|
19612
|
+
* central `wspace-export-svc`. Returns the job descriptor; the caller
|
|
19613
|
+
* polls the export service for completion and download URL.
|
|
19614
|
+
*/
|
|
19501
19615
|
createTagsExportJob: TagsExportJobResponse;
|
|
19502
19616
|
createTarget: Target;
|
|
19503
19617
|
createTask: Task;
|
|
@@ -19801,7 +19915,10 @@ export type Mutation = {
|
|
|
19801
19915
|
deleteTimeEntry: TimeEntry;
|
|
19802
19916
|
/** Soft-delete a tunnel (stops it first if active, then sets deletedAt). */
|
|
19803
19917
|
deleteTunnel: Scalars['Boolean']['output'];
|
|
19804
|
-
/**
|
|
19918
|
+
/**
|
|
19919
|
+
* Delete a domain record. Must be detached first (unless it's a managed
|
|
19920
|
+
* subdomain never attached to anything).
|
|
19921
|
+
*/
|
|
19805
19922
|
deleteTunnelDomain: Scalars['Boolean']['output'];
|
|
19806
19923
|
deleteVault: Scalars['Boolean']['output'];
|
|
19807
19924
|
deleteVaultIntegration: Scalars['Boolean']['output'];
|
|
@@ -19876,7 +19993,12 @@ export type Mutation = {
|
|
|
19876
19993
|
enableMaintenanceMode: MaintenanceModeStatus;
|
|
19877
19994
|
enableProvider: IntegrationProvider;
|
|
19878
19995
|
endCall: CallSession;
|
|
19879
|
-
/**
|
|
19996
|
+
/**
|
|
19997
|
+
* Erase the subject's files-layer data. With dryRun=true, returns counts
|
|
19998
|
+
* without mutating. Files owned by the subject are tombstoned (soft-deleted)
|
|
19999
|
+
* and their S3 objects scheduled for purge. File rows that have legal-hold
|
|
20000
|
+
* flags are retained and reported in `retainedForLegalReason`.
|
|
20001
|
+
*/
|
|
19880
20002
|
eraseSubject: FilesEraseResult;
|
|
19881
20003
|
eventfullyManagedCreateAttendee: EventfullyManagedAttendee;
|
|
19882
20004
|
eventfullyManagedCreateCheckInRecord: EventfullyManagedCheckInRecord;
|
|
@@ -20055,7 +20177,10 @@ export type Mutation = {
|
|
|
20055
20177
|
executeParser: ParserExecutionResult;
|
|
20056
20178
|
executePipeline: PipelineExecution;
|
|
20057
20179
|
executePromptNow: PromptResult;
|
|
20058
|
-
/**
|
|
20180
|
+
/**
|
|
20181
|
+
* Execute a button via share token (PUBLIC — no auth required).
|
|
20182
|
+
* Only works if the share link has EXECUTE permission.
|
|
20183
|
+
*/
|
|
20059
20184
|
executeSharedVibeDeckButton: VibeDeckButtonExecution;
|
|
20060
20185
|
executeVibeDeckButton: VibeDeckButtonExecution;
|
|
20061
20186
|
/**
|
|
@@ -20070,7 +20195,12 @@ export type Mutation = {
|
|
|
20070
20195
|
/** @deprecated Use `createGroupsExportJob` (delegates to wspace-export-svc) for workspace-scoped exports. This single-group helper will be removed in a future release. */
|
|
20071
20196
|
exportGroupData: GroupExportResult;
|
|
20072
20197
|
exportSandboxes: SandboxExportJob;
|
|
20073
|
-
/**
|
|
20198
|
+
/**
|
|
20199
|
+
* Export the subject's files-layer data: owned files (with metadata,
|
|
20200
|
+
* versions, tags), folders, file-shares granted by the subject. Object
|
|
20201
|
+
* storage payloads are listed by S3 key but not inlined; the privacy-svc
|
|
20202
|
+
* orchestrator includes them via signed URLs in the final DSAR bundle.
|
|
20203
|
+
*/
|
|
20074
20204
|
exportSubject: Scalars['JSON']['output'];
|
|
20075
20205
|
/** Export audit logs matching the filter as CSV or JSON */
|
|
20076
20206
|
exportVibeAuditLogs: VibeAuditLogExport;
|
|
@@ -20258,18 +20388,31 @@ export type Mutation = {
|
|
|
20258
20388
|
*/
|
|
20259
20389
|
initializeWorkspaceRoles: InitializeWorkspaceRolesResult;
|
|
20260
20390
|
initiateOAuth: OAuthInitiationResult;
|
|
20261
|
-
/**
|
|
20391
|
+
/**
|
|
20392
|
+
* Initiate a new upload session
|
|
20393
|
+
* Returns session details and initial presigned URLs
|
|
20394
|
+
*/
|
|
20262
20395
|
initiateUpload: UploadSessionWithUrls;
|
|
20263
20396
|
/** Install an action from the store (creates a local instance) */
|
|
20264
20397
|
installActionFromStore: Action;
|
|
20265
20398
|
installAgentOnTarget: InstallJob;
|
|
20266
|
-
/**
|
|
20399
|
+
/**
|
|
20400
|
+
* Install a plugin on an agent. The backend proxies the request
|
|
20401
|
+
* to the agent's REST API (POST /api/plugins/install).
|
|
20402
|
+
*/
|
|
20267
20403
|
installAgentPlugin: AgentPluginActionResult;
|
|
20268
20404
|
installApp: AppInstallation;
|
|
20269
20405
|
installNode: WorkspaceNodeInstallation;
|
|
20270
20406
|
installPackage: InstalledPackage;
|
|
20271
20407
|
installProviderPlugin: IntegrationProvider;
|
|
20272
|
-
/**
|
|
20408
|
+
/**
|
|
20409
|
+
* Install a plugin on an agent sourced from the Burdenoff store.
|
|
20410
|
+
*
|
|
20411
|
+
* Bridges store-svc ↔ vibecontrols-agent: the backend validates the caller's
|
|
20412
|
+
* entitlement via store-svc, reads the product manifest for the npm package
|
|
20413
|
+
* name + version, then calls the agent's /api/plugins/install endpoint.
|
|
20414
|
+
* Records an AppInstallation in store-svc on success.
|
|
20415
|
+
*/
|
|
20273
20416
|
installStorePluginOnAgent: AgentPluginActionResult;
|
|
20274
20417
|
/**
|
|
20275
20418
|
* Install an app in one or more workspaces
|
|
@@ -20289,7 +20432,11 @@ export type Mutation = {
|
|
|
20289
20432
|
invest: KadaikodiInvestment;
|
|
20290
20433
|
inviteToGroup: InviteResult;
|
|
20291
20434
|
invokeSlashCommand: InvokeSlashCommandPayload;
|
|
20292
|
-
/**
|
|
20435
|
+
/**
|
|
20436
|
+
* Issue a short-lived session token for a tunnel. The token is returned
|
|
20437
|
+
* exactly once and grants the agent the right to connect its provider
|
|
20438
|
+
* subprocess to the tunnel server.
|
|
20439
|
+
*/
|
|
20293
20440
|
issueTunnelSession: TunnelSessionIssueResult;
|
|
20294
20441
|
/**
|
|
20295
20442
|
* Issue a workspace token for the authenticated user.
|
|
@@ -20350,7 +20497,14 @@ export type Mutation = {
|
|
|
20350
20497
|
muteConversation: ConversationMembership;
|
|
20351
20498
|
notifyTagAssigned: Scalars['Boolean']['output'];
|
|
20352
20499
|
notifyTagRemoved: Scalars['Boolean']['output'];
|
|
20353
|
-
/**
|
|
20500
|
+
/**
|
|
20501
|
+
* Notify-on-change hook for plugin lifecycle events. Called by the agent's
|
|
20502
|
+
* plugin-mgr immediately after install/remove/reload so the
|
|
20503
|
+
* vibecontrolsAgentPluginStream subscription publishes within ms instead of
|
|
20504
|
+
* waiting for the next 30s server-side poll. The agent authenticates with
|
|
20505
|
+
* its agentApiKey; the svc validates and forwards the new installed-list
|
|
20506
|
+
* to the GraphQL pubsub topic for that workspace+agent.
|
|
20507
|
+
*/
|
|
20354
20508
|
notifyVibecontrolsAgentPluginChange: Scalars['Boolean']['output'];
|
|
20355
20509
|
openCircuitBreaker: CircuitBreakerState;
|
|
20356
20510
|
optimizeRoute: Route;
|
|
@@ -20593,7 +20747,11 @@ export type Mutation = {
|
|
|
20593
20747
|
/** Publish a component as a reusable template (snapshots the component) */
|
|
20594
20748
|
publishVibecontrolsComponentAsTemplate: VibecontrolsTemplate;
|
|
20595
20749
|
publishWorkflow: WorkflowDefinition;
|
|
20596
|
-
/**
|
|
20750
|
+
/**
|
|
20751
|
+
* Push gateway auth configuration (OAuth2 credentials) to an agent.
|
|
20752
|
+
* The backend proxies the request to the agent's REST API
|
|
20753
|
+
* (POST /api/agent/gateway-auth).
|
|
20754
|
+
*/
|
|
20597
20755
|
pushAgentGatewayAuth: AgentPluginActionResult;
|
|
20598
20756
|
rateMeeting: MeetingMeta;
|
|
20599
20757
|
/** Rate a template */
|
|
@@ -20606,7 +20764,18 @@ export type Mutation = {
|
|
|
20606
20764
|
* Workspace ID is read from gateway context (x-workspace-id header).
|
|
20607
20765
|
*/
|
|
20608
20766
|
recalculateWorkspaceUsage: WorkspaceResourceUsage;
|
|
20609
|
-
/**
|
|
20767
|
+
/**
|
|
20768
|
+
* Receive a message from an external channel platform (Slack, Teams, WhatsApp, etc.)
|
|
20769
|
+
* Called by module-channel-svc via API Gateway when webhook events are received.
|
|
20770
|
+
*
|
|
20771
|
+
* This mutation will:
|
|
20772
|
+
* - Find existing conversation by channelId + externalThreadId, or create new one
|
|
20773
|
+
* - Create the message with EXTERNAL author type
|
|
20774
|
+
* - Handle deduplication by channelMessageId
|
|
20775
|
+
* - Return conversation and message IDs
|
|
20776
|
+
*
|
|
20777
|
+
* Follows spec: 01-scope-boundaries.md (lines 374-407)
|
|
20778
|
+
*/
|
|
20610
20779
|
receiveChannelMessage: ReceiveChannelMessagePayload;
|
|
20611
20780
|
recordAIPromptUsage: AiPrompt;
|
|
20612
20781
|
/** Record multiple activities in batch */
|
|
@@ -20644,7 +20813,10 @@ export type Mutation = {
|
|
|
20644
20813
|
* Creates a new generation based on an existing one.
|
|
20645
20814
|
*/
|
|
20646
20815
|
regenerateDashboard: PromptGeneration;
|
|
20647
|
-
/**
|
|
20816
|
+
/**
|
|
20817
|
+
* Register a user-owned custom domain. Returns the domain with a challenge
|
|
20818
|
+
* token; the user must create a TXT record before verification can succeed.
|
|
20819
|
+
*/
|
|
20648
20820
|
registerCustomTunnelDomain: TunnelDomain;
|
|
20649
20821
|
registerDocsBuildImage: VibecontrolsDocsBuildImage;
|
|
20650
20822
|
/**
|
|
@@ -20654,7 +20826,10 @@ export type Mutation = {
|
|
|
20654
20826
|
* This prevents duplicate agent records when agents restart.
|
|
20655
20827
|
*/
|
|
20656
20828
|
registerEventfullymanagedAgent: EventfullymanagedAgent;
|
|
20657
|
-
/**
|
|
20829
|
+
/**
|
|
20830
|
+
* Auto-register a remotely installed agent in the backend.
|
|
20831
|
+
* Called after installAgentOnTarget completes to create the agent record.
|
|
20832
|
+
*/
|
|
20658
20833
|
registerInstalledAgent: VibecontrolsAgent;
|
|
20659
20834
|
registerIoTDevice: IoTDevice;
|
|
20660
20835
|
registerNode: NodeEndpointConfig;
|
|
@@ -20666,7 +20841,12 @@ export type Mutation = {
|
|
|
20666
20841
|
registerResource: Resource;
|
|
20667
20842
|
/** Register an uploaded part */
|
|
20668
20843
|
registerUploadedPart: UploadPartResponse;
|
|
20669
|
-
/**
|
|
20844
|
+
/**
|
|
20845
|
+
* Register or update an agent by hostname (upsert).
|
|
20846
|
+
* If an active (non-deleted) agent with the given hostname exists in the workspace,
|
|
20847
|
+
* it is updated with the new data. Otherwise a new agent is created.
|
|
20848
|
+
* This prevents duplicate agent records when agents restart.
|
|
20849
|
+
*/
|
|
20670
20850
|
registerVibecontrolsAgent: VibecontrolsAgent;
|
|
20671
20851
|
rejectExpense: ExpenseEntry;
|
|
20672
20852
|
/**
|
|
@@ -20680,7 +20860,10 @@ export type Mutation = {
|
|
|
20680
20860
|
releaseFileLock: ReleaseLockResponse;
|
|
20681
20861
|
/** Release control of a session */
|
|
20682
20862
|
releaseSessionControl: Scalars['Boolean']['output'];
|
|
20683
|
-
/**
|
|
20863
|
+
/**
|
|
20864
|
+
* Remove a plugin from an agent. The backend proxies the request
|
|
20865
|
+
* to the agent's REST API (POST /api/plugins/remove).
|
|
20866
|
+
*/
|
|
20684
20867
|
removeAgentPlugin: AgentPluginActionResult;
|
|
20685
20868
|
removeAllTagsFromEntity: Scalars['Boolean']['output'];
|
|
20686
20869
|
removeAttendee: Scalars['Boolean']['output'];
|
|
@@ -20775,7 +20958,10 @@ export type Mutation = {
|
|
|
20775
20958
|
* Workspace scope is read from gateway context (x-workspace-id header).
|
|
20776
20959
|
*/
|
|
20777
20960
|
resendInvitation: Invitation;
|
|
20778
|
-
/**
|
|
20961
|
+
/**
|
|
20962
|
+
* Reserve a managed subdomain under *.vibetunnels.com. The domain is
|
|
20963
|
+
* created in VERIFIED state and can be attached immediately.
|
|
20964
|
+
*/
|
|
20779
20965
|
reserveTunnelSubdomain: TunnelDomain;
|
|
20780
20966
|
resetCircuitBreaker: CircuitBreakerState;
|
|
20781
20967
|
/**
|
|
@@ -20783,9 +20969,23 @@ export type Mutation = {
|
|
|
20783
20969
|
* Workspace ID is read from gateway context (x-workspace-id header).
|
|
20784
20970
|
*/
|
|
20785
20971
|
resetMonthlyUsage: WorkspaceResourceUsage;
|
|
20786
|
-
/**
|
|
20972
|
+
/**
|
|
20973
|
+
* Reset settings for a category back to defaults.
|
|
20974
|
+
* For user-scoped categories, deletes the user's overrides.
|
|
20975
|
+
* For workspace-scoped categories, deletes the workspace overrides.
|
|
20976
|
+
*/
|
|
20787
20977
|
resetSettings: Scalars['Boolean']['output'];
|
|
20788
|
-
/**
|
|
20978
|
+
/**
|
|
20979
|
+
* Wipe the agent's local state via POST /api/agent/reset on the agent.
|
|
20980
|
+
* Deletes config.json, the encrypted Skalex DB, logs, and the plugins
|
|
20981
|
+
* manifest, then transitions the agent back to 'awaiting-config' WITHOUT
|
|
20982
|
+
* exiting the process — HTTP server + tunnel stay alive so the platform
|
|
20983
|
+
* can re-onboard via addVibecontrolsAgentFromTunnel.
|
|
20984
|
+
*
|
|
20985
|
+
* Returns the new agent API key generated during reset; the platform must
|
|
20986
|
+
* rotate its stored agentApiKey to the returned value before re-onboarding,
|
|
20987
|
+
* otherwise subsequent calls will get 401.
|
|
20988
|
+
*/
|
|
20789
20989
|
resetVibecontrolsAgent: ResetAgentResult;
|
|
20790
20990
|
/** Reset webhook failure count */
|
|
20791
20991
|
resetWebhookFailures: Webhook;
|
|
@@ -20797,7 +20997,10 @@ export type Mutation = {
|
|
|
20797
20997
|
respondToReview: KadaikodiReview;
|
|
20798
20998
|
/** Restart a session */
|
|
20799
20999
|
restartSession: Session;
|
|
20800
|
-
/**
|
|
21000
|
+
/**
|
|
21001
|
+
* Restart the terminal (stop + start session provider + ttyd) for a session.
|
|
21002
|
+
* Use this to recover from dead/orphaned tunnels.
|
|
21003
|
+
*/
|
|
20801
21004
|
restartSessionTerminal: Session;
|
|
20802
21005
|
/** Restart a resource */
|
|
20803
21006
|
restartWorkspaceResource: WorkspaceResource;
|
|
@@ -20874,7 +21077,10 @@ export type Mutation = {
|
|
|
20874
21077
|
rollbackSecret: Secret;
|
|
20875
21078
|
rotateEncryptionKey: EncryptionKey;
|
|
20876
21079
|
rotateSecret: Secret;
|
|
20877
|
-
/**
|
|
21080
|
+
/**
|
|
21081
|
+
* Rotate tunnel credentials (basic auth password, provider secrets). Active
|
|
21082
|
+
* sessions are revoked; caller must re-issue.
|
|
21083
|
+
*/
|
|
20878
21084
|
rotateTunnelCredentials: Tunnel;
|
|
20879
21085
|
/**
|
|
20880
21086
|
* Rotate the workspace secret. Old secret remains valid during grace period.
|
|
@@ -20887,9 +21093,16 @@ export type Mutation = {
|
|
|
20887
21093
|
saveTimeCampusUISession: TimeCampusUiSession;
|
|
20888
21094
|
/** Save UI session */
|
|
20889
21095
|
saveUISession: UiSession;
|
|
20890
|
-
/**
|
|
21096
|
+
/**
|
|
21097
|
+
* Re-run the Trivy CVE scan for an existing image without touching APPROVED
|
|
21098
|
+
* state. Returns the row in SCANNING; transitions to PASSED/FAILED happen
|
|
21099
|
+
* out-of-band.
|
|
21100
|
+
*/
|
|
20891
21101
|
scanDocsBuildImage: VibecontrolsDocsBuildImage;
|
|
20892
|
-
/**
|
|
21102
|
+
/**
|
|
21103
|
+
* Scan SSH config on an agent's environment and return discovered hosts.
|
|
21104
|
+
* If configPath is omitted, defaults to ~/.ssh/config.
|
|
21105
|
+
*/
|
|
20893
21106
|
scanSSHConfig: SshConfigScanResult;
|
|
20894
21107
|
/** Schedule a comment for future posting */
|
|
20895
21108
|
scheduleComment: ScheduledComment;
|
|
@@ -20926,7 +21139,10 @@ export type Mutation = {
|
|
|
20926
21139
|
*/
|
|
20927
21140
|
setDefaultFilterPreset: FilterPreset;
|
|
20928
21141
|
setDefaultVibeDeck: VibeDeck;
|
|
20929
|
-
/**
|
|
21142
|
+
/**
|
|
21143
|
+
* Promote a profile to be the agent's default. The previously-default
|
|
21144
|
+
* profile is demoted in the same transaction.
|
|
21145
|
+
*/
|
|
20930
21146
|
setDefaultVibecontrolsAgentProfile: VibecontrolsAgentProfile;
|
|
20931
21147
|
/** Set a view as the default */
|
|
20932
21148
|
setDefaultView: DashboardView;
|
|
@@ -20938,14 +21154,28 @@ export type Mutation = {
|
|
|
20938
21154
|
setNodeStatus: NodeEndpointConfig;
|
|
20939
21155
|
/** Set default permission level for a role on a resource type */
|
|
20940
21156
|
setRoleDefaultPermission: Role;
|
|
20941
|
-
/**
|
|
21157
|
+
/**
|
|
21158
|
+
* Set or update a settings secret value.
|
|
21159
|
+
* Secret values are stored encrypted and never returned in full.
|
|
21160
|
+
*/
|
|
20942
21161
|
setSettingsSecret: SettingsSecret;
|
|
20943
21162
|
setTimeCampusConfiguration: TimeCampusConfiguration;
|
|
20944
|
-
/**
|
|
21163
|
+
/**
|
|
21164
|
+
* Toggle a single per-vibe feature flag. Persists on the vibe so all viewers
|
|
21165
|
+
* see the same enabled/disabled state. The `featureId` must be a known entry
|
|
21166
|
+
* in `vibeFeatureCatalog`.
|
|
21167
|
+
*/
|
|
20945
21168
|
setVibeFeatureFlag: Vibe;
|
|
20946
21169
|
/** Enable or disable an installed workspace app */
|
|
20947
21170
|
setWorkspaceAppEnabled: WorkspaceInstalledApp;
|
|
20948
|
-
/**
|
|
21171
|
+
/**
|
|
21172
|
+
* Set up gateway auth for an agent end-to-end:
|
|
21173
|
+
* 1. Creates OAuth app in auth-svc (via internal global gateway)
|
|
21174
|
+
* 2. Creates devportal Application linked to the OAuth app
|
|
21175
|
+
* 3. Stores appId/appClientId on the agent record
|
|
21176
|
+
* 4. Pushes OAuth credentials to the agent via REST proxy
|
|
21177
|
+
* Returns the agent with credentials (clientSecret shown once).
|
|
21178
|
+
*/
|
|
20949
21179
|
setupAgentGatewayAuth: SetupAgentGatewayAuthResult;
|
|
20950
21180
|
shareCalendar: CalendarShare;
|
|
20951
21181
|
/** Share collection with users */
|
|
@@ -20961,14 +21191,23 @@ export type Mutation = {
|
|
|
20961
21191
|
startPomodoroSession: PomodoroSession;
|
|
20962
21192
|
/** Start a session */
|
|
20963
21193
|
startSession: Session;
|
|
20964
|
-
/**
|
|
21194
|
+
/**
|
|
21195
|
+
* Start a terminal (session provider + ttyd + tunnel) for a session.
|
|
21196
|
+
* Calls the agent API server-side, starts ttyd, and saves the tunnel URL as ttydUrl.
|
|
21197
|
+
*/
|
|
20965
21198
|
startSessionTerminal: Session;
|
|
20966
21199
|
startTerminal: TerminalResult;
|
|
20967
21200
|
startTimer: TimeEntry;
|
|
20968
|
-
/**
|
|
21201
|
+
/**
|
|
21202
|
+
* Transition a tunnel to ACTIVE: issues a session, instructs the agent to
|
|
21203
|
+
* spawn the provider subprocess, registers the managed DNS record if any.
|
|
21204
|
+
*/
|
|
20969
21205
|
startTunnel: Tunnel;
|
|
20970
21206
|
startTyping: Scalars['Boolean']['output'];
|
|
20971
|
-
/**
|
|
21207
|
+
/**
|
|
21208
|
+
* Start an agent process via the backend proxy.
|
|
21209
|
+
* Calls POST /api/agent/lifecycle/start on the agent.
|
|
21210
|
+
*/
|
|
20972
21211
|
startVibecontrolsAgent: AgentLifecycleActionResult;
|
|
20973
21212
|
/** Start a stopped or inactive resource */
|
|
20974
21213
|
startWorkspaceResource: WorkspaceResource;
|
|
@@ -20978,14 +21217,23 @@ export type Mutation = {
|
|
|
20978
21217
|
stopSandbox: Sandbox;
|
|
20979
21218
|
/** Stop a session */
|
|
20980
21219
|
stopSession: Session;
|
|
20981
|
-
/**
|
|
21220
|
+
/**
|
|
21221
|
+
* Stop the terminal (ttyd + session provider) for a session.
|
|
21222
|
+
* Clears ttydUrl and sets session status to STOPPED.
|
|
21223
|
+
*/
|
|
20982
21224
|
stopSessionTerminal: Session;
|
|
20983
21225
|
stopTerminal: Scalars['Boolean']['output'];
|
|
20984
21226
|
stopTimer: TimeEntry;
|
|
20985
|
-
/**
|
|
21227
|
+
/**
|
|
21228
|
+
* Transition a tunnel to STOPPED: gracefully stops the provider subprocess
|
|
21229
|
+
* on the agent and clears the managed DNS record.
|
|
21230
|
+
*/
|
|
20986
21231
|
stopTunnel: Tunnel;
|
|
20987
21232
|
stopTyping: Scalars['Boolean']['output'];
|
|
20988
|
-
/**
|
|
21233
|
+
/**
|
|
21234
|
+
* Stop an agent process via the backend proxy.
|
|
21235
|
+
* Calls POST /api/agent/lifecycle/stop on the agent.
|
|
21236
|
+
*/
|
|
20989
21237
|
stopVibecontrolsAgent: AgentLifecycleActionResult;
|
|
20990
21238
|
/** Stop a running resource */
|
|
20991
21239
|
stopWorkspaceResource: WorkspaceResource;
|
|
@@ -21331,7 +21579,10 @@ export type Mutation = {
|
|
|
21331
21579
|
updateNodeEndpoint: NodeEndpointConfig;
|
|
21332
21580
|
/** Update an existing note */
|
|
21333
21581
|
updateNote: VibecontrolsNote;
|
|
21334
|
-
/**
|
|
21582
|
+
/**
|
|
21583
|
+
* Update user notification preferences.
|
|
21584
|
+
* Merges provided fields with existing values.
|
|
21585
|
+
*/
|
|
21335
21586
|
updateNotificationPreferences: NotificationPreferences;
|
|
21336
21587
|
updateNotificationSettings: ConversationMembership;
|
|
21337
21588
|
updateOffering: KadaikodiOffering;
|
|
@@ -21345,11 +21596,17 @@ export type Mutation = {
|
|
|
21345
21596
|
updatePolicyReference: PolicyReference;
|
|
21346
21597
|
updatePomodoroGoal: PomodoroGoal;
|
|
21347
21598
|
updatePomodoroSettings: PomodoroSettings;
|
|
21348
|
-
/**
|
|
21599
|
+
/**
|
|
21600
|
+
* Update user UI preferences.
|
|
21601
|
+
* Merges provided fields with existing values.
|
|
21602
|
+
*/
|
|
21349
21603
|
updatePreferences: UserPreferences;
|
|
21350
21604
|
updatePresence: Presence;
|
|
21351
21605
|
updateProduct: Product;
|
|
21352
|
-
/**
|
|
21606
|
+
/**
|
|
21607
|
+
* Update user profile settings.
|
|
21608
|
+
* Merges provided fields with existing values.
|
|
21609
|
+
*/
|
|
21353
21610
|
updateProfile: UserProfile;
|
|
21354
21611
|
/** Update an existing project */
|
|
21355
21612
|
updateProject: Project;
|
|
@@ -21458,7 +21715,10 @@ export type Mutation = {
|
|
|
21458
21715
|
updateWorkflowScheduledJob: ScheduledJobResponse;
|
|
21459
21716
|
/** Update an existing workspace */
|
|
21460
21717
|
updateWorkspace: Workspace;
|
|
21461
|
-
/**
|
|
21718
|
+
/**
|
|
21719
|
+
* Update workspace-level defaults.
|
|
21720
|
+
* Requires admin permission. Merges provided fields with existing values.
|
|
21721
|
+
*/
|
|
21462
21722
|
updateWorkspaceDefaults: WorkspaceDefaults;
|
|
21463
21723
|
/** Update an installed workspace app */
|
|
21464
21724
|
updateWorkspaceInstalledApp: WorkspaceInstalledApp;
|
|
@@ -21482,7 +21742,10 @@ export type Mutation = {
|
|
|
21482
21742
|
/** Create or update a scorecard for an entity */
|
|
21483
21743
|
upsertVibecontrolsScorecard: VibecontrolsScorecard;
|
|
21484
21744
|
validateDocsBuildImage: VibecontrolsDocsBuildImage;
|
|
21485
|
-
/**
|
|
21745
|
+
/**
|
|
21746
|
+
* Force an immediate verification attempt for a custom domain. Normally the
|
|
21747
|
+
* background worker polls every 15s; this lets the user retry on-demand.
|
|
21748
|
+
*/
|
|
21486
21749
|
verifyTunnelDomain: TunnelDomain;
|
|
21487
21750
|
/** Send heartbeat to mark agent as active */
|
|
21488
21751
|
vibecontrolsAgentHeartbeat: VibecontrolsAgent;
|
|
@@ -32958,7 +33221,10 @@ export type NoteAnalytics = {
|
|
|
32958
33221
|
total: Scalars['Int']['output'];
|
|
32959
33222
|
unpinned: Scalars['Int']['output'];
|
|
32960
33223
|
};
|
|
32961
|
-
/**
|
|
33224
|
+
/**
|
|
33225
|
+
* A tag assignment linking a UniversalTag to a note.
|
|
33226
|
+
* Delegated to wspace-tags-svc via the NoteTagAdapter.
|
|
33227
|
+
*/
|
|
32962
33228
|
export type NoteTagAssignment = {
|
|
32963
33229
|
__typename?: 'NoteTagAssignment';
|
|
32964
33230
|
/** When the tag was assigned */
|
|
@@ -35807,7 +36073,10 @@ export type PushAgentGatewayAuthInput = {
|
|
|
35807
36073
|
globalGatewayUrl: Scalars['String']['input'];
|
|
35808
36074
|
/** OAuth2 scopes */
|
|
35809
36075
|
scopes: Array<Scalars['String']['input']>;
|
|
35810
|
-
/**
|
|
36076
|
+
/**
|
|
36077
|
+
* Workspace gateway URL (public) — used by the agent for issueWorkspaceToken
|
|
36078
|
+
* and the encryption-key fetch. Must be distinct from globalGatewayUrl.
|
|
36079
|
+
*/
|
|
35811
36080
|
workspaceGatewayUrl: Scalars['String']['input'];
|
|
35812
36081
|
/** Workspace UUID — required for the agent's issueWorkspaceToken step. */
|
|
35813
36082
|
workspaceId: Scalars['String']['input'];
|
|
@@ -35922,15 +36191,29 @@ export type Query = {
|
|
|
35922
36191
|
adminAnalyticsModules: Array<AdminAnalyticsModuleSummary>;
|
|
35923
36192
|
adminAnalyticsOverview: AdminAnalyticsOverview;
|
|
35924
36193
|
adminAnalyticsTimeline: AdminAnalyticsTimelineResult;
|
|
35925
|
-
/**
|
|
36194
|
+
/**
|
|
36195
|
+
* Proxy a GET request to an agent AI API route via the backend.
|
|
36196
|
+
* Path must start with /api/ai/.
|
|
36197
|
+
*/
|
|
35926
36198
|
agentAiGet: AgentProxyResponse;
|
|
35927
36199
|
agentConnectionConfig: AgentConnectionConfig;
|
|
35928
36200
|
agentGraph: AgentGraph;
|
|
35929
|
-
/**
|
|
36201
|
+
/**
|
|
36202
|
+
* Read the current lifecycle state of an agent via the backend proxy.
|
|
36203
|
+
* Calls GET /api/agent/lifecycle/state on the agent.
|
|
36204
|
+
*/
|
|
35930
36205
|
agentLifecycleState: AgentLifecycleStateResult;
|
|
35931
|
-
/**
|
|
36206
|
+
/**
|
|
36207
|
+
* List installed and available plugins on an agent.
|
|
36208
|
+
* The backend proxies requests to the agent's REST API.
|
|
36209
|
+
*/
|
|
35932
36210
|
agentPlugins: AgentPluginListResult;
|
|
35933
|
-
/**
|
|
36211
|
+
/**
|
|
36212
|
+
* List `vibe-*` sessions on the agent host that are NOT currently
|
|
36213
|
+
* tracked in agent storage. These are orphan tmux/wezterm/zellij
|
|
36214
|
+
* sessions that survived an agent kill or storage wipe and can be
|
|
36215
|
+
* reconnected via `adoptAgentSession`.
|
|
36216
|
+
*/
|
|
35934
36217
|
agentSessionOrphans: Array<AgentSessionOrphan>;
|
|
35935
36218
|
/** Get aggregated metrics for a resource */
|
|
35936
36219
|
aggregatedResourceMetrics: AggregatedMetricResult;
|
|
@@ -36050,7 +36333,10 @@ export type Query = {
|
|
|
36050
36333
|
discoveryJobs: Array<DiscoveryJob>;
|
|
36051
36334
|
docsBuildImage?: Maybe<VibecontrolsDocsBuildImage>;
|
|
36052
36335
|
docsBuildImages: VibecontrolsDocsBuildImageList;
|
|
36053
|
-
/**
|
|
36336
|
+
/**
|
|
36337
|
+
* Get rendered docs HTML content for a specific file path.
|
|
36338
|
+
* Used by the frontend to render docs in an iframe via srcdoc.
|
|
36339
|
+
*/
|
|
36054
36340
|
docsContent?: Maybe<VibecontrolsDocsContentPayload>;
|
|
36055
36341
|
/** Get a single docs page by ID */
|
|
36056
36342
|
docsPage?: Maybe<VibecontrolsDocsPage>;
|
|
@@ -36348,7 +36634,10 @@ export type Query = {
|
|
|
36348
36634
|
getEntitiesByTag: EntityList;
|
|
36349
36635
|
getEntitiesByTags: EntityList;
|
|
36350
36636
|
getEntityAuditTrail: Array<VaultAuditLog>;
|
|
36351
|
-
/**
|
|
36637
|
+
/**
|
|
36638
|
+
* Get a single comment by ID
|
|
36639
|
+
* @rbac(public: true, scopeType: "wspace")
|
|
36640
|
+
*/
|
|
36352
36641
|
getEntityComment?: Maybe<EntityComment>;
|
|
36353
36642
|
/** Get edit history for a comment */
|
|
36354
36643
|
getEntityCommentEditHistory: Array<EntityCommentEdit>;
|
|
@@ -36910,7 +37199,10 @@ export type Query = {
|
|
|
36910
37199
|
listSandboxTemplates: SandboxTemplateConfigList;
|
|
36911
37200
|
listSandboxes: SandboxList;
|
|
36912
37201
|
listServiceProviders: Array<KadaikodiServiceProvider>;
|
|
36913
|
-
/**
|
|
37202
|
+
/**
|
|
37203
|
+
* List all settings secrets for the current workspace.
|
|
37204
|
+
* Returns keys and metadata, but values are redacted for security.
|
|
37205
|
+
*/
|
|
36914
37206
|
listSettingsSecrets: Array<SettingsSecret>;
|
|
36915
37207
|
/** List dashboards shared with a user */
|
|
36916
37208
|
listSharedWithMe: DashboardShareConnection;
|
|
@@ -36968,9 +37260,15 @@ export type Query = {
|
|
|
36968
37260
|
* Use this for quick role checks without fetching full permissions.
|
|
36969
37261
|
*/
|
|
36970
37262
|
myRoles: MyRolesResult;
|
|
36971
|
-
/**
|
|
37263
|
+
/**
|
|
37264
|
+
* Get all settings for the current user in this workspace.
|
|
37265
|
+
* Returns a complete bundle with defaults for any missing values.
|
|
37266
|
+
*/
|
|
36972
37267
|
mySettings: SettingsBundle;
|
|
36973
|
-
/**
|
|
37268
|
+
/**
|
|
37269
|
+
* Get settings for a specific category.
|
|
37270
|
+
* Returns the typed settings object for that category.
|
|
37271
|
+
*/
|
|
36974
37272
|
mySettingsByCategory: Scalars['JSON']['output'];
|
|
36975
37273
|
/**
|
|
36976
37274
|
* Get workspaces for the current authenticated user
|
|
@@ -37135,9 +37433,16 @@ export type Query = {
|
|
|
37135
37433
|
previewSchedule: SchedulePreview;
|
|
37136
37434
|
/** Preview smart collection results without creating */
|
|
37137
37435
|
previewSmartCollection: CollectionItemList;
|
|
37138
|
-
/**
|
|
37436
|
+
/**
|
|
37437
|
+
* Probe an existing agent's connectivity by its ID.
|
|
37438
|
+
* Looks up the agent record and calls /health and /api/agent/identity.
|
|
37439
|
+
*/
|
|
37139
37440
|
probeAgentConnection: AgentProbeResult;
|
|
37140
|
-
/**
|
|
37441
|
+
/**
|
|
37442
|
+
* Probe an agent tunnel URL for health and identity.
|
|
37443
|
+
* Used by the Add Agent wizard before the agent record exists.
|
|
37444
|
+
* The backend calls /health and /api/agent/identity on the given URL.
|
|
37445
|
+
*/
|
|
37141
37446
|
probeAgentTunnel: AgentProbeResult;
|
|
37142
37447
|
problems: Array<Problem>;
|
|
37143
37448
|
product?: Maybe<Product>;
|
|
@@ -37289,7 +37594,10 @@ export type Query = {
|
|
|
37289
37594
|
sessions: SessionList;
|
|
37290
37595
|
/** Get sessions shared with the current user */
|
|
37291
37596
|
sessionsSharedWithMe: SessionShareConnection;
|
|
37292
|
-
/**
|
|
37597
|
+
/**
|
|
37598
|
+
* Get a shared VibeDeck by token (PUBLIC — no auth required).
|
|
37599
|
+
* Returns sanitized deck data if the token is valid.
|
|
37600
|
+
*/
|
|
37293
37601
|
sharedVibeDeck?: Maybe<SharedVibeDeck>;
|
|
37294
37602
|
shipment?: Maybe<Shipment>;
|
|
37295
37603
|
shipmentTracking: Array<TrackingEvent>;
|
|
@@ -37337,7 +37645,10 @@ export type Query = {
|
|
|
37337
37645
|
traverseGraph: Array<GraphPath>;
|
|
37338
37646
|
/** Get a specific tunnel by ID. */
|
|
37339
37647
|
tunnel?: Maybe<Tunnel>;
|
|
37340
|
-
/**
|
|
37648
|
+
/**
|
|
37649
|
+
* Audit log entries scoped to a tunnel. Returns entries from the shared
|
|
37650
|
+
* AuditLog table filtered by resource type TUNNEL / TUNNEL_DOMAIN / TUNNEL_SESSION.
|
|
37651
|
+
*/
|
|
37341
37652
|
tunnelAudit: VibeAuditLogList;
|
|
37342
37653
|
/** Get a tunnel by its workspace-unique slug. */
|
|
37343
37654
|
tunnelBySlug?: Maybe<Tunnel>;
|
|
@@ -37384,7 +37695,10 @@ export type Query = {
|
|
|
37384
37695
|
/** Validate a share link (public - for join page, requires login) */
|
|
37385
37696
|
validateShareLink: ShareLinkValidation;
|
|
37386
37697
|
validateTagAssignment: TagAssignmentValidation;
|
|
37387
|
-
/**
|
|
37698
|
+
/**
|
|
37699
|
+
* Validate a share link token (PUBLIC — no auth required).
|
|
37700
|
+
* Returns whether the link is valid and what it grants.
|
|
37701
|
+
*/
|
|
37388
37702
|
validateVibeDeckShareLink: VibeDeckShareLinkValidation;
|
|
37389
37703
|
vehicle?: Maybe<Vehicle>;
|
|
37390
37704
|
vehicles: Array<Vehicle>;
|
|
@@ -37411,23 +37725,48 @@ export type Query = {
|
|
|
37411
37725
|
/** List share links for a specific vibe deck (owner-only) */
|
|
37412
37726
|
vibeDeckShareLinks: Array<VibeDeckShareLink>;
|
|
37413
37727
|
vibeDecks: VibeDeckConnection;
|
|
37414
|
-
/**
|
|
37728
|
+
/**
|
|
37729
|
+
* List the catalog of toggleable features that can be enabled/disabled per vibe.
|
|
37730
|
+
* Drives the per-vibe feature toggles UI.
|
|
37731
|
+
*/
|
|
37415
37732
|
vibeFeatureCatalog: Array<VibeFeatureDefinition>;
|
|
37416
37733
|
/** Get vibe hierarchy */
|
|
37417
37734
|
vibeHierarchy: Array<Vibe>;
|
|
37418
37735
|
/** Get specific agent by ID */
|
|
37419
37736
|
vibecontrolsAgent?: Maybe<VibecontrolsAgent>;
|
|
37420
|
-
/**
|
|
37737
|
+
/**
|
|
37738
|
+
* Get the SQLite encryption key for agents in this workspace.
|
|
37739
|
+
* One key per workspace regardless of number of agents.
|
|
37740
|
+
* Key is auto-generated on first agent registration and stored encrypted in the vault.
|
|
37741
|
+
* Agents call this on every startup using their OAuth2 credentials.
|
|
37742
|
+
*/
|
|
37421
37743
|
vibecontrolsAgentEncryptionKey: Scalars['String']['output'];
|
|
37422
|
-
/**
|
|
37744
|
+
/**
|
|
37745
|
+
* Probe the health of all agents in the workspace.
|
|
37746
|
+
* The backend calls each agent's /health endpoint and returns results.
|
|
37747
|
+
*/
|
|
37423
37748
|
vibecontrolsAgentHealthProbes: Array<AgentHealthProbeResult>;
|
|
37424
|
-
/**
|
|
37749
|
+
/**
|
|
37750
|
+
* Look up the current tunnel URL + a freshly-minted scoped peer key for a
|
|
37751
|
+
* target agent. Used by another agent (the caller) to recover from
|
|
37752
|
+
* rotation: when the caller's cached key/url stops working, it asks the
|
|
37753
|
+
* platform for the latest values. The caller is identified via the
|
|
37754
|
+
* authenticated context (clientId/secret OAuth session); RBAC checks that
|
|
37755
|
+
* the caller has been granted peer access to the target.
|
|
37756
|
+
*
|
|
37757
|
+
* Returns null when the caller has no active grant or the target has no
|
|
37758
|
+
* reachable tunnel.
|
|
37759
|
+
*/
|
|
37425
37760
|
vibecontrolsAgentNetworkLookup?: Maybe<VibecontrolsAgentNetworkLookupResult>;
|
|
37426
37761
|
/** List the active (non-deleted) profiles hosted by an agent. */
|
|
37427
37762
|
vibecontrolsAgentProfiles: Array<VibecontrolsAgentProfile>;
|
|
37428
37763
|
/** Get all agents in a workspace. Supports optional pagination (limit/offset). */
|
|
37429
37764
|
vibecontrolsAgents: Array<VibecontrolsAgent>;
|
|
37430
|
-
/**
|
|
37765
|
+
/**
|
|
37766
|
+
* Consolidated analytics for all VibeControls entities.
|
|
37767
|
+
* Returns aggregated stats, breakdowns, and time-series data in a single query.
|
|
37768
|
+
* Use the entityTypes filter to request only specific entity analytics.
|
|
37769
|
+
*/
|
|
37431
37770
|
vibecontrolsAnalytics: VibecontrolsAnalyticsResult;
|
|
37432
37771
|
/** Get a specific catalog by ID */
|
|
37433
37772
|
vibecontrolsCatalog?: Maybe<VibecontrolsCatalog>;
|
|
@@ -37444,7 +37783,17 @@ export type Query = {
|
|
|
37444
37783
|
/** Get docs site by owner type and owner ID */
|
|
37445
37784
|
vibecontrolsDocsSiteByOwner?: Maybe<VibecontrolsDocsSite>;
|
|
37446
37785
|
vibecontrolsEntityTags: Array<EntityTagAssignment>;
|
|
37447
|
-
/**
|
|
37786
|
+
/**
|
|
37787
|
+
* Resolve a wspace-integrations-svc connection to a fresh access token for
|
|
37788
|
+
* agent plugins. The agent calls this with its OAuth2 client-credential
|
|
37789
|
+
* session (actor=app); this resolver re-issues the underlying
|
|
37790
|
+
* `getConnectionToken` to integrations-svc as a service actor after
|
|
37791
|
+
* validating workspace ownership.
|
|
37792
|
+
*
|
|
37793
|
+
* Plugins that need third-party credentials (AI provider keys, GitHub
|
|
37794
|
+
* OAuth, Slack bot tokens, …) store a `connectionId` instead of raw
|
|
37795
|
+
* secrets and call this to materialize a token at runtime.
|
|
37796
|
+
*/
|
|
37448
37797
|
vibecontrolsResolveIntegrationToken: VibecontrolsIntegrationTokenResult;
|
|
37449
37798
|
/** Get a scorecard by owner type and owner ID */
|
|
37450
37799
|
vibecontrolsScorecard?: Maybe<VibecontrolsScorecard>;
|
|
@@ -45129,7 +45478,11 @@ export type ReactionSummary = {
|
|
|
45129
45478
|
emoji: Scalars['String']['output'];
|
|
45130
45479
|
userIds: Array<Scalars['ID']['output']>;
|
|
45131
45480
|
};
|
|
45132
|
-
/**
|
|
45481
|
+
/**
|
|
45482
|
+
* Input for receiving a message from an external channel platform.
|
|
45483
|
+
* Called by module-channel-svc when a webhook event is received.
|
|
45484
|
+
* This follows the spec in 01-scope-boundaries.md (lines 374-407).
|
|
45485
|
+
*/
|
|
45133
45486
|
export type ReceiveChannelMessageInput = {
|
|
45134
45487
|
/** File attachments from the platform */
|
|
45135
45488
|
attachments?: InputMaybe<Array<ChannelAttachmentInput>>;
|
|
@@ -45766,17 +46119,26 @@ export type RequestAiPredictionInput = {
|
|
|
45766
46119
|
};
|
|
45767
46120
|
export type ReserveTunnelSubdomainInput = {
|
|
45768
46121
|
environment: TunnelEnvironment;
|
|
45769
|
-
/**
|
|
46122
|
+
/**
|
|
46123
|
+
* The subdomain label (without the zone suffix). e.g. "demo" reserves
|
|
46124
|
+
* "demo.vibetunnels.com" (or "demo.alpha.vibetunnels.com" for alpha).
|
|
46125
|
+
*/
|
|
45770
46126
|
label: Scalars['String']['input'];
|
|
45771
46127
|
};
|
|
45772
46128
|
/** Result of resetting an agent's local state. */
|
|
45773
46129
|
export type ResetAgentResult = {
|
|
45774
46130
|
__typename?: 'ResetAgentResult';
|
|
45775
|
-
/**
|
|
46131
|
+
/**
|
|
46132
|
+
* Updated agent record. `appId`/`appClientId` are cleared; tunnelUrl
|
|
46133
|
+
* and agentApiKey are refreshed to the values the agent reports post-reset.
|
|
46134
|
+
*/
|
|
45776
46135
|
agent: VibecontrolsAgent;
|
|
45777
46136
|
/** Error message if the agent rejected reset or was unreachable. */
|
|
45778
46137
|
error?: Maybe<Scalars['String']['output']>;
|
|
45779
|
-
/**
|
|
46138
|
+
/**
|
|
46139
|
+
* Newly generated API key. The platform stored this on the agent record;
|
|
46140
|
+
* return it once for operator audit so it can also be copied if needed.
|
|
46141
|
+
*/
|
|
45780
46142
|
newApiKey: Scalars['String']['output'];
|
|
45781
46143
|
/** Whether reset succeeded end-to-end (agent reachable + wipe completed). */
|
|
45782
46144
|
success: Scalars['Boolean']['output'];
|
|
@@ -47727,7 +48089,10 @@ export type ServiceProviderFilterInput = {
|
|
|
47727
48089
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
47728
48090
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
47729
48091
|
};
|
|
47730
|
-
/**
|
|
48092
|
+
/**
|
|
48093
|
+
* An interactive or background process running in a development environment.
|
|
48094
|
+
* Sessions can be tmux sessions, SSH sessions, terminals, or custom processes.
|
|
48095
|
+
*/
|
|
47731
48096
|
export type Session = {
|
|
47732
48097
|
__typename?: 'Session';
|
|
47733
48098
|
/** Agent executing this session */
|
|
@@ -48162,7 +48527,10 @@ export type ShareVaultInput = {
|
|
|
48162
48527
|
role: VaultMemberRole;
|
|
48163
48528
|
vaultId: Scalars['ID']['input'];
|
|
48164
48529
|
};
|
|
48165
|
-
/**
|
|
48530
|
+
/**
|
|
48531
|
+
* A read-only representation of a VibeDeck for shared/public access.
|
|
48532
|
+
* Exposes only safe fields — no commands, scripts, webhook URLs, or secrets.
|
|
48533
|
+
*/
|
|
48166
48534
|
export type SharedVibeDeck = {
|
|
48167
48535
|
__typename?: 'SharedVibeDeck';
|
|
48168
48536
|
buttonSize?: Maybe<Scalars['String']['output']>;
|
|
@@ -48176,7 +48544,10 @@ export type SharedVibeDeck = {
|
|
|
48176
48544
|
name: Scalars['String']['output'];
|
|
48177
48545
|
permission: VibeDeckSharePermission;
|
|
48178
48546
|
};
|
|
48179
|
-
/**
|
|
48547
|
+
/**
|
|
48548
|
+
* A sanitized button representation for shared access.
|
|
48549
|
+
* Only display metadata — no executable details exposed.
|
|
48550
|
+
*/
|
|
48180
48551
|
export type SharedVibeDeckButton = {
|
|
48181
48552
|
__typename?: 'SharedVibeDeckButton';
|
|
48182
48553
|
actionType: VibeDeckButtonActionType;
|
|
@@ -48731,7 +49102,10 @@ export type Subscription = {
|
|
|
48731
49102
|
exportJobProgress: ExportJob;
|
|
48732
49103
|
/** Subscribe to file deletion events */
|
|
48733
49104
|
fileDeleted: FileDeletedEvent;
|
|
48734
|
-
/**
|
|
49105
|
+
/**
|
|
49106
|
+
* Subscribe to all file events in a workspace
|
|
49107
|
+
* Real-time updates for file uploads, updates, deletions, etc.
|
|
49108
|
+
*/
|
|
48735
49109
|
fileEvents: FileEventUnion;
|
|
48736
49110
|
/** Subscribe to lock events for a specific file */
|
|
48737
49111
|
fileLockChanged: FileLock;
|
|
@@ -48806,7 +49180,11 @@ export type Subscription = {
|
|
|
48806
49180
|
presenceChanged: Presence;
|
|
48807
49181
|
/** Subscribe to quota warnings for workspace */
|
|
48808
49182
|
quotaWarning: QuotaWarningEvent;
|
|
48809
|
-
/**
|
|
49183
|
+
/**
|
|
49184
|
+
* Live stream of AI tool events for an agent. Emits the recent-events
|
|
49185
|
+
* array (most recent first, capped at `limit`) on every new event so
|
|
49186
|
+
* the UI can replace the polling query with a single subscription.
|
|
49187
|
+
*/
|
|
48810
49188
|
recentAiToolEventsStream: Array<AiToolEvent>;
|
|
48811
49189
|
reportRunUpdates: ReportRun;
|
|
48812
49190
|
/**
|
|
@@ -48853,7 +49231,10 @@ export type Subscription = {
|
|
|
48853
49231
|
userActivityUpdates: ActivityLog;
|
|
48854
49232
|
/** Subscribe to when user is mentioned in comments */
|
|
48855
49233
|
userMentioned: UserMentionedEvent;
|
|
48856
|
-
/**
|
|
49234
|
+
/**
|
|
49235
|
+
* Subscribe to real-time user presence on a file
|
|
49236
|
+
* Useful for showing who's currently viewing/editing a file
|
|
49237
|
+
*/
|
|
48857
49238
|
userPresence: UserPresenceEvent;
|
|
48858
49239
|
/** Real-time audit events for the workspace */
|
|
48859
49240
|
vibeAuditLogCreated: VibeAuditLog;
|
|
@@ -48861,9 +49242,18 @@ export type Subscription = {
|
|
|
48861
49242
|
vibeStatusChanged: Vibe;
|
|
48862
49243
|
/** Subscribe to vibe updates */
|
|
48863
49244
|
vibeUpdated: Vibe;
|
|
48864
|
-
/**
|
|
49245
|
+
/**
|
|
49246
|
+
* Stream of all agent health probe results for the workspace. Replaces
|
|
49247
|
+
* client-side polling of vibecontrolsAgentHealthProbes — emits the full
|
|
49248
|
+
* array each time any agent's health changes (or on a 30s heartbeat).
|
|
49249
|
+
*/
|
|
48865
49250
|
vibecontrolsAgentHealthProbeStream: Array<AgentHealthProbeResult>;
|
|
48866
|
-
/**
|
|
49251
|
+
/**
|
|
49252
|
+
* Stream of installed plugins on a single agent. Replaces FE polling of
|
|
49253
|
+
* the `agentPlugins` query. The svc proxies the agent's /api/plugins
|
|
49254
|
+
* every 30s server-side and emits the new list whenever it diverges
|
|
49255
|
+
* from the last snapshot. Pass `agentId` to scope to one agent.
|
|
49256
|
+
*/
|
|
48867
49257
|
vibecontrolsAgentPluginStream: Array<AgentPlugin>;
|
|
48868
49258
|
/** Subscribe to catalog updates */
|
|
48869
49259
|
vibecontrolsCatalogUpdated: VibecontrolsCatalog;
|
|
@@ -49406,7 +49796,11 @@ export type TagAssignmentList = {
|
|
|
49406
49796
|
__typename?: 'TagAssignmentList';
|
|
49407
49797
|
hasMore: Scalars['Boolean']['output'];
|
|
49408
49798
|
items: Array<UniversalTagAssignment>;
|
|
49409
|
-
/**
|
|
49799
|
+
/**
|
|
49800
|
+
* Opaque cursor pointing to the item immediately after the last item in
|
|
49801
|
+
* `items`. Pass it back as `pagination.cursor` to fetch the next page.
|
|
49802
|
+
* Null when `hasMore` is false.
|
|
49803
|
+
*/
|
|
49410
49804
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
49411
49805
|
total: Scalars['Int']['output'];
|
|
49412
49806
|
};
|
|
@@ -49534,7 +49928,11 @@ export type TagList = {
|
|
|
49534
49928
|
__typename?: 'TagList';
|
|
49535
49929
|
hasMore: Scalars['Boolean']['output'];
|
|
49536
49930
|
items: Array<UniversalTag>;
|
|
49537
|
-
/**
|
|
49931
|
+
/**
|
|
49932
|
+
* Opaque cursor pointing to the item immediately after the last item in
|
|
49933
|
+
* `items`. Pass it back as `pagination.cursor` to fetch the next page.
|
|
49934
|
+
* Null when `hasMore` is false.
|
|
49935
|
+
*/
|
|
49538
49936
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
49539
49937
|
total: Scalars['Int']['output'];
|
|
49540
49938
|
};
|
|
@@ -50364,7 +50762,10 @@ export type TriggerWorkflowInput = {
|
|
|
50364
50762
|
version: Scalars['String']['input'];
|
|
50365
50763
|
workflowKey: Scalars['String']['input'];
|
|
50366
50764
|
};
|
|
50367
|
-
/**
|
|
50765
|
+
/**
|
|
50766
|
+
* A managed tunnel exposing a local service to the public internet.
|
|
50767
|
+
* Tunnels are workspace-scoped and bound to an agent machine.
|
|
50768
|
+
*/
|
|
50368
50769
|
export type Tunnel = {
|
|
50369
50770
|
__typename?: 'Tunnel';
|
|
50370
50771
|
/** Currently active sessions for this tunnel. */
|
|
@@ -50400,16 +50801,31 @@ export type Tunnel = {
|
|
|
50400
50801
|
updatedAt: Scalars['DateTime']['output'];
|
|
50401
50802
|
workspaceId: Scalars['ID']['output'];
|
|
50402
50803
|
};
|
|
50403
|
-
/**
|
|
50804
|
+
/**
|
|
50805
|
+
* A domain attached to a tunnel. Either a managed subdomain under
|
|
50806
|
+
* *.vibetunnels.com (auto-verified at reservation time) or a user-owned custom
|
|
50807
|
+
* domain verified via a TXT record challenge.
|
|
50808
|
+
*/
|
|
50404
50809
|
export type TunnelDomain = {
|
|
50405
50810
|
__typename?: 'TunnelDomain';
|
|
50406
|
-
/**
|
|
50811
|
+
/**
|
|
50812
|
+
* Name of the TXT record the user must create for verification
|
|
50813
|
+
* (e.g. `_vibetunnels-challenge.example.com`). Only populated for CUSTOM
|
|
50814
|
+
* domains in PENDING or VERIFYING state.
|
|
50815
|
+
*/
|
|
50407
50816
|
challengeRecordName?: Maybe<Scalars['String']['output']>;
|
|
50408
|
-
/**
|
|
50817
|
+
/**
|
|
50818
|
+
* Verification token value the user must put in the TXT record. Only
|
|
50819
|
+
* returned while verification is still in progress — redacted after
|
|
50820
|
+
* verification completes.
|
|
50821
|
+
*/
|
|
50409
50822
|
challengeToken?: Maybe<Scalars['String']['output']>;
|
|
50410
50823
|
createdAt: Scalars['DateTime']['output'];
|
|
50411
50824
|
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
50412
|
-
/**
|
|
50825
|
+
/**
|
|
50826
|
+
* Suggested DNS target (CNAME) the user should point their custom domain at
|
|
50827
|
+
* once verification is complete.
|
|
50828
|
+
*/
|
|
50413
50829
|
dnsTargetHint?: Maybe<Scalars['String']['output']>;
|
|
50414
50830
|
environment?: Maybe<TunnelEnvironment>;
|
|
50415
50831
|
hostname: Scalars['String']['output'];
|
|
@@ -50417,7 +50833,10 @@ export type TunnelDomain = {
|
|
|
50417
50833
|
isPrimary: Scalars['Boolean']['output'];
|
|
50418
50834
|
lastCheckError?: Maybe<Scalars['String']['output']>;
|
|
50419
50835
|
lastCheckedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
50420
|
-
/**
|
|
50836
|
+
/**
|
|
50837
|
+
* The tunnel this domain is attached to. Null for reserved-but-unattached
|
|
50838
|
+
* domains.
|
|
50839
|
+
*/
|
|
50421
50840
|
tunnel?: Maybe<Tunnel>;
|
|
50422
50841
|
tunnelId?: Maybe<Scalars['ID']['output']>;
|
|
50423
50842
|
type: TunnelDomainType;
|
|
@@ -50474,7 +50893,10 @@ export declare enum TunnelProtocol {
|
|
|
50474
50893
|
Tcp = "TCP",
|
|
50475
50894
|
Udp = "UDP"
|
|
50476
50895
|
}
|
|
50477
|
-
/**
|
|
50896
|
+
/**
|
|
50897
|
+
* A tunnel provider implementation. Seeded rows: VIBETUNNELS (frp-based) and
|
|
50898
|
+
* CLOUDFLARE (cloudflared-based).
|
|
50899
|
+
*/
|
|
50478
50900
|
export type TunnelProvider = {
|
|
50479
50901
|
__typename?: 'TunnelProvider';
|
|
50480
50902
|
capabilities: TunnelProviderCapabilities;
|
|
@@ -50513,7 +50935,10 @@ export declare enum TunnelProviderKey {
|
|
|
50513
50935
|
Cloudflare = "CLOUDFLARE",
|
|
50514
50936
|
Vibetunnels = "VIBETUNNELS"
|
|
50515
50937
|
}
|
|
50516
|
-
/**
|
|
50938
|
+
/**
|
|
50939
|
+
* A single tunnel session lifetime. Represents one token-authenticated
|
|
50940
|
+
* connection from the agent's provider subprocess to the tunnel server.
|
|
50941
|
+
*/
|
|
50517
50942
|
export type TunnelSession = {
|
|
50518
50943
|
__typename?: 'TunnelSession';
|
|
50519
50944
|
agentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50530,12 +50955,20 @@ export type TunnelSession = {
|
|
|
50530
50955
|
revokedReason?: Maybe<Scalars['String']['output']>;
|
|
50531
50956
|
shardId?: Maybe<Scalars['ID']['output']>;
|
|
50532
50957
|
status: TunnelSessionStatus;
|
|
50533
|
-
/**
|
|
50958
|
+
/**
|
|
50959
|
+
* First 8 hex characters of the token hash — useful for UI identification
|
|
50960
|
+
* without exposing the token itself.
|
|
50961
|
+
*/
|
|
50534
50962
|
tokenFingerprint: Scalars['String']['output'];
|
|
50535
50963
|
tunnelId: Scalars['ID']['output'];
|
|
50536
50964
|
workspaceId: Scalars['ID']['output'];
|
|
50537
50965
|
};
|
|
50538
|
-
/**
|
|
50966
|
+
/**
|
|
50967
|
+
* Result of issuing a tunnel session. The token is returned exactly once — the
|
|
50968
|
+
* backend stores only its sha256 hash. The agentConfigHint contains provider-
|
|
50969
|
+
* specific connection metadata (frps address, proxy name, etc.) that the agent
|
|
50970
|
+
* plugin uses to spawn frpc or cloudflared.
|
|
50971
|
+
*/
|
|
50539
50972
|
export type TunnelSessionIssueResult = {
|
|
50540
50973
|
__typename?: 'TunnelSessionIssueResult';
|
|
50541
50974
|
agentConfigHint: Scalars['JSON']['output'];
|
|
@@ -50555,7 +50988,10 @@ export declare enum TunnelSessionStatus {
|
|
|
50555
50988
|
Issued = "ISSUED",
|
|
50556
50989
|
Revoked = "REVOKED"
|
|
50557
50990
|
}
|
|
50558
|
-
/**
|
|
50991
|
+
/**
|
|
50992
|
+
* A tunnel server shard (e.g. an frps instance). Backends select a shard when
|
|
50993
|
+
* issuing a session.
|
|
50994
|
+
*/
|
|
50559
50995
|
export type TunnelShard = {
|
|
50560
50996
|
__typename?: 'TunnelShard';
|
|
50561
50997
|
capacity: Scalars['Int']['output'];
|
|
@@ -50615,7 +51051,10 @@ export type TypingIndicatorPayload = {
|
|
|
50615
51051
|
isTyping: Scalars['Boolean']['output'];
|
|
50616
51052
|
userId: Scalars['ID']['output'];
|
|
50617
51053
|
};
|
|
50618
|
-
/**
|
|
51054
|
+
/**
|
|
51055
|
+
* Persisted UI state for user sessions.
|
|
51056
|
+
* Stores active vibe, panel layout, and user preferences.
|
|
51057
|
+
*/
|
|
50619
51058
|
export type UiSession = {
|
|
50620
51059
|
__typename?: 'UISession';
|
|
50621
51060
|
/** Currently active session */
|
|
@@ -50650,7 +51089,10 @@ export type UninstallAppPayload = {
|
|
|
50650
51089
|
appInstallationId: Scalars['ID']['output'];
|
|
50651
51090
|
success: Scalars['Boolean']['output'];
|
|
50652
51091
|
};
|
|
50653
|
-
/**
|
|
51092
|
+
/**
|
|
51093
|
+
* UniversalTag type stub - exists in wspace-tags-svc
|
|
51094
|
+
* Federation stub for referencing tags from other services
|
|
51095
|
+
*/
|
|
50654
51096
|
export type UniversalTag = {
|
|
50655
51097
|
__typename?: 'UniversalTag';
|
|
50656
51098
|
ancestors: Array<UniversalTag>;
|
|
@@ -51685,7 +52127,10 @@ export type UpdateFileInput = {
|
|
|
51685
52127
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
51686
52128
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
|
51687
52129
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
51688
|
-
/**
|
|
52130
|
+
/**
|
|
52131
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key,value,...}`
|
|
52132
|
+
* records. Replaces the row's `File.tags` Json column on update.
|
|
52133
|
+
*/
|
|
51689
52134
|
tags?: InputMaybe<Scalars['JSON']['input']>;
|
|
51690
52135
|
visibility?: InputMaybe<FileVisibility>;
|
|
51691
52136
|
};
|
|
@@ -51719,7 +52164,10 @@ export type UpdateFolderInput = {
|
|
|
51719
52164
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
51720
52165
|
icon?: InputMaybe<Scalars['String']['input']>;
|
|
51721
52166
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
51722
|
-
/**
|
|
52167
|
+
/**
|
|
52168
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key,value,...}`
|
|
52169
|
+
* records. Replaces the row's `Folder.tags` Json column on update.
|
|
52170
|
+
*/
|
|
51723
52171
|
tags?: InputMaybe<Scalars['JSON']['input']>;
|
|
51724
52172
|
visibility?: InputMaybe<FileVisibility>;
|
|
51725
52173
|
};
|
|
@@ -52915,15 +53363,25 @@ export type UpdateVibeInput = {
|
|
|
52915
53363
|
context?: InputMaybe<ContextInput>;
|
|
52916
53364
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
52917
53365
|
environmentVariables?: InputMaybe<Scalars['JSON']['input']>;
|
|
52918
|
-
/**
|
|
53366
|
+
/**
|
|
53367
|
+
* Partial feature flag overrides ({ featureId: boolean }). Provided keys are
|
|
53368
|
+
* merged on top of the existing stored value; omitted keys are left untouched.
|
|
53369
|
+
* Unknown feature ids are ignored.
|
|
53370
|
+
*/
|
|
52919
53371
|
featureFlags?: InputMaybe<Scalars['JSON']['input']>;
|
|
52920
53372
|
gitBranch?: InputMaybe<Scalars['String']['input']>;
|
|
52921
53373
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
52922
53374
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
52923
53375
|
status?: InputMaybe<VibeStatus>;
|
|
52924
|
-
/**
|
|
53376
|
+
/**
|
|
53377
|
+
* Legacy tag input (string array). Use `tagsV2` for the canonical
|
|
53378
|
+
* `[{key,value,...}]` shape (marqueue §251). Both fields are still written.
|
|
53379
|
+
*/
|
|
52925
53380
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
52926
|
-
/**
|
|
53381
|
+
/**
|
|
53382
|
+
* Canonical universal-tag input (marqueue §251). JSON array of `{key,value,...}`
|
|
53383
|
+
* records. When provided, takes precedence over legacy `tags`.
|
|
53384
|
+
*/
|
|
52927
53385
|
tagsV2?: InputMaybe<Scalars['JSON']['input']>;
|
|
52928
53386
|
};
|
|
52929
53387
|
export type UpdateVibecontrolsAgentInput = {
|
|
@@ -53214,7 +53672,10 @@ export type UploadFileInput = {
|
|
|
53214
53672
|
s3Bucket: Scalars['String']['input'];
|
|
53215
53673
|
s3Key: Scalars['String']['input'];
|
|
53216
53674
|
size: Scalars['BigInt']['input'];
|
|
53217
|
-
/**
|
|
53675
|
+
/**
|
|
53676
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key,value,...}`
|
|
53677
|
+
* records. Backed by the canonical `File.tags` Json column.
|
|
53678
|
+
*/
|
|
53218
53679
|
tags?: InputMaybe<Scalars['JSON']['input']>;
|
|
53219
53680
|
visibility?: InputMaybe<FileVisibility>;
|
|
53220
53681
|
};
|
|
@@ -54080,7 +54541,10 @@ export declare enum VersionStatus {
|
|
|
54080
54541
|
Historical = "HISTORICAL",
|
|
54081
54542
|
Published = "PUBLISHED"
|
|
54082
54543
|
}
|
|
54083
|
-
/**
|
|
54544
|
+
/**
|
|
54545
|
+
* A development project or repository representing a development environment.
|
|
54546
|
+
* Vibes can be organized hierarchically and support various types (local, remote, docker, cloud).
|
|
54547
|
+
*/
|
|
54084
54548
|
export type Vibe = {
|
|
54085
54549
|
__typename?: 'Vibe';
|
|
54086
54550
|
/** Agent managing this vibe */
|
|
@@ -54099,11 +54563,18 @@ export type Vibe = {
|
|
|
54099
54563
|
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
54100
54564
|
/** Vibe description */
|
|
54101
54565
|
description?: Maybe<Scalars['String']['output']>;
|
|
54102
|
-
/**
|
|
54566
|
+
/**
|
|
54567
|
+
* Per-vibe feature toggles after merging stored overrides on top of the catalog defaults.
|
|
54568
|
+
* Always returns a value for every known feature id.
|
|
54569
|
+
*/
|
|
54103
54570
|
effectiveFeatureFlags: Scalars['JSON']['output'];
|
|
54104
54571
|
/** Environment variables */
|
|
54105
54572
|
environmentVariables?: Maybe<Scalars['JSON']['output']>;
|
|
54106
|
-
/**
|
|
54573
|
+
/**
|
|
54574
|
+
* Raw per-vibe feature toggles as stored on the vibe.
|
|
54575
|
+
* Shape: { "<featureId>": boolean }. Missing keys fall back to the catalog default.
|
|
54576
|
+
* Use `effectiveFeatureFlags` for the merged view that the UI should drive off.
|
|
54577
|
+
*/
|
|
54107
54578
|
featureFlags?: Maybe<Scalars['JSON']['output']>;
|
|
54108
54579
|
/** Current Git branch */
|
|
54109
54580
|
gitBranch?: Maybe<Scalars['String']['output']>;
|
|
@@ -54131,11 +54602,15 @@ export type Vibe = {
|
|
|
54131
54602
|
status: VibeStatus;
|
|
54132
54603
|
tagAssignments: Array<EntityTagAssignment>;
|
|
54133
54604
|
/**
|
|
54134
|
-
* Tags for categorization (legacy String[] shape).
|
|
54605
|
+
* Tags for categorization (legacy String[] shape).
|
|
54606
|
+
* Backwards-compat projection of the canonical `tagsV2` Json column (marqueue §251).
|
|
54135
54607
|
* @deprecated Use tagsV2 (canonical Json shape). This field will be removed once consumers migrate.
|
|
54136
54608
|
*/
|
|
54137
54609
|
tags: Array<Scalars['String']['output']>;
|
|
54138
|
-
/**
|
|
54610
|
+
/**
|
|
54611
|
+
* Universal entity-owned tags (marqueue §251). JSON array of `{key, value, ...}`
|
|
54612
|
+
* records mirroring `wspace-workspace-svc` Project.tags shape.
|
|
54613
|
+
*/
|
|
54139
54614
|
tagsV2: Scalars['JSON']['output'];
|
|
54140
54615
|
/** Vibe type */
|
|
54141
54616
|
type: VibeType;
|
|
@@ -54194,7 +54669,10 @@ export type VibeAuditDayCount = {
|
|
|
54194
54669
|
date: Scalars['String']['output'];
|
|
54195
54670
|
};
|
|
54196
54671
|
export type VibeAuditDeleteInput = {
|
|
54197
|
-
/**
|
|
54672
|
+
/**
|
|
54673
|
+
* Reason for deleting this audit log entry (required for compliance).
|
|
54674
|
+
* This deletion is itself recorded as an audit event.
|
|
54675
|
+
*/
|
|
54198
54676
|
reason: Scalars['String']['input'];
|
|
54199
54677
|
};
|
|
54200
54678
|
export declare enum VibeAuditExportFormat {
|
|
@@ -54205,7 +54683,10 @@ export type VibeAuditExportInput = {
|
|
|
54205
54683
|
filter?: InputMaybe<VibeAuditLogFilterInput>;
|
|
54206
54684
|
format?: InputMaybe<VibeAuditExportFormat>;
|
|
54207
54685
|
};
|
|
54208
|
-
/**
|
|
54686
|
+
/**
|
|
54687
|
+
* An audit log entry recording a single operation within VibeControls.
|
|
54688
|
+
* Captures who did what, when, on which resource, with full state snapshots.
|
|
54689
|
+
*/
|
|
54209
54690
|
export type VibeAuditLog = {
|
|
54210
54691
|
__typename?: 'VibeAuditLog';
|
|
54211
54692
|
action: VibeAuditAction;
|
|
@@ -54512,7 +54993,10 @@ export type VibeDeckShareLinkList = {
|
|
|
54512
54993
|
items: Array<VibeDeckShareLink>;
|
|
54513
54994
|
total: Scalars['Int']['output'];
|
|
54514
54995
|
};
|
|
54515
|
-
/**
|
|
54996
|
+
/**
|
|
54997
|
+
* Result of validating a share link token. Used by the public shared page
|
|
54998
|
+
* to determine if the link is valid and what access it grants.
|
|
54999
|
+
*/
|
|
54516
55000
|
export type VibeDeckShareLinkValidation = {
|
|
54517
55001
|
__typename?: 'VibeDeckShareLinkValidation';
|
|
54518
55002
|
allowIframe?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54585,7 +55069,10 @@ export declare enum VibecontrolsActionType {
|
|
|
54585
55069
|
Webhook = "WEBHOOK",
|
|
54586
55070
|
Workflow = "WORKFLOW"
|
|
54587
55071
|
}
|
|
54588
|
-
/**
|
|
55072
|
+
/**
|
|
55073
|
+
* A service running on a host machine that manages local development environments.
|
|
55074
|
+
* Agents execute sessions and manage vibes.
|
|
55075
|
+
*/
|
|
54589
55076
|
export type VibecontrolsAgent = {
|
|
54590
55077
|
__typename?: 'VibecontrolsAgent';
|
|
54591
55078
|
/** API key for authenticating with the agent (changes on agent restart) */
|
|
@@ -54637,7 +55124,11 @@ export type VibecontrolsAgent = {
|
|
|
54637
55124
|
targetId: Scalars['String']['output'];
|
|
54638
55125
|
/** Tunnel connection status */
|
|
54639
55126
|
tunnelStatus?: Maybe<Scalars['String']['output']>;
|
|
54640
|
-
/**
|
|
55127
|
+
/**
|
|
55128
|
+
* Tunnel URL for remote access — single canonical URL the platform uses
|
|
55129
|
+
* to reach the agent (legacy `apiUrl` was consolidated into this field
|
|
55130
|
+
* on 2026-05-01).
|
|
55131
|
+
*/
|
|
54641
55132
|
tunnelUrl?: Maybe<Scalars['String']['output']>;
|
|
54642
55133
|
/** Timestamp when last updated */
|
|
54643
55134
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -54661,7 +55152,11 @@ export type VibecontrolsAgentList = {
|
|
|
54661
55152
|
items: Array<VibecontrolsAgent>;
|
|
54662
55153
|
total: Scalars['Int']['output'];
|
|
54663
55154
|
};
|
|
54664
|
-
/**
|
|
55155
|
+
/**
|
|
55156
|
+
* Result of `vibecontrolsAgentNetworkLookup` — the live tunnel URL and a
|
|
55157
|
+
* peer API key the caller can use to talk to the target. The key is minted
|
|
55158
|
+
* fresh on every lookup and bound to the operation tag for audit logging.
|
|
55159
|
+
*/
|
|
54665
55160
|
export type VibecontrolsAgentNetworkLookupResult = {
|
|
54666
55161
|
__typename?: 'VibecontrolsAgentNetworkLookupResult';
|
|
54667
55162
|
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -54669,7 +55164,10 @@ export type VibecontrolsAgentNetworkLookupResult = {
|
|
|
54669
55164
|
permissions: Array<Scalars['String']['output']>;
|
|
54670
55165
|
tunnelUrl: Scalars['String']['output'];
|
|
54671
55166
|
};
|
|
54672
|
-
/**
|
|
55167
|
+
/**
|
|
55168
|
+
* A named profile hosted by an agent. The profile's `name` is the path
|
|
55169
|
+
* segment used when reaching `/api/profiles/<name>/...` on the agent.
|
|
55170
|
+
*/
|
|
54673
55171
|
export type VibecontrolsAgentProfile = {
|
|
54674
55172
|
__typename?: 'VibecontrolsAgentProfile';
|
|
54675
55173
|
agentId: Scalars['ID']['output'];
|
|
@@ -54696,7 +55194,10 @@ export type VibecontrolsAnalyticsInput = {
|
|
|
54696
55194
|
/** Optional: filter analytics by specific vibe */
|
|
54697
55195
|
vibeId?: InputMaybe<Scalars['ID']['input']>;
|
|
54698
55196
|
};
|
|
54699
|
-
/**
|
|
55197
|
+
/**
|
|
55198
|
+
* Consolidated analytics result for all VibeControls entities.
|
|
55199
|
+
* Fields are nullable — null means the entity was not requested via entityTypes filter.
|
|
55200
|
+
*/
|
|
54700
55201
|
export type VibecontrolsAnalyticsResult = {
|
|
54701
55202
|
__typename?: 'VibecontrolsAnalyticsResult';
|
|
54702
55203
|
actions?: Maybe<ActionAnalytics>;
|
|
@@ -54716,7 +55217,10 @@ export type VibecontrolsAnalyticsResult = {
|
|
|
54716
55217
|
vibes?: Maybe<VibeAnalytics>;
|
|
54717
55218
|
webhooks?: Maybe<WebhookAnalytics>;
|
|
54718
55219
|
};
|
|
54719
|
-
/**
|
|
55220
|
+
/**
|
|
55221
|
+
* A curated collection of components and vibes within a workspace.
|
|
55222
|
+
* Catalogs support visibility controls, dependency graphs, and aggregated SBOMs.
|
|
55223
|
+
*/
|
|
54720
55224
|
export type VibecontrolsCatalog = {
|
|
54721
55225
|
__typename?: 'VibecontrolsCatalog';
|
|
54722
55226
|
/** Number of components in this catalog */
|
|
@@ -54824,7 +55328,10 @@ export type VibecontrolsCloneTemplateInput = {
|
|
|
54824
55328
|
/** Target workspace ID (defaults to current workspace) */
|
|
54825
55329
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
54826
55330
|
};
|
|
54827
|
-
/**
|
|
55331
|
+
/**
|
|
55332
|
+
* A software component (microservice, library, API, etc.) registered in the service catalog.
|
|
55333
|
+
* Components can be organized into catalogs, scored via scorecards, and published as templates.
|
|
55334
|
+
*/
|
|
54828
55335
|
export type VibecontrolsComponent = {
|
|
54829
55336
|
__typename?: 'VibecontrolsComponent';
|
|
54830
55337
|
/** Number of catalogs this component belongs to */
|
|
@@ -54954,7 +55461,12 @@ export type VibecontrolsDocsBuildImageList = {
|
|
|
54954
55461
|
items: Array<VibecontrolsDocsBuildImage>;
|
|
54955
55462
|
total: Scalars['Int']['output'];
|
|
54956
55463
|
};
|
|
54957
|
-
/**
|
|
55464
|
+
/**
|
|
55465
|
+
* Image pull policy for sandbox builder pods (mirrors Kubernetes semantics):
|
|
55466
|
+
* - IF_NOT_PRESENT (default): pull only if missing from the node cache.
|
|
55467
|
+
* - ALWAYS: pull on every build (use when imageRef is a mutable tag).
|
|
55468
|
+
* - DIGEST_ONLY: refuse to schedule unless imageRef is a digest pin (sha256:...).
|
|
55469
|
+
*/
|
|
54958
55470
|
export declare enum VibecontrolsDocsBuildImagePullPolicy {
|
|
54959
55471
|
Always = "ALWAYS",
|
|
54960
55472
|
DigestOnly = "DIGEST_ONLY",
|
|
@@ -55133,7 +55645,11 @@ export declare enum VibecontrolsDocsSiteVisibility {
|
|
|
55133
55645
|
Private = "PRIVATE",
|
|
55134
55646
|
Public = "PUBLIC"
|
|
55135
55647
|
}
|
|
55136
|
-
/**
|
|
55648
|
+
/**
|
|
55649
|
+
* Decrypted integration token returned to the agent. Same shape as
|
|
55650
|
+
* `ConnectionToken` from wspace-integrations-svc, kept local so we don't
|
|
55651
|
+
* have to extend a federated type owned by another subgraph.
|
|
55652
|
+
*/
|
|
55137
55653
|
export type VibecontrolsIntegrationToken = {
|
|
55138
55654
|
__typename?: 'VibecontrolsIntegrationToken';
|
|
55139
55655
|
accessToken: Scalars['String']['output'];
|
|
@@ -55144,10 +55660,17 @@ export type VibecontrolsIntegrationToken = {
|
|
|
55144
55660
|
scopes: Array<Scalars['String']['output']>;
|
|
55145
55661
|
tokenType: Scalars['String']['output'];
|
|
55146
55662
|
};
|
|
55147
|
-
/**
|
|
55663
|
+
/**
|
|
55664
|
+
* Result of `vibecontrolsResolveIntegrationToken` — a passthrough of the
|
|
55665
|
+
* upstream `ConnectionTokenResult` from wspace-integrations-svc, narrowed to
|
|
55666
|
+
* the fields agents actually need at runtime.
|
|
55667
|
+
*/
|
|
55148
55668
|
export type VibecontrolsIntegrationTokenResult = {
|
|
55149
55669
|
__typename?: 'VibecontrolsIntegrationTokenResult';
|
|
55150
|
-
/**
|
|
55670
|
+
/**
|
|
55671
|
+
* Current connection status after resolution
|
|
55672
|
+
* (e.g. ACTIVE, EXPIRED, REVOKED).
|
|
55673
|
+
*/
|
|
55151
55674
|
connectionStatus: Scalars['String']['output'];
|
|
55152
55675
|
/** Error message if `success` is false. */
|
|
55153
55676
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -55158,7 +55681,10 @@ export type VibecontrolsIntegrationTokenResult = {
|
|
|
55158
55681
|
/** Whether the token was refreshed during this call (OAuth providers). */
|
|
55159
55682
|
wasRefreshed: Scalars['Boolean']['output'];
|
|
55160
55683
|
};
|
|
55161
|
-
/**
|
|
55684
|
+
/**
|
|
55685
|
+
* A markdown-formatted note associated with a vibe or workspace.
|
|
55686
|
+
* Notes support tagging, pinning, and full-text search.
|
|
55687
|
+
*/
|
|
55162
55688
|
export type VibecontrolsNote = {
|
|
55163
55689
|
__typename?: 'VibecontrolsNote';
|
|
55164
55690
|
/** Markdown content */
|
|
@@ -55327,7 +55853,10 @@ export declare enum VibecontrolsSessionType {
|
|
|
55327
55853
|
Wezterm = "WEZTERM",
|
|
55328
55854
|
Zellij = "ZELLIJ"
|
|
55329
55855
|
}
|
|
55330
|
-
/**
|
|
55856
|
+
/**
|
|
55857
|
+
* A reusable template created from a component snapshot.
|
|
55858
|
+
* Templates can be instantiated to create new components.
|
|
55859
|
+
*/
|
|
55331
55860
|
export type VibecontrolsTemplate = {
|
|
55332
55861
|
__typename?: 'VibecontrolsTemplate';
|
|
55333
55862
|
/** Template category classification */
|
|
@@ -55495,7 +56024,11 @@ export type VocabularyList = {
|
|
|
55495
56024
|
__typename?: 'VocabularyList';
|
|
55496
56025
|
hasMore: Scalars['Boolean']['output'];
|
|
55497
56026
|
items: Array<TagVocabulary>;
|
|
55498
|
-
/**
|
|
56027
|
+
/**
|
|
56028
|
+
* Opaque cursor pointing to the item immediately after the last item in
|
|
56029
|
+
* `items`. Pass it back as `pagination.cursor` to fetch the next page.
|
|
56030
|
+
* Null when `hasMore` is false.
|
|
56031
|
+
*/
|
|
55499
56032
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
55500
56033
|
total: Scalars['Int']['output'];
|
|
55501
56034
|
};
|
|
@@ -55632,7 +56165,10 @@ export type WeatherMonthlySummary = {
|
|
|
55632
56165
|
totalRainfall: Scalars['Float']['output'];
|
|
55633
56166
|
year: Scalars['Int']['output'];
|
|
55634
56167
|
};
|
|
55635
|
-
/**
|
|
56168
|
+
/**
|
|
56169
|
+
* Webhook configuration for event notifications.
|
|
56170
|
+
* Webhooks receive HTTP POST requests when subscribed events occur.
|
|
56171
|
+
*/
|
|
55636
56172
|
export type Webhook = {
|
|
55637
56173
|
__typename?: 'Webhook';
|
|
55638
56174
|
/** Scoped agent IDs (empty = all agents) */
|