@opengeni/sdk 0.46.0 → 0.52.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/README.md +94 -2
- package/dist/artifact-client.d.ts +20 -2
- package/dist/artifacts.d.ts +4 -0
- package/dist/artifacts.js +11 -0
- package/dist/artifacts.js.map +1 -0
- package/dist/chunk-FHI4DFIG.js +128 -0
- package/dist/chunk-FHI4DFIG.js.map +1 -0
- package/dist/chunk-FRJFNDIR.js +218 -0
- package/dist/chunk-FRJFNDIR.js.map +1 -0
- package/dist/{chunk-QKV5OCLJ.js → chunk-ILQZR5N6.js} +1380 -595
- package/dist/chunk-ILQZR5N6.js.map +1 -0
- package/dist/chunk-MZWTWOX6.js +661 -0
- package/dist/chunk-MZWTWOX6.js.map +1 -0
- package/dist/chunk-VWE2QIVO.js +1162 -0
- package/dist/chunk-VWE2QIVO.js.map +1 -0
- package/dist/chunk-VYCTL62C.js +230 -0
- package/dist/chunk-VYCTL62C.js.map +1 -0
- package/dist/client.d.ts +176 -20
- package/dist/codex-realtime-controller.d.ts +6 -6
- package/dist/codex-realtime-lifecycle.d.ts +1 -1
- package/dist/codex-realtime-v3.d.ts +3 -3
- package/dist/codex-realtime.d.ts +1 -1
- package/dist/company-profile.d.ts +100 -0
- package/dist/core.d.ts +5 -5
- package/dist/core.js +9 -4
- package/dist/desktop.d.ts +1 -1
- package/dist/editable-artifact-resources.d.ts +96 -0
- package/dist/editable-artifacts/browser-session.d.ts +35 -0
- package/dist/editable-artifacts/controller.d.ts +60 -0
- package/dist/editable-artifacts/errors.d.ts +23 -0
- package/dist/editable-artifacts/http-live-transport.d.ts +46 -0
- package/dist/editable-artifacts/index.d.ts +19 -0
- package/dist/editable-artifacts/pool.d.ts +15 -0
- package/dist/editable-artifacts/session.d.ts +96 -0
- package/dist/editable-artifacts/storage.d.ts +72 -0
- package/dist/editable-artifacts/types.d.ts +416 -0
- package/dist/editable-artifacts/worker/browser-client.d.ts +80 -0
- package/dist/editable-artifacts/worker/browser-entry.d.ts +6 -0
- package/dist/editable-artifacts/worker/kernel-adapter.d.ts +45 -0
- package/dist/editable-artifacts/worker/rpc-protocol.d.ts +92 -0
- package/dist/editable-artifacts/worker/runtime.d.ts +66 -0
- package/dist/editable-artifacts/worker/wire-codec.d.ts +52 -0
- package/dist/editable-artifacts-worker.d.ts +8 -0
- package/dist/editable-artifacts-worker.js +1708 -0
- package/dist/editable-artifacts-worker.js.map +1 -0
- package/dist/editable-artifacts.d.ts +6 -0
- package/dist/editable-artifacts.js +5954 -0
- package/dist/editable-artifacts.js.map +1 -0
- package/dist/gateway-realtime-transport.d.ts +1 -1
- package/dist/index.d.ts +41 -35
- package/dist/index.js +104 -68
- package/dist/index.js.map +1 -1
- package/dist/interaction.d.ts +885 -0
- package/dist/interaction.js +55 -0
- package/dist/interaction.js.map +1 -0
- package/dist/memory-slack-client.d.ts +13 -0
- package/dist/memory-slack-delivery.d.ts +99 -0
- package/dist/memory-slack.d.ts +4 -0
- package/dist/memory-slack.js +44 -0
- package/dist/memory-slack.js.map +1 -0
- package/dist/proxy.d.ts +3 -3
- package/dist/realtime.d.ts +12 -12
- package/dist/retained-artifacts.d.ts +12 -0
- package/dist/stream.d.ts +16 -1
- package/dist/terminal.d.ts +1 -1
- package/dist/transcription.d.ts +2 -2
- package/dist/types.d.ts +1203 -23
- package/dist/workspace-control-stream.d.ts +2 -2
- package/dist/workspace-state.d.ts +1 -1
- package/package.json +29 -3
- package/src/artifact-client.ts +129 -0
- package/src/artifacts.ts +17 -0
- package/src/client.ts +1801 -206
- package/src/company-profile.ts +92 -0
- package/src/editable-artifact-resources.ts +119 -0
- package/src/editable-artifacts/browser-session.ts +176 -0
- package/src/editable-artifacts/controller.ts +2632 -0
- package/src/editable-artifacts/errors.ts +52 -0
- package/src/editable-artifacts/http-live-transport.ts +1449 -0
- package/src/editable-artifacts/index.ts +175 -0
- package/src/editable-artifacts/pool.ts +81 -0
- package/src/editable-artifacts/session.ts +778 -0
- package/src/editable-artifacts/storage.ts +1718 -0
- package/src/editable-artifacts/types.ts +499 -0
- package/src/editable-artifacts/worker/browser-client.ts +1167 -0
- package/src/editable-artifacts/worker/browser-entry.ts +57 -0
- package/src/editable-artifacts/worker/kernel-adapter.ts +1039 -0
- package/src/editable-artifacts/worker/rpc-protocol.ts +622 -0
- package/src/editable-artifacts/worker/runtime.ts +1204 -0
- package/src/editable-artifacts/worker/wire-codec.ts +852 -0
- package/src/editable-artifacts-worker.ts +8 -0
- package/src/editable-artifacts.ts +6 -0
- package/src/index.ts +194 -0
- package/src/interaction.ts +1830 -0
- package/src/memory-slack-client.ts +71 -0
- package/src/memory-slack-delivery.ts +128 -0
- package/src/memory-slack.ts +19 -0
- package/src/retained-artifacts.ts +326 -0
- package/src/stream.ts +102 -4
- package/src/transcription.ts +2 -2
- package/src/types.ts +1430 -33
- package/src/workspace-control-stream.ts +15 -5
- package/dist/chunk-QKV5OCLJ.js.map +0 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dedicated browser module-Worker entry for editable artifacts.
|
|
3
|
+
*
|
|
4
|
+
* Bundle this subpath as a Worker URL; importing it in the Worker installs the
|
|
5
|
+
* bounded RPC runtime. The ordinary SDK and editable-artifacts client entries
|
|
6
|
+
* do not load this code on the main thread.
|
|
7
|
+
*/
|
|
8
|
+
export { installBrowserArtifactWorkerEntry } from "./editable-artifacts/worker/browser-entry";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Durable editable-artifact synchronization. Import from
|
|
3
|
+
* `@opengeni/sdk/editable-artifacts` so ordinary SDK/session/realtime consumers
|
|
4
|
+
* do not load the collaboration controller or its offline storage adapters.
|
|
5
|
+
*/
|
|
6
|
+
export * from "./editable-artifacts/index";
|
package/src/index.ts
CHANGED
|
@@ -8,6 +8,20 @@ export type {
|
|
|
8
8
|
TranscribeAudioInput,
|
|
9
9
|
WorkspaceControlEventPage,
|
|
10
10
|
} from "./client";
|
|
11
|
+
export type {
|
|
12
|
+
CreateEditableArtifactMaterializationRequest,
|
|
13
|
+
CreateEditableArtifactResourceRequest,
|
|
14
|
+
EditableArtifactListResource,
|
|
15
|
+
EditableArtifactMaterializationFormat,
|
|
16
|
+
EditableArtifactMaterializationJobResource,
|
|
17
|
+
EditableArtifactMaterializationResultResource,
|
|
18
|
+
EditableArtifactPinnedVersionResource,
|
|
19
|
+
EditableArtifactResource,
|
|
20
|
+
ListSessionEditableArtifactResourcesOptions,
|
|
21
|
+
PinEditableArtifactVersionRequest,
|
|
22
|
+
ReadEditableArtifactMaterializationOptions,
|
|
23
|
+
ReadEditableArtifactResourceOptions,
|
|
24
|
+
} from "./editable-artifact-resources";
|
|
11
25
|
export {
|
|
12
26
|
OpenGeniApiContractMismatchError,
|
|
13
27
|
OpenGeniApiError,
|
|
@@ -27,6 +41,14 @@ export { parseSseStream } from "./sse";
|
|
|
27
41
|
export type { SseMessage } from "./sse";
|
|
28
42
|
export { normalizeMcpOutput } from "./mcp-output";
|
|
29
43
|
export type { NormalizedMcpOutput } from "./mcp-output";
|
|
44
|
+
export {
|
|
45
|
+
generatedImageSandboxPathMatches,
|
|
46
|
+
parseGeneratedImageReceipt,
|
|
47
|
+
parseGeneratedVideoReceipt,
|
|
48
|
+
parseMediaGenerationResult,
|
|
49
|
+
parseRetainedGeneratedImageReference,
|
|
50
|
+
parseRetainedGeneratedVideoReference,
|
|
51
|
+
} from "./retained-artifacts";
|
|
30
52
|
export {
|
|
31
53
|
CodexRealtimeMicrophoneError,
|
|
32
54
|
acquireCodexRealtimeMicrophone,
|
|
@@ -77,6 +99,8 @@ export type {
|
|
|
77
99
|
export { createGatewayRealtimeTransportStarter } from "./gateway-realtime-transport";
|
|
78
100
|
export { projectSessionRealtimeLifecycle } from "./codex-realtime-lifecycle";
|
|
79
101
|
export type { SessionRealtimeLifecycleProjection } from "./codex-realtime-lifecycle";
|
|
102
|
+
// Provider-neutral Browser/Computer resource client + bounded frame protocol.
|
|
103
|
+
export * from "./interaction";
|
|
80
104
|
// Desktop (noVNC) transport contract — pure, zero-dep (the RFB import lives in
|
|
81
105
|
// @opengeni/react). URL assembler + connection state machine + rotation fence.
|
|
82
106
|
export { desktopSocketUrl, nextDesktopState, applyUrlRotation } from "./desktop";
|
|
@@ -123,6 +147,28 @@ export {
|
|
|
123
147
|
normalizeWorkspaceInstructionPolicyRoleKey,
|
|
124
148
|
WORKSPACE_INSTRUCTION_POLICY_CONTENT_MAX_CHARS,
|
|
125
149
|
} from "./workspace-instruction-policies";
|
|
150
|
+
export {
|
|
151
|
+
COMPANY_PROFILE_ENTRY_MAX_CHARS,
|
|
152
|
+
COMPANY_PROFILE_ENTRY_MAX_COUNT,
|
|
153
|
+
COMPANY_PROFILE_SCALAR_MAX_CHARS,
|
|
154
|
+
normalizeCompanyProfileStableKey,
|
|
155
|
+
} from "./company-profile";
|
|
156
|
+
export type {
|
|
157
|
+
ActivateCompanyProfileRevisionRequest,
|
|
158
|
+
CompanyProfileActivationEvent,
|
|
159
|
+
CompanyProfileContent,
|
|
160
|
+
CompanyProfileDiffRequest,
|
|
161
|
+
CompanyProfileDiffResponse,
|
|
162
|
+
CompanyProfileEntry,
|
|
163
|
+
CompanyProfileHead,
|
|
164
|
+
CompanyProfileListOptions,
|
|
165
|
+
CompanyProfileListResponse,
|
|
166
|
+
CompanyProfileMutationResponse,
|
|
167
|
+
CompanyProfileRevision,
|
|
168
|
+
CompanyProfileRevisionIdentity,
|
|
169
|
+
RollbackCompanyProfileRequest,
|
|
170
|
+
UpdateCompanyProfileRequest,
|
|
171
|
+
} from "./company-profile";
|
|
126
172
|
export type {
|
|
127
173
|
ActivateWorkspaceInstructionPolicyRequest,
|
|
128
174
|
CreateWorkspaceInstructionPolicyDraftRequest,
|
|
@@ -168,6 +214,22 @@ export type {
|
|
|
168
214
|
WorkspaceStateResponse,
|
|
169
215
|
WorkspaceStateSourceKindCounts,
|
|
170
216
|
} from "./workspace-state";
|
|
217
|
+
export type {
|
|
218
|
+
MemorySlackImportance,
|
|
219
|
+
MemorySlackPublication,
|
|
220
|
+
MemorySlackPublicationActionRequest,
|
|
221
|
+
MemorySlackPublicationConfiguration,
|
|
222
|
+
MemorySlackPublicationConfigurationResponse,
|
|
223
|
+
MemorySlackPublicationDistribution,
|
|
224
|
+
MemorySlackPublicationHistoryResponse,
|
|
225
|
+
MemorySlackPublicationReceipt,
|
|
226
|
+
MemorySlackPublicationReceiptKind,
|
|
227
|
+
MemorySlackPublicationState,
|
|
228
|
+
MemorySlackRequestedMode,
|
|
229
|
+
SlackPublicationChannel,
|
|
230
|
+
SlackPublicationChannelListResponse,
|
|
231
|
+
UpdateMemorySlackPublicationConfigurationRequest,
|
|
232
|
+
} from "./memory-slack-delivery";
|
|
171
233
|
export { normalizePreferenceRegistryStableKey } from "./preference-registry";
|
|
172
234
|
export type {
|
|
173
235
|
ActivatePreferenceRegistryRevisionRequest,
|
|
@@ -232,6 +294,7 @@ export {
|
|
|
232
294
|
OPENGENI_API_CONTRACT_HEADER,
|
|
233
295
|
OPENGENI_API_CONTRACT_REVISION,
|
|
234
296
|
OPENGENI_CORRELATION_HEADER,
|
|
297
|
+
GENERATED_VIDEO_MAX_BYTES,
|
|
235
298
|
RETAINED_OUTPUT_DEFAULT_PAGE_BYTES,
|
|
236
299
|
RETAINED_OUTPUT_MAX_PAGE_BYTES,
|
|
237
300
|
SESSION_EVENT_TYPES,
|
|
@@ -243,6 +306,7 @@ export type {
|
|
|
243
306
|
AccountGrant,
|
|
244
307
|
AccountRole,
|
|
245
308
|
AddWorkspaceMemberRequest,
|
|
309
|
+
ApproveSlackUserLinkAccessRequest,
|
|
246
310
|
BeginSessionRealtimeRequest,
|
|
247
311
|
AgentMessageCompletedPayload,
|
|
248
312
|
AgentTextDeltaPayload,
|
|
@@ -256,7 +320,9 @@ export type {
|
|
|
256
320
|
BillingUsageResponse,
|
|
257
321
|
InsightsRange,
|
|
258
322
|
InsightsBillingPath,
|
|
323
|
+
InsightsPricingSource,
|
|
259
324
|
InsightsModelUsageRow,
|
|
325
|
+
InsightsModelCallRow,
|
|
260
326
|
InsightsSeriesPoint,
|
|
261
327
|
InsightsDepthBucket,
|
|
262
328
|
InsightsModelFacet,
|
|
@@ -268,19 +334,26 @@ export type {
|
|
|
268
334
|
WorkspaceInsightsSnapshot,
|
|
269
335
|
WorkspaceInsightsResponse,
|
|
270
336
|
CapabilityCatalogItem,
|
|
337
|
+
CapabilityAction,
|
|
271
338
|
CapabilityCatalogResponse,
|
|
339
|
+
CapabilityComponentOwner,
|
|
272
340
|
CapabilityInstallation,
|
|
273
341
|
CapabilityInstallationStatus,
|
|
274
342
|
CapabilityKind,
|
|
343
|
+
CapabilityLifecycle,
|
|
344
|
+
CapabilityLifecycleStatus,
|
|
275
345
|
CapabilityPack,
|
|
346
|
+
CapabilityPackComponentReference,
|
|
276
347
|
CapabilityPackConnector,
|
|
277
348
|
CapabilityPackConnectorAuthModel,
|
|
349
|
+
CapabilityPackRigRequirement,
|
|
278
350
|
CapabilityPackVariableSetSpec,
|
|
279
351
|
CapabilityPackKnowledge,
|
|
280
352
|
CapabilityPackScheduledTaskTemplate,
|
|
281
353
|
CapabilityPackSkill,
|
|
282
354
|
CapabilityPackSkillFile,
|
|
283
355
|
CapabilityRuntime,
|
|
356
|
+
CapabilityReadiness,
|
|
284
357
|
CapabilitySource,
|
|
285
358
|
CapabilityUnavailableReason,
|
|
286
359
|
ClientConfig,
|
|
@@ -354,6 +427,9 @@ export type {
|
|
|
354
427
|
CreateCapabilityCatalogItemRequest,
|
|
355
428
|
OpenGeniSlackBotInstallRequest,
|
|
356
429
|
OpenGeniSlackBotInstallStart,
|
|
430
|
+
SlackInstallationBinding,
|
|
431
|
+
SlackInstallationBindingState,
|
|
432
|
+
ListSlackInstallationBindingsResponse,
|
|
357
433
|
SlackReactionChannel,
|
|
358
434
|
SlackReactionChannelListResponse,
|
|
359
435
|
CreateConnectionRequest,
|
|
@@ -372,6 +448,8 @@ export type {
|
|
|
372
448
|
CreateWorkspaceEnvironmentRequest,
|
|
373
449
|
CreateWorkspaceRequest,
|
|
374
450
|
DiscoverMcpCapabilitiesResponse,
|
|
451
|
+
InstallSkillRequest,
|
|
452
|
+
InstalledSkill,
|
|
375
453
|
Document,
|
|
376
454
|
DocumentAuthorityKind,
|
|
377
455
|
DocumentBase,
|
|
@@ -400,6 +478,17 @@ export type {
|
|
|
400
478
|
FileStatus,
|
|
401
479
|
FileUploadData,
|
|
402
480
|
FirstPartyMcpToolName,
|
|
481
|
+
AtlassianBrowseItem,
|
|
482
|
+
AtlassianBrowseResponse,
|
|
483
|
+
AtlassianConnectionLifecycle,
|
|
484
|
+
AtlassianConnectionMetadata,
|
|
485
|
+
AtlassianDisconnectRequest,
|
|
486
|
+
AtlassianLifecycleActionRequest,
|
|
487
|
+
AtlassianOAuthStartResponse,
|
|
488
|
+
AtlassianReadPolicy,
|
|
489
|
+
AtlassianSelectedSource,
|
|
490
|
+
AtlassianSourceKind,
|
|
491
|
+
AtlassianSyncCadence,
|
|
403
492
|
GetPackResponse,
|
|
404
493
|
GitHubAppInfo,
|
|
405
494
|
GitHubAppSetupMode,
|
|
@@ -414,6 +503,9 @@ export type {
|
|
|
414
503
|
GoogleDriveConnectionMetadata,
|
|
415
504
|
GoogleDriveDisconnectRequest,
|
|
416
505
|
GoogleDriveLifecycleActionRequest,
|
|
506
|
+
GoogleDriveKnowledgeSourceConfig,
|
|
507
|
+
GoogleDriveKnowledgeSourceDestination,
|
|
508
|
+
GoogleDriveKnowledgeSourceItem,
|
|
417
509
|
GoogleDriveOAuthStartRequest,
|
|
418
510
|
GoogleDriveOAuthStartResponse,
|
|
419
511
|
GoogleDriveReadPolicy,
|
|
@@ -439,6 +531,7 @@ export type {
|
|
|
439
531
|
ListApiKeysResponse,
|
|
440
532
|
ListConnectionsResponse,
|
|
441
533
|
ListPacksResponse,
|
|
534
|
+
ListSlackUserLinkAccessRequestsResponse,
|
|
442
535
|
ListWorkspaceMembersResponse,
|
|
443
536
|
McpServerConnectionRef,
|
|
444
537
|
McpPersonalConnectionDelegation,
|
|
@@ -446,18 +539,47 @@ export type {
|
|
|
446
539
|
OAuthStartRequest,
|
|
447
540
|
OAuthStartResponse,
|
|
448
541
|
PackInstallation,
|
|
542
|
+
PackInstallationPreview,
|
|
449
543
|
PackInstallationStatus,
|
|
544
|
+
PackComponentResolution,
|
|
545
|
+
PackComponentResolutionStatus,
|
|
546
|
+
PackRigResolution,
|
|
547
|
+
PackUninstallPreview,
|
|
548
|
+
PreviewPackInstallationRequest,
|
|
549
|
+
InstallPackRequest,
|
|
550
|
+
UninstallPackRequest,
|
|
551
|
+
UninstallPackResult,
|
|
450
552
|
Permission,
|
|
553
|
+
PrepareSlackUserLinkAccessRequest,
|
|
451
554
|
ProductAccessMode,
|
|
452
555
|
LatencyMode,
|
|
453
556
|
ReasoningEffort,
|
|
557
|
+
GeneratedImageReceipt,
|
|
558
|
+
GeneratedVideoFacts,
|
|
559
|
+
GeneratedVideoReceipt,
|
|
560
|
+
MediaGenerationResult,
|
|
454
561
|
RetainedArtifactContent,
|
|
455
562
|
RetainedArtifactContentOptions,
|
|
563
|
+
RetainedArtifactDownload,
|
|
564
|
+
RetainedArtifactDownloadOptions,
|
|
456
565
|
RetainedArtifactMetadata,
|
|
457
566
|
RetainedArtifactReference,
|
|
458
567
|
RetainedArtifactUnavailable,
|
|
459
568
|
RetainedOutputKind,
|
|
460
569
|
RetainedOutputUnavailableReason,
|
|
570
|
+
UpdateVideoGenerationPolicyRequest,
|
|
571
|
+
VideoArtifactPlaybackSource,
|
|
572
|
+
VideoGenerationAspectRatio,
|
|
573
|
+
VideoGenerationCapabilities,
|
|
574
|
+
VideoGenerationFundingOption,
|
|
575
|
+
VideoGenerationFundingSource,
|
|
576
|
+
VideoGenerationModelCapability,
|
|
577
|
+
VideoGenerationOperationSummary,
|
|
578
|
+
VideoGenerationPolicy,
|
|
579
|
+
VideoGenerationPublicStatus,
|
|
580
|
+
VideoGenerationResolution,
|
|
581
|
+
VideoGenerationSourceMode,
|
|
582
|
+
VideoGenerationTerminalFailureStatus,
|
|
461
583
|
RecordingAvailablePayload,
|
|
462
584
|
RecordingCodec,
|
|
463
585
|
RecordingContentType,
|
|
@@ -469,6 +591,7 @@ export type {
|
|
|
469
591
|
RepositoryResourceRef,
|
|
470
592
|
ResourceRef,
|
|
471
593
|
SaveGoogleDriveSourceRequest,
|
|
594
|
+
SaveGoogleDriveIntegrationSourceRequest,
|
|
472
595
|
SandboxBackend,
|
|
473
596
|
SandboxCapabilityName,
|
|
474
597
|
SandboxOs,
|
|
@@ -480,11 +603,17 @@ export type {
|
|
|
480
603
|
ScheduledTaskRun,
|
|
481
604
|
ScheduledTaskRunMode,
|
|
482
605
|
ScheduledTaskRunStatus,
|
|
606
|
+
ScheduledTaskAction,
|
|
607
|
+
KnowledgeSourceSyncLimits,
|
|
608
|
+
KnowledgeSourceSyncRunSummary,
|
|
609
|
+
ScopedKnowledgeScope,
|
|
483
610
|
ScheduledTaskScheduleSpec,
|
|
484
611
|
ScheduledTaskStatus,
|
|
485
612
|
ScheduledTaskTriggerType,
|
|
486
613
|
Session,
|
|
487
614
|
SessionCapabilities,
|
|
615
|
+
AgentTopologyPageResponse,
|
|
616
|
+
AgentTopologySession,
|
|
488
617
|
SessionListResponse,
|
|
489
618
|
SessionLineageResponse,
|
|
490
619
|
SessionEffectiveToolPolicy,
|
|
@@ -556,6 +685,12 @@ export type {
|
|
|
556
685
|
SessionStatusChangedPayload,
|
|
557
686
|
SessionStructuredCapabilities,
|
|
558
687
|
SessionTurn,
|
|
688
|
+
DraftTimelineAnnotation,
|
|
689
|
+
SubmittedTimelineAnnotation,
|
|
690
|
+
TimelineAnnotation,
|
|
691
|
+
TimelineAnnotationSource,
|
|
692
|
+
TimelineAnnotationSourceEventType,
|
|
693
|
+
TimelineAnnotationSourceKind,
|
|
559
694
|
ServiceTurnInitiator,
|
|
560
695
|
ServiceTurnInitiatorContext,
|
|
561
696
|
TurnInitiatorContext,
|
|
@@ -578,6 +713,8 @@ export type {
|
|
|
578
713
|
FsEncoding,
|
|
579
714
|
FsListRequest,
|
|
580
715
|
FsListResponse,
|
|
716
|
+
FsListBatchRequest,
|
|
717
|
+
FsListBatchResponse,
|
|
581
718
|
FsReadRequest,
|
|
582
719
|
FsReadResponse,
|
|
583
720
|
FsWriteRequest,
|
|
@@ -598,6 +735,10 @@ export type {
|
|
|
598
735
|
GitFileDiff,
|
|
599
736
|
GitDiffRequest,
|
|
600
737
|
GitDiffResponse,
|
|
738
|
+
GitReadBatchItemRequest,
|
|
739
|
+
GitReadBatchRequest,
|
|
740
|
+
GitReadBatchItemResponse,
|
|
741
|
+
GitReadBatchResponse,
|
|
601
742
|
GitLogRequest,
|
|
602
743
|
GitCommit,
|
|
603
744
|
GitLogResponse,
|
|
@@ -622,6 +763,9 @@ export type {
|
|
|
622
763
|
PtyResizeRequest,
|
|
623
764
|
PtyCloseRequest,
|
|
624
765
|
ToolRef,
|
|
766
|
+
SlackUserLinkAccessMutationRequest,
|
|
767
|
+
SlackUserLinkAccessRequest,
|
|
768
|
+
SlackUserLinkAccessRequestStatus,
|
|
625
769
|
UpdateKnowledgeMemoryRequest,
|
|
626
770
|
UpdateScheduledTaskRequest,
|
|
627
771
|
UpdateSessionGoalRequest,
|
|
@@ -646,6 +790,7 @@ export type {
|
|
|
646
790
|
Workspace,
|
|
647
791
|
WorkspaceControlEvent,
|
|
648
792
|
VariableSet,
|
|
793
|
+
VariableSetSecret,
|
|
649
794
|
VariableSetVariableMetadata,
|
|
650
795
|
Rig,
|
|
651
796
|
RigVersion,
|
|
@@ -663,11 +808,58 @@ export type {
|
|
|
663
808
|
WorkspaceEnvironment,
|
|
664
809
|
WorkspaceEnvironmentVariableMetadata,
|
|
665
810
|
WorkspaceMember,
|
|
811
|
+
PreviewSkillImportRequest,
|
|
812
|
+
ApiIntegrationAuthPreview,
|
|
813
|
+
ApiIntegrationInstallationSummary,
|
|
814
|
+
ApiIntegrationPresetSummary,
|
|
815
|
+
ApiIntegrationPreview,
|
|
816
|
+
ApiIntegrationOAuthStartRequest,
|
|
817
|
+
ApiIntegrationProtocol,
|
|
818
|
+
ApiIntegrationSource,
|
|
819
|
+
ApiIntegrationToolPreview,
|
|
820
|
+
ApiIntegrationUninstallPreview,
|
|
821
|
+
IntegrationFeatureBindingSummary,
|
|
822
|
+
IntegrationFeatureDefinitionSummary,
|
|
823
|
+
IntegrationFeatureKind,
|
|
824
|
+
IntegrationFeatureMutationResult,
|
|
825
|
+
IntegrationFeatureRemovalResult,
|
|
826
|
+
IntegrationFeatureStatus,
|
|
827
|
+
IntegrationInstanceFeaturesResponse,
|
|
828
|
+
InstallApiIntegrationRequest,
|
|
829
|
+
InstalledApiIntegration,
|
|
830
|
+
ListApiIntegrationPresetsResponse,
|
|
831
|
+
ListApiIntegrationsResponse,
|
|
832
|
+
PreviewApiIntegrationRequest,
|
|
833
|
+
MutateIntegrationFeatureRequest,
|
|
834
|
+
UpsertIntegrationFeatureRequest,
|
|
835
|
+
SkillImportFileSummary,
|
|
836
|
+
SkillImportPreview,
|
|
837
|
+
SkillImportSource,
|
|
838
|
+
SkillUninstallPreview,
|
|
839
|
+
UninstallSkillRequest,
|
|
840
|
+
UninstallSkillResult,
|
|
841
|
+
UninstallApiIntegrationRequest,
|
|
842
|
+
UninstallApiIntegrationResult,
|
|
843
|
+
PluginManifest,
|
|
844
|
+
PluginManifestComponent,
|
|
845
|
+
PluginComponentBinding,
|
|
846
|
+
PreviewPluginRequest,
|
|
847
|
+
PluginComponentPreview,
|
|
848
|
+
PluginUpdateDiff,
|
|
849
|
+
PluginPreview,
|
|
850
|
+
InstallPluginRequest,
|
|
851
|
+
InstalledPlugin,
|
|
852
|
+
PluginInstallationSummary,
|
|
853
|
+
ListInstalledPluginsResponse,
|
|
854
|
+
PluginUninstallPreview,
|
|
855
|
+
UninstallPluginRequest,
|
|
856
|
+
UninstallPluginResult,
|
|
666
857
|
WorkspaceMemorySearchMode,
|
|
667
858
|
WorkspaceMemorySearchRequest,
|
|
668
859
|
WorkspaceMemorySearchResult,
|
|
669
860
|
WorkspaceMemorySearchResponse,
|
|
670
861
|
WorkspaceSettings,
|
|
862
|
+
WorkspaceVideoGenerationSettings,
|
|
671
863
|
WorkspaceVoiceInputSettings,
|
|
672
864
|
WorkspaceRegisteredPack,
|
|
673
865
|
// Bring-your-own-compute: Machines dashboard + per-machine metrics (M10).
|
|
@@ -677,6 +869,8 @@ export type {
|
|
|
677
869
|
MachineView,
|
|
678
870
|
MachinesResponse,
|
|
679
871
|
MachineMetricsSeriesResponse,
|
|
872
|
+
RemoveEnrollmentRequest,
|
|
873
|
+
RemoveEnrollmentResponse,
|
|
680
874
|
// Bring-your-own-compute: the user-authenticated active-sandbox swap (M7).
|
|
681
875
|
SwapActiveSandboxRequest,
|
|
682
876
|
SwapActiveSandboxResponse,
|