@asaidimu/utils-workspace 6.6.7 → 6.6.8
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/index.d.mts +31 -6
- package/index.d.ts +31 -6
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -618,11 +618,18 @@ interface Artifact extends BaseContentBlock<"artifact"> {
|
|
|
618
618
|
*/
|
|
619
619
|
updated?: Timestamp;
|
|
620
620
|
}
|
|
621
|
-
type ArtifactPatchFormat = "unified-diff";
|
|
622
|
-
interface
|
|
623
|
-
|
|
624
|
-
|
|
621
|
+
type ArtifactPatchFormat = "unified-diff" | "search-replace";
|
|
622
|
+
interface SearchReplaceOperation {
|
|
623
|
+
oldText: string;
|
|
624
|
+
newText: string;
|
|
625
625
|
}
|
|
626
|
+
type ArtifactPatch = {
|
|
627
|
+
format: "unified-diff";
|
|
628
|
+
value: string;
|
|
629
|
+
} | {
|
|
630
|
+
format: "search-replace";
|
|
631
|
+
operations: SearchReplaceOperation[];
|
|
632
|
+
};
|
|
626
633
|
type ArtifactUpdate = Pick<Artifact, "key" | "status"> & ({
|
|
627
634
|
content: TextContextContent;
|
|
628
635
|
patch?: never;
|
|
@@ -711,6 +718,13 @@ type PermissionDeniedError = {
|
|
|
711
718
|
/** Explanation of the missing permissions or blocked action. */
|
|
712
719
|
reason: string;
|
|
713
720
|
};
|
|
721
|
+
type ReconciliationError = {
|
|
722
|
+
code: "RECONCILIATION_ERROR";
|
|
723
|
+
format: ArtifactPatchFormat;
|
|
724
|
+
operationIndex: number;
|
|
725
|
+
reason: "not_found" | "ambiguous" | "empty_search";
|
|
726
|
+
searchSnippet: string;
|
|
727
|
+
};
|
|
714
728
|
/** Union of all possible error types within the Workspace domain. */
|
|
715
729
|
type WorkspaceError = DuplicateKeyError | NotFoundError | InvalidCommandError | BackendError | PermissionDeniedError | BlobError;
|
|
716
730
|
/** Global user preferences and defaults for the workspace. */
|
|
@@ -2634,6 +2648,8 @@ interface ModelProfile {
|
|
|
2634
2648
|
provider: string;
|
|
2635
2649
|
/** Canonical model string as accepted by the API, e.g. "gemini-2.0-flash". */
|
|
2636
2650
|
name: string;
|
|
2651
|
+
/** Display friendly name for the model, e.g "Gemini-2-flash" */
|
|
2652
|
+
label: string;
|
|
2637
2653
|
/** Context window and output limits. */
|
|
2638
2654
|
window: AdapterStatus["window"];
|
|
2639
2655
|
/** Capability flags. */
|
|
@@ -3297,6 +3313,12 @@ declare class GoogleGenAIAdapter implements LLMAdapter<GenerateContentParameters
|
|
|
3297
3313
|
declare const mappings: Record<string, BlockMapper>;
|
|
3298
3314
|
|
|
3299
3315
|
declare const GOOGLE_MODELS: Array<ModelProfile>;
|
|
3316
|
+
/** Everyday workhorse models: Flash variants + larger Gemma 4s. */
|
|
3317
|
+
declare const GOOGLE_MODELS_COMMON: Array<ModelProfile>;
|
|
3318
|
+
/** All Pro-tier models. */
|
|
3319
|
+
declare const GOOGLE_MODELS_PRO: Array<ModelProfile>;
|
|
3320
|
+
/** Text and multimodal embedding models only. */
|
|
3321
|
+
declare const GOOGLE_MODELS_EMBEDDING: Array<ModelProfile>;
|
|
3300
3322
|
|
|
3301
3323
|
type RawBlock = {
|
|
3302
3324
|
type: string;
|
|
@@ -3341,13 +3363,16 @@ declare function extractModelResponse(response: GenerateContentResponse): Extrac
|
|
|
3341
3363
|
|
|
3342
3364
|
type index_ExtractionResult = ExtractionResult;
|
|
3343
3365
|
declare const index_GOOGLE_MODELS: typeof GOOGLE_MODELS;
|
|
3366
|
+
declare const index_GOOGLE_MODELS_COMMON: typeof GOOGLE_MODELS_COMMON;
|
|
3367
|
+
declare const index_GOOGLE_MODELS_EMBEDDING: typeof GOOGLE_MODELS_EMBEDDING;
|
|
3368
|
+
declare const index_GOOGLE_MODELS_PRO: typeof GOOGLE_MODELS_PRO;
|
|
3344
3369
|
type index_GoogleGenAIAdapter = GoogleGenAIAdapter;
|
|
3345
3370
|
declare const index_GoogleGenAIAdapter: typeof GoogleGenAIAdapter;
|
|
3346
3371
|
type index_RawBlock = RawBlock;
|
|
3347
3372
|
declare const index_extractModelResponse: typeof extractModelResponse;
|
|
3348
3373
|
declare const index_mappings: typeof mappings;
|
|
3349
3374
|
declare namespace index {
|
|
3350
|
-
export { type index_ExtractionResult as ExtractionResult, index_GOOGLE_MODELS as GOOGLE_MODELS, index_GoogleGenAIAdapter as GoogleGenAIAdapter, type index_RawBlock as RawBlock, index_extractModelResponse as extractModelResponse, index_mappings as mappings };
|
|
3375
|
+
export { type index_ExtractionResult as ExtractionResult, index_GOOGLE_MODELS as GOOGLE_MODELS, index_GOOGLE_MODELS_COMMON as GOOGLE_MODELS_COMMON, index_GOOGLE_MODELS_EMBEDDING as GOOGLE_MODELS_EMBEDDING, index_GOOGLE_MODELS_PRO as GOOGLE_MODELS_PRO, index_GoogleGenAIAdapter as GoogleGenAIAdapter, type index_RawBlock as RawBlock, index_extractModelResponse as extractModelResponse, index_mappings as mappings };
|
|
3351
3376
|
}
|
|
3352
3377
|
|
|
3353
3378
|
interface CreateWorkspaceParams {
|
|
@@ -3409,4 +3434,4 @@ declare function createWorkspace(params: CreateWorkspaceParams): Promise<{
|
|
|
3409
3434
|
bootstrap: (config: BootstrapConfig) => Promise<BootstrapResult>;
|
|
3410
3435
|
}>;
|
|
3411
3436
|
|
|
3412
|
-
export { type AdapterStatus, type AddArtifact, type AddContext, type AddPreference, type AddRole, type AddSessionTopics, type AddTopic, type AddTurn, type Artifact, type ArtifactSummary, type AssemblerExtension, type AuthRequest, type BackendError, type BaseCommand, type BaseContentBlock, type BaseContextContent, type BlobCommand, type BlobContextContent, type BlobError, type BlobMediaType, type BlobRecord, type BlobRef, type BlobResolver, type BlockMapper, type BootstrapConfig, type BootstrapResult, type BranchInfo, type BranchTurn, COLLECTIONS, type CheckpointBlock, type CheckpointSessionState, type Collections, type Command, type ContentBlock, type ContentBlockDefinition, type Context, type ContextContent, type ContextDefinition, type ContextRetriever, type ContextSummary, CoreTurnProcessor, type CreateSession, type CreateWorkspace, type CreateWorkspaceParams, type DeepPartial, type DefaultContextContent, DefaultPromptBuilder, type DeleteArtifact, type DeleteContext, type DeletePreference, type DeleteRole, type DeleteSession, type DeleteTopic, type DeleteTurn, type DocumentBlock, type DocumentMediaType, type DuplicateKeyError, EMPTY_SYSTEM_ROLE, type EditTurn, type ForkSession, index as GoogleAdapter, type ImageBlock, type ImageMediaType, type Index, type IndexExtensions, type IndexedDBBlobConfig, IndexedDBBlobStorage, type Indexer, type InvalidCommandError, JaccardContextRetriever, type JsonContextContent, type LLMAdapter, type LLMAdapterStatic, LRUCache, MemoryBlobStorage, type MergeTopics, type ModelConstraint, type ModelConstraintMap, type ModelName, type ModelProfile, type ModelRegistry, type NotFoundError, type OverrideSessionPreferences, type PermissionDeniedError, type PermissionGuard, type Preference, type PreferenceSummary, type PreparedPrompt, type Project, type Prompt, PromptAssembler, type PromptBuilder, type PromptBuilderOptions, type PromptResult, type PromptSection, type PurgeBlob, type RecordBlobRemoteId, type RegisterBlob, type ReleaseBlob, type RemoteContextContent, type ResolvedBlob, type ResolvedSession, type Result, type RetainBlob, type Role, type RoleSummary, type RoleTransitionBlock, type SHA256, Session, SessionManager, type SessionMetadata, type SessionSnapshot, type Settings, type Store, type Summarizer, type SummaryBlock, type SwitchSessionRole, type SyncWorkspace, type SystemActor, type SystemPromptAssembler, type TextBlock, type TextContextContent, type ThinkingBlock, type Timestamp, type ToolCall, type ToolCallCommand, type ToolRegistry, type ToolResultBlock, type ToolSummary, type ToolUseBlock, type Topic, type TopicIndex, type Turn, TurnBuilder, type TurnKey, type TurnNode, type TurnProcessor, type TurnRef, TurnTree, type URI, type UUID, type UpdateArtifact, type UpdateContext, type UpdatePreference, type UpdateRole, type UpdateSession, type UpdateTopic, type UpdateTurn, type Workspace, WorkspaceApi, type WorkspaceBundle, type WorkspaceContext, type WorkspaceDatabase, type WorkspaceError, type WorkspaceEvents, type WorkspaceExtension, WorkspaceManager, type WorkspaceMiddleware, type WorkspaceReducer, WorkspaceRegistry, type WorkspaceServices, bufferToBase64, computeSHA256, createDefaultAssembler, createEmptySession, createEmptyTurn, createEmptyWorkspace, createWorkspace, createWorkspaceDatabase, del, error, getExtension, merge, omitNullUndefined, sessionStateToMarkdown, shortHash, success };
|
|
3437
|
+
export { type AdapterStatus, type AddArtifact, type AddContext, type AddPreference, type AddRole, type AddSessionTopics, type AddTopic, type AddTurn, type Artifact, type ArtifactSummary, type AssemblerExtension, type AuthRequest, type BackendError, type BaseCommand, type BaseContentBlock, type BaseContextContent, type BlobCommand, type BlobContextContent, type BlobError, type BlobMediaType, type BlobRecord, type BlobRef, type BlobResolver, type BlockMapper, type BootstrapConfig, type BootstrapResult, type BranchInfo, type BranchTurn, COLLECTIONS, type CheckpointBlock, type CheckpointSessionState, type Collections, type Command, type ContentBlock, type ContentBlockDefinition, type Context, type ContextContent, type ContextDefinition, type ContextRetriever, type ContextSummary, CoreTurnProcessor, type CreateSession, type CreateWorkspace, type CreateWorkspaceParams, type DeepPartial, type DefaultContextContent, DefaultPromptBuilder, type DeleteArtifact, type DeleteContext, type DeletePreference, type DeleteRole, type DeleteSession, type DeleteTopic, type DeleteTurn, type DocumentBlock, type DocumentMediaType, type DuplicateKeyError, EMPTY_SYSTEM_ROLE, type EditTurn, type ForkSession, index as GoogleAdapter, type ImageBlock, type ImageMediaType, type Index, type IndexExtensions, type IndexedDBBlobConfig, IndexedDBBlobStorage, type Indexer, type InvalidCommandError, JaccardContextRetriever, type JsonContextContent, type LLMAdapter, type LLMAdapterStatic, LRUCache, MemoryBlobStorage, type MergeTopics, type ModelConstraint, type ModelConstraintMap, type ModelName, type ModelProfile, type ModelRegistry, type NotFoundError, type OverrideSessionPreferences, type PermissionDeniedError, type PermissionGuard, type Preference, type PreferenceSummary, type PreparedPrompt, type Project, type Prompt, PromptAssembler, type PromptBuilder, type PromptBuilderOptions, type PromptResult, type PromptSection, type PurgeBlob, type ReconciliationError, type RecordBlobRemoteId, type RegisterBlob, type ReleaseBlob, type RemoteContextContent, type ResolvedBlob, type ResolvedSession, type Result, type RetainBlob, type Role, type RoleSummary, type RoleTransitionBlock, type SHA256, Session, SessionManager, type SessionMetadata, type SessionSnapshot, type Settings, type Store, type Summarizer, type SummaryBlock, type SwitchSessionRole, type SyncWorkspace, type SystemActor, type SystemPromptAssembler, type TextBlock, type TextContextContent, type ThinkingBlock, type Timestamp, type ToolCall, type ToolCallCommand, type ToolRegistry, type ToolResultBlock, type ToolSummary, type ToolUseBlock, type Topic, type TopicIndex, type Turn, TurnBuilder, type TurnKey, type TurnNode, type TurnProcessor, type TurnRef, TurnTree, type URI, type UUID, type UpdateArtifact, type UpdateContext, type UpdatePreference, type UpdateRole, type UpdateSession, type UpdateTopic, type UpdateTurn, type Workspace, WorkspaceApi, type WorkspaceBundle, type WorkspaceContext, type WorkspaceDatabase, type WorkspaceError, type WorkspaceEvents, type WorkspaceExtension, WorkspaceManager, type WorkspaceMiddleware, type WorkspaceReducer, WorkspaceRegistry, type WorkspaceServices, bufferToBase64, computeSHA256, createDefaultAssembler, createEmptySession, createEmptyTurn, createEmptyWorkspace, createWorkspace, createWorkspaceDatabase, del, error, getExtension, merge, omitNullUndefined, sessionStateToMarkdown, shortHash, success };
|
package/index.d.ts
CHANGED
|
@@ -618,11 +618,18 @@ interface Artifact extends BaseContentBlock<"artifact"> {
|
|
|
618
618
|
*/
|
|
619
619
|
updated?: Timestamp;
|
|
620
620
|
}
|
|
621
|
-
type ArtifactPatchFormat = "unified-diff";
|
|
622
|
-
interface
|
|
623
|
-
|
|
624
|
-
|
|
621
|
+
type ArtifactPatchFormat = "unified-diff" | "search-replace";
|
|
622
|
+
interface SearchReplaceOperation {
|
|
623
|
+
oldText: string;
|
|
624
|
+
newText: string;
|
|
625
625
|
}
|
|
626
|
+
type ArtifactPatch = {
|
|
627
|
+
format: "unified-diff";
|
|
628
|
+
value: string;
|
|
629
|
+
} | {
|
|
630
|
+
format: "search-replace";
|
|
631
|
+
operations: SearchReplaceOperation[];
|
|
632
|
+
};
|
|
626
633
|
type ArtifactUpdate = Pick<Artifact, "key" | "status"> & ({
|
|
627
634
|
content: TextContextContent;
|
|
628
635
|
patch?: never;
|
|
@@ -711,6 +718,13 @@ type PermissionDeniedError = {
|
|
|
711
718
|
/** Explanation of the missing permissions or blocked action. */
|
|
712
719
|
reason: string;
|
|
713
720
|
};
|
|
721
|
+
type ReconciliationError = {
|
|
722
|
+
code: "RECONCILIATION_ERROR";
|
|
723
|
+
format: ArtifactPatchFormat;
|
|
724
|
+
operationIndex: number;
|
|
725
|
+
reason: "not_found" | "ambiguous" | "empty_search";
|
|
726
|
+
searchSnippet: string;
|
|
727
|
+
};
|
|
714
728
|
/** Union of all possible error types within the Workspace domain. */
|
|
715
729
|
type WorkspaceError = DuplicateKeyError | NotFoundError | InvalidCommandError | BackendError | PermissionDeniedError | BlobError;
|
|
716
730
|
/** Global user preferences and defaults for the workspace. */
|
|
@@ -2634,6 +2648,8 @@ interface ModelProfile {
|
|
|
2634
2648
|
provider: string;
|
|
2635
2649
|
/** Canonical model string as accepted by the API, e.g. "gemini-2.0-flash". */
|
|
2636
2650
|
name: string;
|
|
2651
|
+
/** Display friendly name for the model, e.g "Gemini-2-flash" */
|
|
2652
|
+
label: string;
|
|
2637
2653
|
/** Context window and output limits. */
|
|
2638
2654
|
window: AdapterStatus["window"];
|
|
2639
2655
|
/** Capability flags. */
|
|
@@ -3297,6 +3313,12 @@ declare class GoogleGenAIAdapter implements LLMAdapter<GenerateContentParameters
|
|
|
3297
3313
|
declare const mappings: Record<string, BlockMapper>;
|
|
3298
3314
|
|
|
3299
3315
|
declare const GOOGLE_MODELS: Array<ModelProfile>;
|
|
3316
|
+
/** Everyday workhorse models: Flash variants + larger Gemma 4s. */
|
|
3317
|
+
declare const GOOGLE_MODELS_COMMON: Array<ModelProfile>;
|
|
3318
|
+
/** All Pro-tier models. */
|
|
3319
|
+
declare const GOOGLE_MODELS_PRO: Array<ModelProfile>;
|
|
3320
|
+
/** Text and multimodal embedding models only. */
|
|
3321
|
+
declare const GOOGLE_MODELS_EMBEDDING: Array<ModelProfile>;
|
|
3300
3322
|
|
|
3301
3323
|
type RawBlock = {
|
|
3302
3324
|
type: string;
|
|
@@ -3341,13 +3363,16 @@ declare function extractModelResponse(response: GenerateContentResponse): Extrac
|
|
|
3341
3363
|
|
|
3342
3364
|
type index_ExtractionResult = ExtractionResult;
|
|
3343
3365
|
declare const index_GOOGLE_MODELS: typeof GOOGLE_MODELS;
|
|
3366
|
+
declare const index_GOOGLE_MODELS_COMMON: typeof GOOGLE_MODELS_COMMON;
|
|
3367
|
+
declare const index_GOOGLE_MODELS_EMBEDDING: typeof GOOGLE_MODELS_EMBEDDING;
|
|
3368
|
+
declare const index_GOOGLE_MODELS_PRO: typeof GOOGLE_MODELS_PRO;
|
|
3344
3369
|
type index_GoogleGenAIAdapter = GoogleGenAIAdapter;
|
|
3345
3370
|
declare const index_GoogleGenAIAdapter: typeof GoogleGenAIAdapter;
|
|
3346
3371
|
type index_RawBlock = RawBlock;
|
|
3347
3372
|
declare const index_extractModelResponse: typeof extractModelResponse;
|
|
3348
3373
|
declare const index_mappings: typeof mappings;
|
|
3349
3374
|
declare namespace index {
|
|
3350
|
-
export { type index_ExtractionResult as ExtractionResult, index_GOOGLE_MODELS as GOOGLE_MODELS, index_GoogleGenAIAdapter as GoogleGenAIAdapter, type index_RawBlock as RawBlock, index_extractModelResponse as extractModelResponse, index_mappings as mappings };
|
|
3375
|
+
export { type index_ExtractionResult as ExtractionResult, index_GOOGLE_MODELS as GOOGLE_MODELS, index_GOOGLE_MODELS_COMMON as GOOGLE_MODELS_COMMON, index_GOOGLE_MODELS_EMBEDDING as GOOGLE_MODELS_EMBEDDING, index_GOOGLE_MODELS_PRO as GOOGLE_MODELS_PRO, index_GoogleGenAIAdapter as GoogleGenAIAdapter, type index_RawBlock as RawBlock, index_extractModelResponse as extractModelResponse, index_mappings as mappings };
|
|
3351
3376
|
}
|
|
3352
3377
|
|
|
3353
3378
|
interface CreateWorkspaceParams {
|
|
@@ -3409,4 +3434,4 @@ declare function createWorkspace(params: CreateWorkspaceParams): Promise<{
|
|
|
3409
3434
|
bootstrap: (config: BootstrapConfig) => Promise<BootstrapResult>;
|
|
3410
3435
|
}>;
|
|
3411
3436
|
|
|
3412
|
-
export { type AdapterStatus, type AddArtifact, type AddContext, type AddPreference, type AddRole, type AddSessionTopics, type AddTopic, type AddTurn, type Artifact, type ArtifactSummary, type AssemblerExtension, type AuthRequest, type BackendError, type BaseCommand, type BaseContentBlock, type BaseContextContent, type BlobCommand, type BlobContextContent, type BlobError, type BlobMediaType, type BlobRecord, type BlobRef, type BlobResolver, type BlockMapper, type BootstrapConfig, type BootstrapResult, type BranchInfo, type BranchTurn, COLLECTIONS, type CheckpointBlock, type CheckpointSessionState, type Collections, type Command, type ContentBlock, type ContentBlockDefinition, type Context, type ContextContent, type ContextDefinition, type ContextRetriever, type ContextSummary, CoreTurnProcessor, type CreateSession, type CreateWorkspace, type CreateWorkspaceParams, type DeepPartial, type DefaultContextContent, DefaultPromptBuilder, type DeleteArtifact, type DeleteContext, type DeletePreference, type DeleteRole, type DeleteSession, type DeleteTopic, type DeleteTurn, type DocumentBlock, type DocumentMediaType, type DuplicateKeyError, EMPTY_SYSTEM_ROLE, type EditTurn, type ForkSession, index as GoogleAdapter, type ImageBlock, type ImageMediaType, type Index, type IndexExtensions, type IndexedDBBlobConfig, IndexedDBBlobStorage, type Indexer, type InvalidCommandError, JaccardContextRetriever, type JsonContextContent, type LLMAdapter, type LLMAdapterStatic, LRUCache, MemoryBlobStorage, type MergeTopics, type ModelConstraint, type ModelConstraintMap, type ModelName, type ModelProfile, type ModelRegistry, type NotFoundError, type OverrideSessionPreferences, type PermissionDeniedError, type PermissionGuard, type Preference, type PreferenceSummary, type PreparedPrompt, type Project, type Prompt, PromptAssembler, type PromptBuilder, type PromptBuilderOptions, type PromptResult, type PromptSection, type PurgeBlob, type RecordBlobRemoteId, type RegisterBlob, type ReleaseBlob, type RemoteContextContent, type ResolvedBlob, type ResolvedSession, type Result, type RetainBlob, type Role, type RoleSummary, type RoleTransitionBlock, type SHA256, Session, SessionManager, type SessionMetadata, type SessionSnapshot, type Settings, type Store, type Summarizer, type SummaryBlock, type SwitchSessionRole, type SyncWorkspace, type SystemActor, type SystemPromptAssembler, type TextBlock, type TextContextContent, type ThinkingBlock, type Timestamp, type ToolCall, type ToolCallCommand, type ToolRegistry, type ToolResultBlock, type ToolSummary, type ToolUseBlock, type Topic, type TopicIndex, type Turn, TurnBuilder, type TurnKey, type TurnNode, type TurnProcessor, type TurnRef, TurnTree, type URI, type UUID, type UpdateArtifact, type UpdateContext, type UpdatePreference, type UpdateRole, type UpdateSession, type UpdateTopic, type UpdateTurn, type Workspace, WorkspaceApi, type WorkspaceBundle, type WorkspaceContext, type WorkspaceDatabase, type WorkspaceError, type WorkspaceEvents, type WorkspaceExtension, WorkspaceManager, type WorkspaceMiddleware, type WorkspaceReducer, WorkspaceRegistry, type WorkspaceServices, bufferToBase64, computeSHA256, createDefaultAssembler, createEmptySession, createEmptyTurn, createEmptyWorkspace, createWorkspace, createWorkspaceDatabase, del, error, getExtension, merge, omitNullUndefined, sessionStateToMarkdown, shortHash, success };
|
|
3437
|
+
export { type AdapterStatus, type AddArtifact, type AddContext, type AddPreference, type AddRole, type AddSessionTopics, type AddTopic, type AddTurn, type Artifact, type ArtifactSummary, type AssemblerExtension, type AuthRequest, type BackendError, type BaseCommand, type BaseContentBlock, type BaseContextContent, type BlobCommand, type BlobContextContent, type BlobError, type BlobMediaType, type BlobRecord, type BlobRef, type BlobResolver, type BlockMapper, type BootstrapConfig, type BootstrapResult, type BranchInfo, type BranchTurn, COLLECTIONS, type CheckpointBlock, type CheckpointSessionState, type Collections, type Command, type ContentBlock, type ContentBlockDefinition, type Context, type ContextContent, type ContextDefinition, type ContextRetriever, type ContextSummary, CoreTurnProcessor, type CreateSession, type CreateWorkspace, type CreateWorkspaceParams, type DeepPartial, type DefaultContextContent, DefaultPromptBuilder, type DeleteArtifact, type DeleteContext, type DeletePreference, type DeleteRole, type DeleteSession, type DeleteTopic, type DeleteTurn, type DocumentBlock, type DocumentMediaType, type DuplicateKeyError, EMPTY_SYSTEM_ROLE, type EditTurn, type ForkSession, index as GoogleAdapter, type ImageBlock, type ImageMediaType, type Index, type IndexExtensions, type IndexedDBBlobConfig, IndexedDBBlobStorage, type Indexer, type InvalidCommandError, JaccardContextRetriever, type JsonContextContent, type LLMAdapter, type LLMAdapterStatic, LRUCache, MemoryBlobStorage, type MergeTopics, type ModelConstraint, type ModelConstraintMap, type ModelName, type ModelProfile, type ModelRegistry, type NotFoundError, type OverrideSessionPreferences, type PermissionDeniedError, type PermissionGuard, type Preference, type PreferenceSummary, type PreparedPrompt, type Project, type Prompt, PromptAssembler, type PromptBuilder, type PromptBuilderOptions, type PromptResult, type PromptSection, type PurgeBlob, type ReconciliationError, type RecordBlobRemoteId, type RegisterBlob, type ReleaseBlob, type RemoteContextContent, type ResolvedBlob, type ResolvedSession, type Result, type RetainBlob, type Role, type RoleSummary, type RoleTransitionBlock, type SHA256, Session, SessionManager, type SessionMetadata, type SessionSnapshot, type Settings, type Store, type Summarizer, type SummaryBlock, type SwitchSessionRole, type SyncWorkspace, type SystemActor, type SystemPromptAssembler, type TextBlock, type TextContextContent, type ThinkingBlock, type Timestamp, type ToolCall, type ToolCallCommand, type ToolRegistry, type ToolResultBlock, type ToolSummary, type ToolUseBlock, type Topic, type TopicIndex, type Turn, TurnBuilder, type TurnKey, type TurnNode, type TurnProcessor, type TurnRef, TurnTree, type URI, type UUID, type UpdateArtifact, type UpdateContext, type UpdatePreference, type UpdateRole, type UpdateSession, type UpdateTopic, type UpdateTurn, type Workspace, WorkspaceApi, type WorkspaceBundle, type WorkspaceContext, type WorkspaceDatabase, type WorkspaceError, type WorkspaceEvents, type WorkspaceExtension, WorkspaceManager, type WorkspaceMiddleware, type WorkspaceReducer, WorkspaceRegistry, type WorkspaceServices, bufferToBase64, computeSHA256, createDefaultAssembler, createEmptySession, createEmptyTurn, createEmptyWorkspace, createWorkspace, createWorkspaceDatabase, del, error, getExtension, merge, omitNullUndefined, sessionStateToMarkdown, shortHash, success };
|