@xnetjs/data 0.4.0 → 0.6.0

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.
@@ -379,6 +379,9 @@ var builtInSchemas = {
379
379
  "xnet://xnet.fyi/ExternalReference@1.0.0": () => import("./external-reference-7BSFF6SA.js").then((m) => m.ExternalReferenceSchema),
380
380
  "xnet://xnet.fyi/MediaAsset@1.0.0": () => import("./media-asset-QTCGLIZA.js").then((m) => m.MediaAssetSchema),
381
381
  "xnet://xnet.fyi/Transcription@1.0.0": () => import("./transcription-PSCLDAGX.js").then((m) => m.TranscriptionSchema),
382
+ // Meeting schema pack (exploration 0279)
383
+ "xnet://xnet.fyi/Meeting@1.0.0": () => import("./meeting-LMUYTZBF.js").then((m) => m.MeetingSchema),
384
+ "xnet://xnet.fyi/MeetingTranscript@1.0.0": () => import("./meeting-LMUYTZBF.js").then((m) => m.MeetingTranscriptSchema),
382
385
  "xnet://xnet.fyi/Canvas@1.0.0": () => import("./canvas-6WYBNH53.js").then((m) => m.CanvasSchema),
383
386
  "xnet://xnet.fyi/Map@1.0.0": () => import("./map-RG5Y3CPC.js").then((m) => m.MapSchema),
384
387
  "xnet://xnet.fyi/Comment@1.0.0": () => import("./comment-QSWYAQVS.js").then((m) => m.CommentSchema),
@@ -397,6 +400,7 @@ var builtInSchemas = {
397
400
  "xnet://xnet.fyi/RecoveryRecord@1.0.0": () => import("./account-ledger-R2GAFJL6.js").then((m) => m.RecoveryRecordSchema),
398
401
  "xnet://xnet.fyi/RevocationRecord@1.0.0": () => import("./account-ledger-R2GAFJL6.js").then((m) => m.RevocationRecordSchema),
399
402
  "xnet://xnet.fyi/SavedView@1.0.0": () => import("./saved-view-4R2DBCL3.js").then((m) => m.SavedViewSchema),
403
+ "xnet://xnet.fyi/Workspace@1.0.0": () => import("./workspace-WDKSQMOK.js").then((m) => m.WorkspaceSchema),
400
404
  "xnet://xnet.fyi/Dashboard@1.0.0": () => import("./dashboard-JMKTTRA7.js").then((m) => m.DashboardSchema),
401
405
  "xnet://xnet.fyi/UserWidget@1.0.0": () => import("./user-widget-RLY2N46A.js").then((m) => m.UserWidgetSchema),
402
406
  "xnet://xnet.fyi/SchemaDefinition@1.0.0": () => import("./system-ILHCZOVO.js").then((m) => m.SchemaDefinitionSchema),
@@ -463,6 +467,8 @@ var builtInSchemas = {
463
467
  "xnet://xnet.fyi/ExternalReference": () => import("./external-reference-7BSFF6SA.js").then((m) => m.ExternalReferenceSchema),
464
468
  "xnet://xnet.fyi/MediaAsset": () => import("./media-asset-QTCGLIZA.js").then((m) => m.MediaAssetSchema),
465
469
  "xnet://xnet.fyi/Transcription": () => import("./transcription-PSCLDAGX.js").then((m) => m.TranscriptionSchema),
470
+ "xnet://xnet.fyi/Meeting": () => import("./meeting-LMUYTZBF.js").then((m) => m.MeetingSchema),
471
+ "xnet://xnet.fyi/MeetingTranscript": () => import("./meeting-LMUYTZBF.js").then((m) => m.MeetingTranscriptSchema),
466
472
  "xnet://xnet.fyi/Canvas": () => import("./canvas-6WYBNH53.js").then((m) => m.CanvasSchema),
467
473
  "xnet://xnet.fyi/Map": () => import("./map-RG5Y3CPC.js").then((m) => m.MapSchema),
468
474
  "xnet://xnet.fyi/Comment": () => import("./comment-QSWYAQVS.js").then((m) => m.CommentSchema),
@@ -480,6 +486,7 @@ var builtInSchemas = {
480
486
  "xnet://xnet.fyi/RecoveryRecord": () => import("./account-ledger-R2GAFJL6.js").then((m) => m.RecoveryRecordSchema),
481
487
  "xnet://xnet.fyi/RevocationRecord": () => import("./account-ledger-R2GAFJL6.js").then((m) => m.RevocationRecordSchema),
482
488
  "xnet://xnet.fyi/SavedView": () => import("./saved-view-4R2DBCL3.js").then((m) => m.SavedViewSchema),
489
+ "xnet://xnet.fyi/Workspace": () => import("./workspace-WDKSQMOK.js").then((m) => m.WorkspaceSchema),
483
490
  "xnet://xnet.fyi/Dashboard": () => import("./dashboard-JMKTTRA7.js").then((m) => m.DashboardSchema),
484
491
  "xnet://xnet.fyi/UserWidget": () => import("./user-widget-RLY2N46A.js").then((m) => m.UserWidgetSchema),
485
492
  "xnet://xnet.fyi/SchemaDefinition": () => import("./system-ILHCZOVO.js").then((m) => m.SchemaDefinitionSchema),
@@ -0,0 +1,116 @@
1
+ import {
2
+ spaceCascadeAuthorization
3
+ } from "./chunk-OCMSAKWV.js";
4
+ import {
5
+ defineSchema,
6
+ file,
7
+ json,
8
+ number,
9
+ relation,
10
+ select,
11
+ text
12
+ } from "./chunk-EBNMV2VO.js";
13
+
14
+ // src/schema/schemas/meeting.ts
15
+ var MEETING_SCHEMA_IRI = "xnet://xnet.fyi/Meeting@1.0.0";
16
+ var MEETING_TRANSCRIPT_SCHEMA_IRI = "xnet://xnet.fyi/MeetingTranscript@1.0.0";
17
+ var MEETING_CHANNELS = ["me", "them"];
18
+ var MEETING_TEMPLATE_IDS = ["generic", "1on1", "standup", "sales", "interview"];
19
+ var MeetingSchema = defineSchema({
20
+ name: "Meeting",
21
+ namespace: "xnet://xnet.fyi/",
22
+ properties: {
23
+ /** Meeting title — from the calendar event when available. */
24
+ title: text({ required: true, maxLength: 500 }),
25
+ /** Wall-clock start, epoch ms. */
26
+ startedAt: number({ integer: true, min: 0 }),
27
+ /** Total captured duration in milliseconds. */
28
+ durationMs: number({ integer: true, min: 0 }),
29
+ /** Enhancement template shaping the AI notes, e.g. "1on1" | "standup". */
30
+ templateId: text({ maxLength: 120 }),
31
+ /** The sibling transcript node (one per meeting). */
32
+ transcript: relation({ target: MEETING_TRANSCRIPT_SCHEMA_IRI }),
33
+ /** Calendar event this meeting came from, when detected (phase 4). */
34
+ calendarEventId: text({ maxLength: 300 }),
35
+ /** Attendee display names from the calendar, for context + attribution. */
36
+ attendees: json({}),
37
+ /** Canonical home; empty = Unfiled (exploration 0169). */
38
+ folder: relation({ target: "xnet://xnet.fyi/Folder@1.0.0" }),
39
+ /** Workspace-wide labels, referenced by id (exploration 0169). */
40
+ tags: relation({ target: "xnet://xnet.fyi/Tag@1.0.0", multiple: true }),
41
+ /** Order among siblings — fractional index. */
42
+ sortKey: text({ maxLength: 500 }),
43
+ /** Canonical SECURITY home; empty = personal/private (exploration 0179). */
44
+ space: relation({ target: "xnet://xnet.fyi/Space@1.0.0" }),
45
+ /**
46
+ * Per-node visibility. Defaults to `private` — a meeting may contain
47
+ * anything, and must never leak to a public surface by accident (0279).
48
+ */
49
+ visibility: select({
50
+ options: [
51
+ { id: "inherit", name: "Inherit", color: "gray" },
52
+ { id: "private", name: "Private", color: "gray" },
53
+ { id: "unlisted", name: "Unlisted", color: "yellow" },
54
+ { id: "public", name: "Public", color: "green" }
55
+ ],
56
+ default: "private"
57
+ })
58
+ },
59
+ document: "yjs",
60
+ // notes body — user bullets + AI-enhanced output
61
+ // Owner-only by default; inherits access from its home Space when filed into
62
+ // one — same model as Transcription/Metric (explorations 0181/0192).
63
+ authorization: spaceCascadeAuthorization()
64
+ });
65
+ var MeetingTranscriptSchema = defineSchema({
66
+ name: "MeetingTranscript",
67
+ namespace: "xnet://xnet.fyi/",
68
+ properties: {
69
+ /** The meeting this transcript belongs to. */
70
+ meeting: relation({ target: MEETING_SCHEMA_IRI, required: true }),
71
+ /**
72
+ * Concatenated transcript text — FTS-indexed so meetings are searchable.
73
+ * Rebuilt from `segments` on each batched upsert.
74
+ */
75
+ fullText: text({}),
76
+ /** Timed, channel-attributed segments (me | them). */
77
+ segments: json({}),
78
+ /** Detected/used language (BCP-47-ish, e.g. "en"), when known. */
79
+ language: text({ maxLength: 16 }),
80
+ /** Which engine produced this, e.g. "parakeet-sherpa" | "whisper-cpp" | "byo". */
81
+ engineId: text({ maxLength: 120 }),
82
+ /** Which model produced this, e.g. "parakeet-tdt-0.6b-v2". */
83
+ modelId: text({ maxLength: 200 }),
84
+ /** Length of the transcribed audio in milliseconds. */
85
+ durationMs: number({ integer: true, min: 0 }),
86
+ /**
87
+ * Optional source audio, stored as a content-addressed blob reference.
88
+ * Off by default — retained only when the user opts into keeping audio
89
+ * (0279 privacy norm; the bytes live in BlobStore, never the change log).
90
+ */
91
+ audio: file({}),
92
+ /** Canonical SECURITY home; empty = personal/private (exploration 0179). */
93
+ space: relation({ target: "xnet://xnet.fyi/Space@1.0.0" }),
94
+ /** Per-node visibility. Defaults to `private`, like the meeting itself. */
95
+ visibility: select({
96
+ options: [
97
+ { id: "inherit", name: "Inherit", color: "gray" },
98
+ { id: "private", name: "Private", color: "gray" },
99
+ { id: "unlisted", name: "Unlisted", color: "yellow" },
100
+ { id: "public", name: "Public", color: "green" }
101
+ ],
102
+ default: "private"
103
+ })
104
+ },
105
+ document: void 0,
106
+ authorization: spaceCascadeAuthorization()
107
+ });
108
+
109
+ export {
110
+ MEETING_SCHEMA_IRI,
111
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
112
+ MEETING_CHANNELS,
113
+ MEETING_TEMPLATE_IDS,
114
+ MeetingSchema,
115
+ MeetingTranscriptSchema
116
+ };
@@ -0,0 +1,55 @@
1
+ import {
2
+ defineSchema,
3
+ json,
4
+ select,
5
+ text
6
+ } from "./chunk-EBNMV2VO.js";
7
+ import {
8
+ presets
9
+ } from "./chunk-RL64OJJ5.js";
10
+
11
+ // src/schema/schemas/workspace.ts
12
+ var WorkspaceSchema = defineSchema({
13
+ name: "Workspace",
14
+ namespace: "xnet://xnet.fyi/",
15
+ properties: {
16
+ /** Display name in the workspace switcher ("Monday triage") */
17
+ name: text({ required: true, maxLength: 200 }),
18
+ /** Short description for the switcher / marketplace listing */
19
+ description: text({ maxLength: 1e3 }),
20
+ /**
21
+ * Preset provenance, for "Workspace: Reset to preset". `none` =
22
+ * built from scratch.
23
+ */
24
+ preset: select({
25
+ options: [
26
+ { id: "none", name: "None", color: "gray" },
27
+ { id: "quiet", name: "Quiet", color: "gray" },
28
+ { id: "calm", name: "Calm", color: "blue" },
29
+ { id: "bench", name: "Bench", color: "green" }
30
+ ],
31
+ default: "none"
32
+ }),
33
+ /**
34
+ * Whether this is a read-only system preset (seeded) or a user save.
35
+ * System workspaces are re-seeded idempotently and never edited in
36
+ * place — "Save as…" forks them.
37
+ */
38
+ system: select({
39
+ options: [
40
+ { id: "user", name: "User", color: "gray" },
41
+ { id: "system", name: "System", color: "yellow" }
42
+ ],
43
+ default: "user"
44
+ }),
45
+ /** The portable layout tree — whole-value LWW */
46
+ tree: json({})
47
+ },
48
+ // Personal shell state: owner-only by default; the owner's grants are
49
+ // how a bench travels to a teammate (exploration 0280).
50
+ authorization: presets.private()
51
+ });
52
+
53
+ export {
54
+ WorkspaceSchema
55
+ };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export { a5 as ApplyNodeBatchInput, a6 as ApplyNodeBatchResult, b1 as AuthGrant, av as ConflictResult, ay as ContentKeyCache, ae as CountNodesOptions, H as CreateNodeOptions, C as CreateNodeStoreOptions, aX as DEFAULT_OFFLINE_POLICY, y as DID, D as DefinedSchema, ab as DeterministicNodeBatchWriteInput, m as DeterministicNodeImportDraft, aV as GRANT_SCHEMA_IRI, G as GetWithMigrationOptions, w as GrantIndex, b0 as GrantInput, aU as GrantRateLimiter, n as ImportDeterministicNodesOptions, o as ImportDeterministicNodesResult, a3 as ImportNodesOptions, I as InferCreateProps, Q as InferNode, K as InferProperties, J as InferPropertyType, W as LensOperation, Z as LensRegistry, L as ListNodesOptions, s as MergeConflict, M as MigratedNodeState, Y as MigrationError, az as MigrationInfo, X as MigrationResult, x as Node, aw as NodeBatchChangeEvent, u as NodeBatchChangeListener, a7 as NodeBatchIndexMode, a8 as NodeBatchNotificationMode, aa as NodeBatchPreflightResult, a9 as NodeBatchSyncMode, p as NodeBatchWriteInput, ac as NodeBatchWritePolicy, q as NodeBatchWriteResult, ad as NodeBatchWriteTimings, r as NodeChange, v as NodeChangeEvent, t as NodeChangeListener, ax as NodeContentCipher, i as NodeId, a0 as NodePayload, ar as NodeQueryCursor, aq as NodeQueryCursorOrderEntry, j as NodeQueryDescriptor, ao as NodeQueryMaterializedViewOptions, as as NodeQueryOptions, N as NodeQueryPageCountMode, ap as NodeQueryPageOptions, au as NodeQueryParityCheckMetadata, at as NodeQueryPlanMetadata, k as NodeQueryResult, am as NodeQuerySearchField, an as NodeQuerySearchFilter, al as NodeQuerySpatialFilter, af as NodeQuerySpatialPoint, ah as NodeQuerySpatialPointFields, ak as NodeQuerySpatialRadius, ag as NodeQuerySpatialRect, ai as NodeQuerySpatialRectFields, aj as NodeQuerySpatialWindow, h as NodeState, g as NodeStorageAdapter, f as NodeStoreOptions, O as OfflineAuthPolicy, P as PropertyBuilder, E as PropertyDefinition, $ as PropertyKey, a1 as PropertyTimestamp, B as PropertyType, a4 as RebuildNodeIndexesOptions, a as Schema, S as SchemaIRI, R as SchemaLens, aR as SchemaLookup, a2 as SetNodeOptions, c as SortDirection, aT as StoreAuth, e as StoreAuthAPI, b2 as StoreAuthError, b3 as StoreAuthErrorCode, a$ as StoreAuthKeyManager, aZ as StoreAuthOptions, a_ as StoreAuthStore, d as SystemOrderField, aO as TEMP_ID_PREFIX, aS as TempIdResolution, T as TransactionOperation, l as TransactionResult, U as UpdateNodeOptions, F as ValidationError, V as ValidationResult, aI as applyNodeQueryDescriptor, A as createNodeId, aA as createNodeQueryDescriptor, aQ as createSchemaLookup, aC as decodeNodeQueryCursor, aB as encodeNodeQueryCursor, aG as filterNodeQueryResults, aJ as getNodeQuerySearchTokens, aW as isGrantActive, z as isNode, aN as isTempId, _ as lensRegistry, aF as matchesNodeQueryDescriptor, aY as mergeOfflinePolicy, aK as nodeQueryDescriptorNeedsBoundedReload, aD as nodeQueryDescriptorToOptions, aP as resolveTempIds, aE as serializeNodeQueryDescriptor, aH as sortNodeQueryResults, aM as withoutNodeQueryMaterializedView, aL as withoutNodeQueryPagination } from './types-S-BJAKyK.js';
2
2
  import { FileRef } from './schema/index.js';
3
- export { ACCOUNT_RECORD_SCHEMA_IRI, ACCOUNT_SCHEMA_IRI, ACHIEVEMENT_SCHEMA_IRI, ACTIVITY_KINDS, ACTIVITY_SCHEMA_IRI, AbuseReport, AbuseReportSchema, Account, AccountClassId, AccountRecord, AccountRecordSchema, AccountSchema, Achievement, AchievementSchema, Activity, ActivityKind, ActivitySchema, AnchorData, AnchorType, Appeal, AppealSchema, BUDGET_SCHEMA_IRI, Budget, BudgetPeriod, BudgetSchema, BuiltInSchemaIRI, CHANNEL_KINDS, CONTACT_LIFECYCLE, CONTACT_SCHEMA_IRI, CRM_NAMESPACE, Canvas, CanvasObjectAnchor, CanvasObjectAnchorPlacement, CanvasPositionAnchor, CanvasSchema, CellAnchor, Channel, ChannelKind, ChannelNotifyTier, ChannelSchema, ChatMessage, ChatMessageSchema, CheckboxOptions, ColumnAnchor, Comment, CommentSchema, CommunityNote, CommunityNoteSchema, Contact, ContactLifecycle, ContactSchema, ContentProvenance, ContentProvenanceSchema, CoreSchemaResolver, CreatedByOptions, CreatedOptions, CrmVisibility, DEAL_CONTACT_ROLES, DEAL_CONTACT_ROLE_SCHEMA_IRI, DEAL_SCHEMA_IRI, DEAL_SOURCES, DEFAULT_CHANNEL_TIER, DEVICE_RECORD_SCHEMA_IRI, Dashboard, DashboardBreakpointId, DashboardLayoutItem, DashboardLayouts, DashboardSchema, DashboardTimeRange, DashboardVariablesState, DashboardWidgetInstance, DashboardWidgetRefresh, Database, DatabaseField, DatabaseFieldSchema, DatabaseRow, DatabaseRowSchema, DatabaseSchema, DatabaseSelectOption, DatabaseSelectOptionSchema, DatabaseView, DatabaseViewSchema, DateOptions, DateRange, DateRangeOptions, Deal, DealContactRole, DealContactRoleKind, DealContactRoleSchema, DealSchema, DealSource, DefineSchemaOptions, DeviceLike, DeviceRecord, DeviceRecordSchema, EXTENSION_FIELD_SCHEMA_IRI, EXTERNAL_ITEM_SCHEMA_IRI, EXTERNAL_ITEM_SOURCES, EXT_PREFIX, EffectiveExtensionField, EmailOptions, Experiment, ExperimentDesign, ExperimentPhase, ExperimentSchema, ExperimentStatus, ExtensionField, ExtensionFieldRecord, ExtensionFieldSchema, ExtensionRecord, ExternalItem, ExternalItemSchema, ExternalReference, ExternalReferenceSchema, FEED_ITEM_SCHEMA_IRI, FEED_SCHEMA_IRI, FOLDER_SCHEMA_IRI, FORECAST_CATEGORIES, Feed, FeedItem, FeedItemSchema, FeedSchema, FileOptions, Folder, FolderLike, FolderSchema, FolderTreeNode, ForecastCategory, GAME_ASSET_FORMATS, GAME_ASSET_MIME_TYPES, GAME_ASSET_SCHEMA_IRI, GAME_ECONOMY_ENTRY_SCHEMA_IRI, GAME_ITEM_SCHEMA_IRI, GAME_NAMESPACE, GAME_SCHEMA_IRIS, GameAsset, GameAssetFormat, GameAssetSchema, GameEconomyEntry, GameEconomyEntrySchema, GameItem, GameItemSchema, GameVisibility, GeoFeature, GeoFeatureCollection, GeoGeometry, GeoPosition, Grant, GrantSchema, IMPORT_BATCH_SCHEMA_IRI, INVENTORY_SCHEMA_IRI, ITEM_RARITIES, ImportBatch, ImportBatchSchema, ImportSource, InboxItemTriage, InboxState, InboxStateSchema, InboxWatermark, Inventory, InventorySchema, ItemRarity, JsonOptions, LINE_ITEM_SCHEMA_IRI, LedgerNodeIntent, LineItem, LineItemSchema, MATCH_RESULTS, MATCH_SESSION_SCHEMA_IRI, MAX_MENTION_DIDS, MAX_TAG_NAME_LENGTH, MEMORY_ITEM_SCHEMA_IRI, MEMORY_KINDS, MILESTONE_SCHEMA_IRI, Map, MapBasemapId, MapLayerGeometry, MapLayerSource, MapLayerSpec, MapLayerStyle, MapSchema, MapViewport, MatchResult, MatchSession, MatchSessionSchema, MediaAsset, MediaAssetSchema, MemoryItem, MemoryItemSchema, MemoryKind, Mention, MessageMentions, MessageRequest, MessageRequestSchema, Metric, MetricKind, MetricPolarity, MetricScheduleId, MetricSchema, Milestone, MilestoneSchema, ModerationLabel, ModerationLabelSchema, MoneyOptions, MoneyValue, MultiSelectOptions, NODE_VISIBILITY, NodeAnchor, NodeVisibility, NoteRating, NoteRatingSchema, NotificationPrefs, NumberOptions, ORGANIZATION_SCHEMA_IRI, ORGANIZATION_SIZES, Observation, ObservationPhase, ObservationSchema, Organization, OrganizationSchema, OrganizationSize, OrphanReason, OrphanResolvers, OrphanStatus, PIPELINE_SCHEMA_IRI, PLAYER_IDENTITY_SCHEMA_IRI, POSTING_SCHEMA_IRI, PRODUCT_KINDS, PRODUCT_SCHEMA_IRI, Page, PageSchema, ParsedSystemNamespaceResource, ParsedTaskShortId, PersonOptions, PhoneOptions, Pipeline, PipelineSchema, PlayerIdentity, PlayerIdentitySchema, PolicyList, PolicyListSchema, PolicySubscription, PolicySubscriptionSchema, Posting, PostingSchema, PresenceAggregator, PresenceAggregatorOptions, PresenceAggregatorStore, PresenceCountBucket, PresenceSummary, PresenceSummaryDescriptor, PresenceSummarySchema, PresenceVisibility, PresenceVisibilityResolver, Product, ProductKind, ProductSchema, Profile, ProfileSchema, Project, ProjectSchema, PublicInteractionPolicy, PublicInteractionPolicySchema, QualitySignal, QualitySignalSchema, RECOVERY_RECORD_SCHEMA_IRI, RELATIONSHIP_KINDS, RELATIONSHIP_SCHEMA_IRI, REVOCATION_RECORD_SCHEMA_IRI, Reaction, ReactionSchema, RecoveryRecord, RecoveryRecordSchema, RelationOptions, Relationship, RelationshipKind, RelationshipSchema, ReviewTask, ReviewTaskSchema, RevocationLike, RevocationRecord, RevocationRecordSchema, RowAnchor, SCHEMA_EXTENSION_SCHEMA_IRI, SIDECAR_PREFIX, SPACE_KINDS, SPACE_MEMBERSHIP_SCHEMA_IRI, SPACE_ROLES, SPACE_SCHEMA_IRI, SPACE_VISIBILITY, STAGE_SCHEMA_IRI, SYSTEM_NAMESPACE_KINDS, SYSTEM_SCHEMA_BASE_IRIS, SYSTEM_SCHEMA_IRIS, SavedView, SavedViewSchema, SchemaAuthorityResolution, SchemaAuthorityResolutionKind, SchemaAuthorityResolutionOptions, SchemaCompatibility, SchemaCompatibilityMode, SchemaCompatibilitySchema, SchemaDefinition, SchemaDefinitionSchema, SchemaDefinitionSigningInput, SchemaDefinitionStatus, SchemaExtension, SchemaExtensionSchema, SelectOption, SelectOptions, SidecarOverlay, Space, SpaceKind, SpaceLike, SpaceMembership, SpaceMembershipSchema, SpaceRole, SpaceSchema, SpaceTreeNode, SpaceVisibility, Stage, StageSchema, SyncPolicy, SyncPolicySchema, SyncPolicyStatus, SystemFederationErrorCode, SystemNamespaceKind, SystemSchemaDefinitionRecord, SystemSchemaIndex, SystemSchemaIndexDiagnostic, SystemSchemaIndexOptions, SystemSchemaIndexStore, TAG_SCHEMA_IRI, TASK_SHORT_ID_PATTERN, TASK_STATUS_CATEGORIES, TRANSACTION_SCHEMA_IRI, TRANSCRIPTION_SCHEMA_IRI, Tag, TagSchema, Task, TaskSchema, TaskShortIdBlock, TaskStatusCategory, TaskStatusId, TaskView, TaskViewSchema, TextAnchor, TextOptions, Transaction, TransactionSchema, TransactionStatus, Transcription, TranscriptionSchema, TranscriptionSourceId, UpdatedOptions, UrlOptions, UserWidget, UserWidgetConfigField, UserWidgetSchema, UserWidgetSize, ValidateSchemaDefinitionNodeOptions, accountRecordId, accountState, addDefault, admitDeviceRecord, bucketPresenceCount, buildEffectiveSchema, buildFolderTree, buildSpaceTree, buildSystemNamespace, buildSystemNodeId, builtInSchemas, canManageSpace, canModifyColumn, checkOrphanStatus, checkbox, compareSpaceRoles, composeLens, computeSchemaDefinitionContentHash, convert, copy, createAccountRecord, createNodeGraphSchemaResolver, createOperations, createSchemaDefinitionSigningPayload, created, createdBy, crmSchemas, date, dateRange, decodeAnchor, defineSchema, deviceRecipientExpander, deviceRecordId, effectiveSpaceRole, email, encodeAnchor, extKey, extractMentions, file, filterOrphanedComments, findLockedColumns, flattenFolderTree, flattenSpaceTree, folderAncestorIds, folderPathIds, formatTaskShortId, gameSchemas, getMentionedUsers, getPresenceNoisePolicy, getTaskStatusCategory, identity, inboxStateNodeId, isCanvasObjectAnchor, isCanvasPositionAnchor, isCellAnchor, isColumnAnchor, isCompletedTaskStatus, isDeviceAuthorized, isExtKey, isMoneyValue, isNodeAnchor, isRowAnchor, isSchemaDefinitionNode, isSpaceRole, isSystemNamespaceResource, isSystemSchemaIri, isTextAnchor, isValidMentions, isValidTagName, json, loadExtensionFields, lockedPropertyKeys, mentionsInclude, merge, mergeSidecarsIntoRow, money, multiSelect, nextEpoch, normalizeMentions, normalizeTagName, number, parseExtKey, parseSystemNamespaceResource, parseTaskShortId, person, phone, promoteOverlay, recoveryRecordId, relation, remove, rename, resolveActiveDevices, resolveEffectiveSchema, resolveSchemaAuthority, revocationRecordId, revokeDeviceRecord, revokeSubjectRecord, revokedSubjects, schemaExtensionId, select, selectExtensionFields, shortIdsFromBlock, sidecarId, sidecarOverlayKeys, spaceAncestorIds, spaceMembershipId, spacePathIds, spaceRoleGrantActions, spaceRoleToShareRole, summarizePresenceNodes, taskBranchName, text, transform, updated, url, validateSchemaDefinitionNode, when, wouldCreateFolderCycle, wouldCreateSpaceCycle } from './schema/index.js';
3
+ export { ACCOUNT_RECORD_SCHEMA_IRI, ACCOUNT_SCHEMA_IRI, ACHIEVEMENT_SCHEMA_IRI, ACTIVITY_KINDS, ACTIVITY_SCHEMA_IRI, AbuseReport, AbuseReportSchema, Account, AccountClassId, AccountRecord, AccountRecordSchema, AccountSchema, Achievement, AchievementSchema, Activity, ActivityKind, ActivitySchema, AnchorData, AnchorType, Appeal, AppealSchema, BUDGET_SCHEMA_IRI, Budget, BudgetPeriod, BudgetSchema, BuiltInSchemaIRI, CHANNEL_KINDS, CONTACT_LIFECYCLE, CONTACT_SCHEMA_IRI, CRM_NAMESPACE, Canvas, CanvasObjectAnchor, CanvasObjectAnchorPlacement, CanvasPositionAnchor, CanvasSchema, CellAnchor, Channel, ChannelKind, ChannelNotifyTier, ChannelSchema, ChatMessage, ChatMessageSchema, CheckboxOptions, ColumnAnchor, Comment, CommentSchema, CommunityNote, CommunityNoteSchema, Contact, ContactLifecycle, ContactSchema, ContentProvenance, ContentProvenanceSchema, CoreSchemaResolver, CreatedByOptions, CreatedOptions, CrmVisibility, DEAL_CONTACT_ROLES, DEAL_CONTACT_ROLE_SCHEMA_IRI, DEAL_SCHEMA_IRI, DEAL_SOURCES, DEFAULT_CHANNEL_TIER, DEVICE_RECORD_SCHEMA_IRI, Dashboard, DashboardBreakpointId, DashboardLayoutItem, DashboardLayouts, DashboardSchema, DashboardTimeRange, DashboardVariablesState, DashboardWidgetInstance, DashboardWidgetRefresh, Database, DatabaseField, DatabaseFieldSchema, DatabaseRow, DatabaseRowSchema, DatabaseSchema, DatabaseSelectOption, DatabaseSelectOptionSchema, DatabaseView, DatabaseViewSchema, DateOptions, DateRange, DateRangeOptions, Deal, DealContactRole, DealContactRoleKind, DealContactRoleSchema, DealSchema, DealSource, DefineSchemaOptions, DeviceLike, DeviceRecord, DeviceRecordSchema, EXTENSION_FIELD_SCHEMA_IRI, EXTERNAL_ITEM_SCHEMA_IRI, EXTERNAL_ITEM_SOURCES, EXT_PREFIX, EffectiveExtensionField, EmailOptions, Experiment, ExperimentDesign, ExperimentPhase, ExperimentSchema, ExperimentStatus, ExtensionField, ExtensionFieldRecord, ExtensionFieldSchema, ExtensionRecord, ExternalItem, ExternalItemSchema, ExternalReference, ExternalReferenceSchema, FEED_ITEM_SCHEMA_IRI, FEED_SCHEMA_IRI, FOLDER_SCHEMA_IRI, FORECAST_CATEGORIES, Feed, FeedItem, FeedItemSchema, FeedSchema, FileOptions, Folder, FolderLike, FolderSchema, FolderTreeNode, ForecastCategory, GAME_ASSET_FORMATS, GAME_ASSET_MIME_TYPES, GAME_ASSET_SCHEMA_IRI, GAME_ECONOMY_ENTRY_SCHEMA_IRI, GAME_ITEM_SCHEMA_IRI, GAME_NAMESPACE, GAME_SCHEMA_IRIS, GameAsset, GameAssetFormat, GameAssetSchema, GameEconomyEntry, GameEconomyEntrySchema, GameItem, GameItemSchema, GameVisibility, GeoFeature, GeoFeatureCollection, GeoGeometry, GeoPosition, Grant, GrantSchema, IMPORT_BATCH_SCHEMA_IRI, INVENTORY_SCHEMA_IRI, ITEM_RARITIES, ImportBatch, ImportBatchSchema, ImportSource, InboxItemTriage, InboxState, InboxStateSchema, InboxWatermark, Inventory, InventorySchema, ItemRarity, JsonOptions, LINE_ITEM_SCHEMA_IRI, LedgerNodeIntent, LineItem, LineItemSchema, MATCH_RESULTS, MATCH_SESSION_SCHEMA_IRI, MAX_MENTION_DIDS, MAX_TAG_NAME_LENGTH, MEETING_CHANNELS, MEETING_SCHEMA_IRI, MEETING_TEMPLATE_IDS, MEETING_TRANSCRIPT_SCHEMA_IRI, MEMORY_ITEM_SCHEMA_IRI, MEMORY_KINDS, MILESTONE_SCHEMA_IRI, Map, MapBasemapId, MapLayerGeometry, MapLayerSource, MapLayerSpec, MapLayerStyle, MapSchema, MapViewport, MatchResult, MatchSession, MatchSessionSchema, MediaAsset, MediaAssetSchema, Meeting, MeetingChannel, MeetingSchema, MeetingSegment, MeetingTemplateId, MeetingTranscript, MeetingTranscriptSchema, MemoryItem, MemoryItemSchema, MemoryKind, Mention, MessageMentions, MessageRequest, MessageRequestSchema, Metric, MetricKind, MetricPolarity, MetricScheduleId, MetricSchema, Milestone, MilestoneSchema, ModerationLabel, ModerationLabelSchema, MoneyOptions, MoneyValue, MultiSelectOptions, NODE_VISIBILITY, NodeAnchor, NodeVisibility, NoteRating, NoteRatingSchema, NotificationPrefs, NumberOptions, ORGANIZATION_SCHEMA_IRI, ORGANIZATION_SIZES, Observation, ObservationPhase, ObservationSchema, Organization, OrganizationSchema, OrganizationSize, OrphanReason, OrphanResolvers, OrphanStatus, PIPELINE_SCHEMA_IRI, PLAYER_IDENTITY_SCHEMA_IRI, POSTING_SCHEMA_IRI, PRODUCT_KINDS, PRODUCT_SCHEMA_IRI, Page, PageSchema, ParsedSystemNamespaceResource, ParsedTaskShortId, PersonOptions, PhoneOptions, Pipeline, PipelineSchema, PlayerIdentity, PlayerIdentitySchema, PolicyList, PolicyListSchema, PolicySubscription, PolicySubscriptionSchema, Posting, PostingSchema, PresenceAggregator, PresenceAggregatorOptions, PresenceAggregatorStore, PresenceCountBucket, PresenceSummary, PresenceSummaryDescriptor, PresenceSummarySchema, PresenceVisibility, PresenceVisibilityResolver, Product, ProductKind, ProductSchema, Profile, ProfileSchema, Project, ProjectSchema, PublicInteractionPolicy, PublicInteractionPolicySchema, QualitySignal, QualitySignalSchema, RECOVERY_RECORD_SCHEMA_IRI, RELATIONSHIP_KINDS, RELATIONSHIP_SCHEMA_IRI, REVOCATION_RECORD_SCHEMA_IRI, Reaction, ReactionSchema, RecoveryRecord, RecoveryRecordSchema, RelationOptions, Relationship, RelationshipKind, RelationshipSchema, ReviewTask, ReviewTaskSchema, RevocationLike, RevocationRecord, RevocationRecordSchema, RowAnchor, SCHEMA_EXTENSION_SCHEMA_IRI, SIDECAR_PREFIX, SPACE_KINDS, SPACE_MEMBERSHIP_SCHEMA_IRI, SPACE_ROLES, SPACE_SCHEMA_IRI, SPACE_VISIBILITY, STAGE_SCHEMA_IRI, SYSTEM_NAMESPACE_KINDS, SYSTEM_SCHEMA_BASE_IRIS, SYSTEM_SCHEMA_IRIS, SavedView, SavedViewSchema, SchemaAuthorityResolution, SchemaAuthorityResolutionKind, SchemaAuthorityResolutionOptions, SchemaCompatibility, SchemaCompatibilityMode, SchemaCompatibilitySchema, SchemaDefinition, SchemaDefinitionSchema, SchemaDefinitionSigningInput, SchemaDefinitionStatus, SchemaExtension, SchemaExtensionSchema, SelectOption, SelectOptions, SidecarOverlay, Space, SpaceKind, SpaceLike, SpaceMembership, SpaceMembershipSchema, SpaceRole, SpaceSchema, SpaceTreeNode, SpaceVisibility, Stage, StageSchema, SyncPolicy, SyncPolicySchema, SyncPolicyStatus, SystemFederationErrorCode, SystemNamespaceKind, SystemSchemaDefinitionRecord, SystemSchemaIndex, SystemSchemaIndexDiagnostic, SystemSchemaIndexOptions, SystemSchemaIndexStore, TAG_SCHEMA_IRI, TASK_SHORT_ID_PATTERN, TASK_STATUS_CATEGORIES, TRANSACTION_SCHEMA_IRI, TRANSCRIPTION_SCHEMA_IRI, Tag, TagSchema, Task, TaskSchema, TaskShortIdBlock, TaskStatusCategory, TaskStatusId, TaskView, TaskViewSchema, TextAnchor, TextOptions, Transaction, TransactionSchema, TransactionStatus, Transcription, TranscriptionSchema, TranscriptionSourceId, UpdatedOptions, UrlOptions, UserWidget, UserWidgetConfigField, UserWidgetSchema, UserWidgetSize, ValidateSchemaDefinitionNodeOptions, Workspace, WorkspaceSchema, WorkspaceTreeJson, accountRecordId, accountState, addDefault, admitDeviceRecord, bucketPresenceCount, buildEffectiveSchema, buildFolderTree, buildSpaceTree, buildSystemNamespace, buildSystemNodeId, builtInSchemas, canManageSpace, canModifyColumn, checkOrphanStatus, checkbox, compareSpaceRoles, composeLens, computeSchemaDefinitionContentHash, convert, copy, createAccountRecord, createNodeGraphSchemaResolver, createOperations, createSchemaDefinitionSigningPayload, created, createdBy, crmSchemas, date, dateRange, decodeAnchor, defineSchema, deviceRecipientExpander, deviceRecordId, effectiveSpaceRole, email, encodeAnchor, extKey, extractMentions, file, filterOrphanedComments, findLockedColumns, flattenFolderTree, flattenSpaceTree, folderAncestorIds, folderPathIds, formatTaskShortId, gameSchemas, getMentionedUsers, getPresenceNoisePolicy, getTaskStatusCategory, identity, inboxStateNodeId, isCanvasObjectAnchor, isCanvasPositionAnchor, isCellAnchor, isColumnAnchor, isCompletedTaskStatus, isDeviceAuthorized, isExtKey, isMoneyValue, isNodeAnchor, isRowAnchor, isSchemaDefinitionNode, isSpaceRole, isSystemNamespaceResource, isSystemSchemaIri, isTextAnchor, isValidMentions, isValidTagName, json, loadExtensionFields, lockedPropertyKeys, mentionsInclude, merge, mergeSidecarsIntoRow, money, multiSelect, nextEpoch, normalizeMentions, normalizeTagName, number, parseExtKey, parseSystemNamespaceResource, parseTaskShortId, person, phone, promoteOverlay, recoveryRecordId, relation, remove, rename, resolveActiveDevices, resolveEffectiveSchema, resolveSchemaAuthority, revocationRecordId, revokeDeviceRecord, revokeSubjectRecord, revokedSubjects, schemaExtensionId, select, selectExtensionFields, shortIdsFromBlock, sidecarId, sidecarOverlayKeys, spaceAncestorIds, spaceMembershipId, spacePathIds, spaceRoleGrantActions, spaceRoleToShareRole, summarizePresenceNodes, taskBranchName, text, transform, updated, url, validateSchemaDefinitionNode, when, wouldCreateFolderCycle, wouldCreateSpaceCycle } from './schema/index.js';
4
4
  export { S as SchemaRegistry, s as schemaRegistry } from './registry-DunPv__d.js';
5
5
  export { SignUpdateOptions, applySignedUpdate, captureUpdate, getMissingUpdates, mergeDocuments, signUpdate, verifyUpdate } from './updates.js';
6
6
  import * as Y from 'yjs';
package/dist/index.js CHANGED
@@ -287,7 +287,13 @@ import {
287
287
  taskBranchName,
288
288
  transform,
289
289
  when
290
- } from "./chunk-YAUS3Q2Q.js";
290
+ } from "./chunk-HAV2DS2C.js";
291
+ import {
292
+ SavedViewSchema
293
+ } from "./chunk-ZZ6TWKGS.js";
294
+ import {
295
+ WorkspaceSchema
296
+ } from "./chunk-PH3PVAR6.js";
291
297
  import {
292
298
  UserWidgetSchema
293
299
  } from "./chunk-53F4PRNC.js";
@@ -336,6 +342,10 @@ import {
336
342
  MEMORY_KINDS,
337
343
  MemoryItemSchema
338
344
  } from "./chunk-GU6THOAB.js";
345
+ import {
346
+ CHANNEL_KINDS,
347
+ ChannelSchema
348
+ } from "./chunk-ZCOFZY5M.js";
339
349
  import {
340
350
  ChatMessageSchema
341
351
  } from "./chunk-Q3IEGH4B.js";
@@ -378,9 +388,6 @@ import {
378
388
  revocationRecordId,
379
389
  revokedSubjects
380
390
  } from "./chunk-KQUALW4O.js";
381
- import {
382
- SavedViewSchema
383
- } from "./chunk-ZZ6TWKGS.js";
384
391
  import {
385
392
  MediaAssetSchema
386
393
  } from "./chunk-3J3HILXO.js";
@@ -388,6 +395,14 @@ import {
388
395
  TRANSCRIPTION_SCHEMA_IRI,
389
396
  TranscriptionSchema
390
397
  } from "./chunk-2ZNJWIQG.js";
398
+ import {
399
+ MEETING_CHANNELS,
400
+ MEETING_SCHEMA_IRI,
401
+ MEETING_TEMPLATE_IDS,
402
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
403
+ MeetingSchema,
404
+ MeetingTranscriptSchema
405
+ } from "./chunk-L7NRPLE5.js";
391
406
  import {
392
407
  CanvasSchema
393
408
  } from "./chunk-LYSWLCOI.js";
@@ -403,10 +418,6 @@ import {
403
418
  import {
404
419
  ProfileSchema
405
420
  } from "./chunk-DCTRX6II.js";
406
- import {
407
- CHANNEL_KINDS,
408
- ChannelSchema
409
- } from "./chunk-ZCOFZY5M.js";
410
421
  import {
411
422
  ACTIVITY_KINDS,
412
423
  ACTIVITY_SCHEMA_IRI,
@@ -2094,12 +2105,18 @@ export {
2094
2105
  MAX_MENTION_DIDS,
2095
2106
  MAX_TAG_NAME_LENGTH,
2096
2107
  MAX_VERSION_HISTORY,
2108
+ MEETING_CHANNELS,
2109
+ MEETING_SCHEMA_IRI,
2110
+ MEETING_TEMPLATE_IDS,
2111
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
2097
2112
  MEMORY_ITEM_SCHEMA_IRI,
2098
2113
  MEMORY_KINDS,
2099
2114
  MILESTONE_SCHEMA_IRI,
2100
2115
  MapSchema,
2101
2116
  MatchSessionSchema,
2102
2117
  MediaAssetSchema,
2118
+ MeetingSchema,
2119
+ MeetingTranscriptSchema,
2103
2120
  MemoryItemSchema,
2104
2121
  MemoryNodeStorageAdapter,
2105
2122
  MessageRequestSchema,
@@ -2187,6 +2204,7 @@ export {
2187
2204
  TransactionSchema,
2188
2205
  TranscriptionSchema,
2189
2206
  UserWidgetSchema,
2207
+ WorkspaceSchema,
2190
2208
  Array2 as YArray,
2191
2209
  Doc as YDoc,
2192
2210
  Map3 as YMap,
@@ -0,0 +1,20 @@
1
+ import {
2
+ MEETING_CHANNELS,
3
+ MEETING_SCHEMA_IRI,
4
+ MEETING_TEMPLATE_IDS,
5
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
6
+ MeetingSchema,
7
+ MeetingTranscriptSchema
8
+ } from "./chunk-L7NRPLE5.js";
9
+ import "./chunk-OCMSAKWV.js";
10
+ import "./chunk-T5AZAOG5.js";
11
+ import "./chunk-EBNMV2VO.js";
12
+ import "./chunk-RL64OJJ5.js";
13
+ export {
14
+ MEETING_CHANNELS,
15
+ MEETING_SCHEMA_IRI,
16
+ MEETING_TEMPLATE_IDS,
17
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
18
+ MeetingSchema,
19
+ MeetingTranscriptSchema
20
+ };
@@ -760,6 +760,44 @@ declare const DashboardSchema: DefinedSchema<{
760
760
  */
761
761
  type Dashboard = InferNode<(typeof DashboardSchema)['_properties']>;
762
762
 
763
+ /**
764
+ * Structural mirror of the app's LayoutTree (source of truth:
765
+ * apps/web/src/workbench/layout-tree.ts). Kept loose on purpose — the
766
+ * data layer stores, the app validates.
767
+ */
768
+ interface WorkspaceTreeJson {
769
+ workspaceId: string;
770
+ regions: Record<string, Array<{
771
+ viewId: string;
772
+ tier: string;
773
+ order: number;
774
+ }>>;
775
+ surface: {
776
+ tabsEnabled: boolean;
777
+ };
778
+ chrome: string;
779
+ }
780
+ declare const WorkspaceSchema: DefinedSchema<{
781
+ /** Display name in the workspace switcher ("Monday triage") */
782
+ name: PropertyBuilder<string>;
783
+ /** Short description for the switcher / marketplace listing */
784
+ description: PropertyBuilder<string>;
785
+ /**
786
+ * Preset provenance, for "Workspace: Reset to preset". `none` =
787
+ * built from scratch.
788
+ */
789
+ preset: PropertyBuilder<"none" | "quiet" | "calm" | "bench">;
790
+ /**
791
+ * Whether this is a read-only system preset (seeded) or a user save.
792
+ * System workspaces are re-seeded idempotently and never edited in
793
+ * place — "Save as…" forks them.
794
+ */
795
+ system: PropertyBuilder<"user" | "system">;
796
+ /** The portable layout tree — whole-value LWW */
797
+ tree: PropertyBuilder<WorkspaceTreeJson>;
798
+ }>;
799
+ type Workspace = InferNode<(typeof WorkspaceSchema)['_properties']>;
800
+
763
801
  /** Last-read position for one channel/source. */
764
802
  interface InboxWatermark {
765
803
  /** Wall-clock createdAt of the newest read message */
@@ -965,6 +1003,97 @@ declare const MapSchema: DefinedSchema<{
965
1003
  */
966
1004
  type Map$1 = InferNode<(typeof MapSchema)['_properties']>;
967
1005
 
1006
+ declare const MEETING_SCHEMA_IRI: "xnet://xnet.fyi/Meeting@1.0.0";
1007
+ declare const MEETING_TRANSCRIPT_SCHEMA_IRI: "xnet://xnet.fyi/MeetingTranscript@1.0.0";
1008
+ /**
1009
+ * Speaker attribution channel (the Granola trick): the microphone stream is
1010
+ * `me`, the system-audio stream is `them`. Everyone on the far end collapses
1011
+ * into `them` until a diarization upgrade splits that channel.
1012
+ */
1013
+ declare const MEETING_CHANNELS: readonly ["me", "them"];
1014
+ type MeetingChannel = (typeof MEETING_CHANNELS)[number];
1015
+ /** One timed, channel-attributed slice of a meeting transcript. */
1016
+ interface MeetingSegment {
1017
+ /** Which capture channel produced this slice. */
1018
+ channel: MeetingChannel;
1019
+ /** Transcribed text for the slice. */
1020
+ text: string;
1021
+ /** Start offset from meeting start, in milliseconds. */
1022
+ startMs: number;
1023
+ /** End offset from meeting start, in milliseconds. */
1024
+ endMs: number;
1025
+ /**
1026
+ * Optional speaker label once diarization/calendar attribution upgrades
1027
+ * `them` into named speakers (phase 4). Absent = channel label only.
1028
+ */
1029
+ speaker?: string;
1030
+ }
1031
+ /** Built-in enhancement template ids (phase 2); free-form ids are allowed. */
1032
+ declare const MEETING_TEMPLATE_IDS: readonly ["generic", "1on1", "standup", "sales", "interview"];
1033
+ type MeetingTemplateId = (typeof MEETING_TEMPLATE_IDS)[number];
1034
+ declare const MeetingSchema: DefinedSchema<{
1035
+ /** Meeting title — from the calendar event when available. */
1036
+ title: PropertyBuilder<string>;
1037
+ /** Wall-clock start, epoch ms. */
1038
+ startedAt: PropertyBuilder<number>;
1039
+ /** Total captured duration in milliseconds. */
1040
+ durationMs: PropertyBuilder<number>;
1041
+ /** Enhancement template shaping the AI notes, e.g. "1on1" | "standup". */
1042
+ templateId: PropertyBuilder<string>;
1043
+ /** The sibling transcript node (one per meeting). */
1044
+ transcript: PropertyBuilder<string>;
1045
+ /** Calendar event this meeting came from, when detected (phase 4). */
1046
+ calendarEventId: PropertyBuilder<string>;
1047
+ /** Attendee display names from the calendar, for context + attribution. */
1048
+ attendees: PropertyBuilder<string[]>;
1049
+ /** Canonical home; empty = Unfiled (exploration 0169). */
1050
+ folder: PropertyBuilder<string>;
1051
+ /** Workspace-wide labels, referenced by id (exploration 0169). */
1052
+ tags: PropertyBuilder<string[]>;
1053
+ /** Order among siblings — fractional index. */
1054
+ sortKey: PropertyBuilder<string>;
1055
+ /** Canonical SECURITY home; empty = personal/private (exploration 0179). */
1056
+ space: PropertyBuilder<string>;
1057
+ /**
1058
+ * Per-node visibility. Defaults to `private` — a meeting may contain
1059
+ * anything, and must never leak to a public surface by accident (0279).
1060
+ */
1061
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
1062
+ }>;
1063
+ declare const MeetingTranscriptSchema: DefinedSchema<{
1064
+ /** The meeting this transcript belongs to. */
1065
+ meeting: PropertyBuilder<string>;
1066
+ /**
1067
+ * Concatenated transcript text — FTS-indexed so meetings are searchable.
1068
+ * Rebuilt from `segments` on each batched upsert.
1069
+ */
1070
+ fullText: PropertyBuilder<string>;
1071
+ /** Timed, channel-attributed segments (me | them). */
1072
+ segments: PropertyBuilder<MeetingSegment[]>;
1073
+ /** Detected/used language (BCP-47-ish, e.g. "en"), when known. */
1074
+ language: PropertyBuilder<string>;
1075
+ /** Which engine produced this, e.g. "parakeet-sherpa" | "whisper-cpp" | "byo". */
1076
+ engineId: PropertyBuilder<string>;
1077
+ /** Which model produced this, e.g. "parakeet-tdt-0.6b-v2". */
1078
+ modelId: PropertyBuilder<string>;
1079
+ /** Length of the transcribed audio in milliseconds. */
1080
+ durationMs: PropertyBuilder<number>;
1081
+ /**
1082
+ * Optional source audio, stored as a content-addressed blob reference.
1083
+ * Off by default — retained only when the user opts into keeping audio
1084
+ * (0279 privacy norm; the bytes live in BlobStore, never the change log).
1085
+ */
1086
+ audio: PropertyBuilder<FileRef>;
1087
+ /** Canonical SECURITY home; empty = personal/private (exploration 0179). */
1088
+ space: PropertyBuilder<string>;
1089
+ /** Per-node visibility. Defaults to `private`, like the meeting itself. */
1090
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
1091
+ }>;
1092
+ /** A Meeting node type (inferred from schema). */
1093
+ type Meeting = InferNode<(typeof MeetingSchema)['_properties']>;
1094
+ /** A MeetingTranscript node type (inferred from schema). */
1095
+ type MeetingTranscript = InferNode<(typeof MeetingTranscriptSchema)['_properties']>;
1096
+
968
1097
  declare const PageSchema: DefinedSchema<{
969
1098
  /** Page title */
970
1099
  title: PropertyBuilder<string>;
@@ -4412,6 +4541,32 @@ declare const builtInSchemas: {
4412
4541
  space: PropertyBuilder<string>;
4413
4542
  visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
4414
4543
  }>>;
4544
+ readonly 'xnet://xnet.fyi/Meeting@1.0.0': () => Promise<DefinedSchema<{
4545
+ title: PropertyBuilder<string>;
4546
+ startedAt: PropertyBuilder<number>;
4547
+ durationMs: PropertyBuilder<number>;
4548
+ templateId: PropertyBuilder<string>;
4549
+ transcript: PropertyBuilder<string>;
4550
+ calendarEventId: PropertyBuilder<string>;
4551
+ attendees: PropertyBuilder<string[]>;
4552
+ folder: PropertyBuilder<string>;
4553
+ tags: PropertyBuilder<string[]>;
4554
+ sortKey: PropertyBuilder<string>;
4555
+ space: PropertyBuilder<string>;
4556
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
4557
+ }>>;
4558
+ readonly 'xnet://xnet.fyi/MeetingTranscript@1.0.0': () => Promise<DefinedSchema<{
4559
+ meeting: PropertyBuilder<string>;
4560
+ fullText: PropertyBuilder<string>;
4561
+ segments: PropertyBuilder<MeetingSegment[]>;
4562
+ language: PropertyBuilder<string>;
4563
+ engineId: PropertyBuilder<string>;
4564
+ modelId: PropertyBuilder<string>;
4565
+ durationMs: PropertyBuilder<number>;
4566
+ audio: PropertyBuilder<FileRef>;
4567
+ space: PropertyBuilder<string>;
4568
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
4569
+ }>>;
4415
4570
  readonly 'xnet://xnet.fyi/Canvas@1.0.0': () => Promise<DefinedSchema<{
4416
4571
  title: PropertyBuilder<string>;
4417
4572
  icon: PropertyBuilder<string>;
@@ -4613,6 +4768,13 @@ declare const builtInSchemas: {
4613
4768
  scope: PropertyBuilder<"user" | "workspace" | "database">;
4614
4769
  database: PropertyBuilder<string>;
4615
4770
  }>>;
4771
+ readonly 'xnet://xnet.fyi/Workspace@1.0.0': () => Promise<DefinedSchema<{
4772
+ name: PropertyBuilder<string>;
4773
+ description: PropertyBuilder<string>;
4774
+ preset: PropertyBuilder<"none" | "quiet" | "calm" | "bench">;
4775
+ system: PropertyBuilder<"user" | "system">;
4776
+ tree: PropertyBuilder<WorkspaceTreeJson>;
4777
+ }>>;
4616
4778
  readonly 'xnet://xnet.fyi/Dashboard@1.0.0': () => Promise<DefinedSchema<{
4617
4779
  title: PropertyBuilder<string>;
4618
4780
  icon: PropertyBuilder<string>;
@@ -5445,6 +5607,32 @@ declare const builtInSchemas: {
5445
5607
  space: PropertyBuilder<string>;
5446
5608
  visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
5447
5609
  }>>;
5610
+ readonly 'xnet://xnet.fyi/Meeting': () => Promise<DefinedSchema<{
5611
+ title: PropertyBuilder<string>;
5612
+ startedAt: PropertyBuilder<number>;
5613
+ durationMs: PropertyBuilder<number>;
5614
+ templateId: PropertyBuilder<string>;
5615
+ transcript: PropertyBuilder<string>;
5616
+ calendarEventId: PropertyBuilder<string>;
5617
+ attendees: PropertyBuilder<string[]>;
5618
+ folder: PropertyBuilder<string>;
5619
+ tags: PropertyBuilder<string[]>;
5620
+ sortKey: PropertyBuilder<string>;
5621
+ space: PropertyBuilder<string>;
5622
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
5623
+ }>>;
5624
+ readonly 'xnet://xnet.fyi/MeetingTranscript': () => Promise<DefinedSchema<{
5625
+ meeting: PropertyBuilder<string>;
5626
+ fullText: PropertyBuilder<string>;
5627
+ segments: PropertyBuilder<MeetingSegment[]>;
5628
+ language: PropertyBuilder<string>;
5629
+ engineId: PropertyBuilder<string>;
5630
+ modelId: PropertyBuilder<string>;
5631
+ durationMs: PropertyBuilder<number>;
5632
+ audio: PropertyBuilder<FileRef>;
5633
+ space: PropertyBuilder<string>;
5634
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
5635
+ }>>;
5448
5636
  readonly 'xnet://xnet.fyi/Canvas': () => Promise<DefinedSchema<{
5449
5637
  title: PropertyBuilder<string>;
5450
5638
  icon: PropertyBuilder<string>;
@@ -5646,6 +5834,13 @@ declare const builtInSchemas: {
5646
5834
  scope: PropertyBuilder<"user" | "workspace" | "database">;
5647
5835
  database: PropertyBuilder<string>;
5648
5836
  }>>;
5837
+ readonly 'xnet://xnet.fyi/Workspace': () => Promise<DefinedSchema<{
5838
+ name: PropertyBuilder<string>;
5839
+ description: PropertyBuilder<string>;
5840
+ preset: PropertyBuilder<"none" | "quiet" | "calm" | "bench">;
5841
+ system: PropertyBuilder<"user" | "system">;
5842
+ tree: PropertyBuilder<WorkspaceTreeJson>;
5843
+ }>>;
5649
5844
  readonly 'xnet://xnet.fyi/Dashboard': () => Promise<DefinedSchema<{
5650
5845
  title: PropertyBuilder<string>;
5651
5846
  icon: PropertyBuilder<string>;
@@ -6505,4 +6700,4 @@ declare function createOperations(...operations: LensOperation[]): {
6505
6700
  */
6506
6701
  declare function identity(source: SchemaIRI, target: SchemaIRI): SchemaLens;
6507
6702
 
6508
- export { ACCOUNT_RECORD_SCHEMA_IRI, ACCOUNT_SCHEMA_IRI, ACHIEVEMENT_SCHEMA_IRI, ACTIVITY_KINDS, ACTIVITY_SCHEMA_IRI, type AbuseReport, AbuseReportSchema, type Account, type AccountClassId, type AccountRecord, AccountRecordSchema, AccountSchema, type Achievement, AchievementSchema, type Activity, type ActivityKind, ActivitySchema, type AnchorData, type AnchorType, type Appeal, AppealSchema, BUDGET_SCHEMA_IRI, type Budget, type BudgetPeriod, BudgetSchema, type BuiltInSchemaIRI, CHANNEL_KINDS, CONTACT_LIFECYCLE, CONTACT_SCHEMA_IRI, CRM_NAMESPACE, type Canvas, type CanvasObjectAnchor, type CanvasObjectAnchorPlacement, type CanvasPositionAnchor, CanvasSchema, type CellAnchor, type Channel, type ChannelKind, type ChannelNotifyTier, ChannelSchema, type ChatMessage, ChatMessageSchema, type CheckboxOptions, type ColumnAnchor, type Comment, CommentSchema, type CommunityNote, CommunityNoteSchema, type Contact, type ContactLifecycle, ContactSchema, type ContentProvenance, ContentProvenanceSchema, type CoreSchemaResolver, type CreatedByOptions, type CreatedOptions, type CrmVisibility, DEAL_CONTACT_ROLES, DEAL_CONTACT_ROLE_SCHEMA_IRI, DEAL_SCHEMA_IRI, DEAL_SOURCES, DEFAULT_CHANNEL_TIER, DEVICE_RECORD_SCHEMA_IRI, DID, type Dashboard, type DashboardBreakpointId, type DashboardLayoutItem, type DashboardLayouts, DashboardSchema, type DashboardTimeRange, type DashboardVariablesState, type DashboardWidgetInstance, type DashboardWidgetRefresh, type Database, type DatabaseField, DatabaseFieldSchema, type DatabaseRow, DatabaseRowSchema, DatabaseSchema, type DatabaseSelectOption, DatabaseSelectOptionSchema, type DatabaseView, DatabaseViewSchema, type DateOptions, type DateRange, type DateRangeOptions, type Deal, type DealContactRole, type DealContactRoleKind, DealContactRoleSchema, DealSchema, type DealSource, type DefineSchemaOptions, DefinedSchema, type DeviceLike, type DeviceRecord, DeviceRecordSchema, DocumentType, EXTENSION_FIELD_SCHEMA_IRI, EXTERNAL_ITEM_SCHEMA_IRI, EXTERNAL_ITEM_SOURCES, EXT_PREFIX, type EffectiveExtensionField, type EmailOptions, type Experiment, type ExperimentDesign, type ExperimentPhase, ExperimentSchema, type ExperimentStatus, type ExtensionField, type ExtensionFieldRecord, ExtensionFieldSchema, type ExtensionRecord, type ExternalItem, ExternalItemSchema, type ExternalReference, ExternalReferenceSchema, FEED_ITEM_SCHEMA_IRI, FEED_SCHEMA_IRI, FOLDER_SCHEMA_IRI, FORECAST_CATEGORIES, type Feed, type FeedItem, FeedItemSchema, FeedSchema, type FileOptions, type FileRef, type Folder, type FolderLike, FolderSchema, type FolderTreeNode, type ForecastCategory, GAME_ASSET_FORMATS, GAME_ASSET_MIME_TYPES, GAME_ASSET_SCHEMA_IRI, GAME_ECONOMY_ENTRY_SCHEMA_IRI, GAME_ITEM_SCHEMA_IRI, GAME_NAMESPACE, GAME_SCHEMA_IRIS, type GameAsset, type GameAssetFormat, GameAssetSchema, type GameEconomyEntry, GameEconomyEntrySchema, type GameItem, GameItemSchema, type GameVisibility, type GeoFeature, type GeoFeatureCollection, type GeoGeometry, type GeoPosition, type Grant, GrantSchema, IMPORT_BATCH_SCHEMA_IRI, INVENTORY_SCHEMA_IRI, ITEM_RARITIES, type ImportBatch, ImportBatchSchema, type ImportSource, type InboxItemTriage, type InboxState, InboxStateSchema, type InboxWatermark, InferNode, type Inventory, InventorySchema, type ItemRarity, type JsonOptions, LINE_ITEM_SCHEMA_IRI, type LedgerNodeIntent, LensOperation, type LineItem, LineItemSchema, MATCH_RESULTS, MATCH_SESSION_SCHEMA_IRI, MAX_MENTION_DIDS, MAX_TAG_NAME_LENGTH, MEMORY_ITEM_SCHEMA_IRI, MEMORY_KINDS, MILESTONE_SCHEMA_IRI, type Map$1 as Map, type MapBasemapId, type MapLayerGeometry, type MapLayerSource, type MapLayerSpec, type MapLayerStyle, MapSchema, type MapViewport, type MatchResult, type MatchSession, MatchSessionSchema, type MediaAsset, MediaAssetSchema, type MemoryItem, MemoryItemSchema, type MemoryKind, type Mention, type MessageMentions, type MessageRequest, MessageRequestSchema, type Metric, type MetricKind, type MetricPolarity, type MetricScheduleId, MetricSchema, type Milestone, MilestoneSchema, type ModerationLabel, ModerationLabelSchema, type MoneyOptions, type MoneyValue, type MultiSelectOptions, NODE_VISIBILITY, type NodeAnchor, type NodeVisibility, type NoteRating, NoteRatingSchema, type NotificationPrefs, type NumberOptions, ORGANIZATION_SCHEMA_IRI, ORGANIZATION_SIZES, type Observation, type ObservationPhase, ObservationSchema, type Organization, OrganizationSchema, type OrganizationSize, type OrphanReason, type OrphanResolvers, type OrphanStatus, PIPELINE_SCHEMA_IRI, PLAYER_IDENTITY_SCHEMA_IRI, POSTING_SCHEMA_IRI, PRODUCT_KINDS, PRODUCT_SCHEMA_IRI, type Page, PageSchema, type ParsedSystemNamespaceResource, type ParsedTaskShortId, type PersonOptions, type PhoneOptions, type Pipeline, PipelineSchema, type PlayerIdentity, PlayerIdentitySchema, type PolicyList, PolicyListSchema, type PolicySubscription, PolicySubscriptionSchema, type Posting, PostingSchema, PresenceAggregator, type PresenceAggregatorOptions, type PresenceAggregatorStore, type PresenceCountBucket, type PresenceSummary, type PresenceSummaryDescriptor, PresenceSummarySchema, type PresenceVisibility, type PresenceVisibilityResolver, type Product, type ProductKind, ProductSchema, type Profile, ProfileSchema, type Project, ProjectSchema, PropertyBuilder, PropertyType, type PublicInteractionPolicy, PublicInteractionPolicySchema, type QualitySignal, QualitySignalSchema, RECOVERY_RECORD_SCHEMA_IRI, RELATIONSHIP_KINDS, RELATIONSHIP_SCHEMA_IRI, REVOCATION_RECORD_SCHEMA_IRI, type Reaction, ReactionSchema, type RecoveryRecord, RecoveryRecordSchema, type RelationOptions, type Relationship, type RelationshipKind, RelationshipSchema, type ReviewTask, ReviewTaskSchema, type RevocationLike, type RevocationRecord, RevocationRecordSchema, type RowAnchor, SCHEMA_EXTENSION_SCHEMA_IRI, DEFAULT_SCHEMA_VERSION as SCHEMA_VERSION, SIDECAR_PREFIX, SPACE_KINDS, SPACE_MEMBERSHIP_SCHEMA_IRI, SPACE_ROLES, SPACE_SCHEMA_IRI, SPACE_VISIBILITY, STAGE_SCHEMA_IRI, SYSTEM_NAMESPACE_KINDS, SYSTEM_SCHEMA_BASE_IRIS, SYSTEM_SCHEMA_IRIS, type SavedView, SavedViewSchema, Schema, type SchemaAuthorityResolution, type SchemaAuthorityResolutionKind, type SchemaAuthorityResolutionOptions, type SchemaCompatibility, type SchemaCompatibilityMode, SchemaCompatibilitySchema, type SchemaDefinition, SchemaDefinitionSchema, type SchemaDefinitionSigningInput, type SchemaDefinitionStatus, type SchemaExtension, SchemaExtensionSchema, SchemaIRI, SchemaLens, type SelectOption, type SelectOptions, type SidecarOverlay, type Space, type SpaceKind, type SpaceLike, type SpaceMembership, SpaceMembershipSchema, type SpaceRole, SpaceSchema, type SpaceTreeNode, type SpaceVisibility, type Stage, StageSchema, type SyncPolicy, SyncPolicySchema, type SyncPolicyStatus, type SystemFederationErrorCode, type SystemNamespaceKind, type SystemSchemaDefinitionRecord, SystemSchemaIndex, type SystemSchemaIndexDiagnostic, type SystemSchemaIndexOptions, type SystemSchemaIndexStore, TAG_SCHEMA_IRI, TASK_SHORT_ID_PATTERN, TASK_STATUS_CATEGORIES, TRANSACTION_SCHEMA_IRI, TRANSCRIPTION_SCHEMA_IRI, type Tag, TagSchema, type Task, TaskSchema, type TaskShortIdBlock, type TaskStatusCategory, type TaskStatusId, type TaskView, TaskViewSchema, type TextAnchor, type TextOptions, type Transaction, TransactionSchema, type TransactionStatus, type Transcription, TranscriptionSchema, type TranscriptionSourceId, type UpdatedOptions, type UrlOptions, type UserWidget, type UserWidgetConfigField, UserWidgetSchema, type UserWidgetSize, type ValidateSchemaDefinitionNodeOptions, ValidationError, ValidationResult, accountRecordId, accountState, addDefault, admitDeviceRecord, bucketPresenceCount, buildEffectiveSchema, buildFolderTree, buildSpaceTree, buildSystemNamespace, buildSystemNodeId, builtInSchemas, canManageSpace, canModifyColumn, checkOrphanStatus, checkbox, compareSpaceRoles, composeLens, computeSchemaDefinitionContentHash, convert, copy, createAccountRecord, createNodeGraphSchemaResolver, createOperations, createSchemaDefinitionSigningPayload, created, createdBy, crmSchemas, date, dateRange, decodeAnchor, defineSchema, deviceRecipientExpander, deviceRecordId, effectiveSpaceRole, email, encodeAnchor, extKey, extractMentions, file, filterOrphanedComments, findLockedColumns, flattenFolderTree, flattenSpaceTree, folderAncestorIds, folderPathIds, formatTaskShortId, gameSchemas, getMentionedUsers, getPresenceNoisePolicy, getTaskStatusCategory, identity, inboxStateNodeId, isCanvasObjectAnchor, isCanvasPositionAnchor, isCellAnchor, isColumnAnchor, isCompletedTaskStatus, isDeviceAuthorized, isExtKey, isMoneyValue, isNodeAnchor, isRowAnchor, isSchemaDefinitionNode, isSpaceRole, isSystemNamespaceResource, isSystemSchemaIri, isTextAnchor, isValidMentions, isValidTagName, json, loadExtensionFields, lockedPropertyKeys, mentionsInclude, merge, mergeSidecarsIntoRow, money, multiSelect, nextEpoch, normalizeMentions, normalizeTagName, number, parseExtKey, parseSystemNamespaceResource, parseTaskShortId, person, phone, promoteOverlay, recoveryRecordId, relation, remove, rename, resolveActiveDevices, resolveEffectiveSchema, resolveSchemaAuthority, revocationRecordId, revokeDeviceRecord, revokeSubjectRecord, revokedSubjects, schemaExtensionId, select, selectExtensionFields, shortIdsFromBlock, sidecarId, sidecarOverlayKeys, spaceAncestorIds, spaceMembershipId, spacePathIds, spaceRoleGrantActions, spaceRoleToShareRole, summarizePresenceNodes, taskBranchName, text, transform, updated, url, validateSchemaDefinitionNode, when, wouldCreateFolderCycle, wouldCreateSpaceCycle };
6703
+ export { ACCOUNT_RECORD_SCHEMA_IRI, ACCOUNT_SCHEMA_IRI, ACHIEVEMENT_SCHEMA_IRI, ACTIVITY_KINDS, ACTIVITY_SCHEMA_IRI, type AbuseReport, AbuseReportSchema, type Account, type AccountClassId, type AccountRecord, AccountRecordSchema, AccountSchema, type Achievement, AchievementSchema, type Activity, type ActivityKind, ActivitySchema, type AnchorData, type AnchorType, type Appeal, AppealSchema, BUDGET_SCHEMA_IRI, type Budget, type BudgetPeriod, BudgetSchema, type BuiltInSchemaIRI, CHANNEL_KINDS, CONTACT_LIFECYCLE, CONTACT_SCHEMA_IRI, CRM_NAMESPACE, type Canvas, type CanvasObjectAnchor, type CanvasObjectAnchorPlacement, type CanvasPositionAnchor, CanvasSchema, type CellAnchor, type Channel, type ChannelKind, type ChannelNotifyTier, ChannelSchema, type ChatMessage, ChatMessageSchema, type CheckboxOptions, type ColumnAnchor, type Comment, CommentSchema, type CommunityNote, CommunityNoteSchema, type Contact, type ContactLifecycle, ContactSchema, type ContentProvenance, ContentProvenanceSchema, type CoreSchemaResolver, type CreatedByOptions, type CreatedOptions, type CrmVisibility, DEAL_CONTACT_ROLES, DEAL_CONTACT_ROLE_SCHEMA_IRI, DEAL_SCHEMA_IRI, DEAL_SOURCES, DEFAULT_CHANNEL_TIER, DEVICE_RECORD_SCHEMA_IRI, DID, type Dashboard, type DashboardBreakpointId, type DashboardLayoutItem, type DashboardLayouts, DashboardSchema, type DashboardTimeRange, type DashboardVariablesState, type DashboardWidgetInstance, type DashboardWidgetRefresh, type Database, type DatabaseField, DatabaseFieldSchema, type DatabaseRow, DatabaseRowSchema, DatabaseSchema, type DatabaseSelectOption, DatabaseSelectOptionSchema, type DatabaseView, DatabaseViewSchema, type DateOptions, type DateRange, type DateRangeOptions, type Deal, type DealContactRole, type DealContactRoleKind, DealContactRoleSchema, DealSchema, type DealSource, type DefineSchemaOptions, DefinedSchema, type DeviceLike, type DeviceRecord, DeviceRecordSchema, DocumentType, EXTENSION_FIELD_SCHEMA_IRI, EXTERNAL_ITEM_SCHEMA_IRI, EXTERNAL_ITEM_SOURCES, EXT_PREFIX, type EffectiveExtensionField, type EmailOptions, type Experiment, type ExperimentDesign, type ExperimentPhase, ExperimentSchema, type ExperimentStatus, type ExtensionField, type ExtensionFieldRecord, ExtensionFieldSchema, type ExtensionRecord, type ExternalItem, ExternalItemSchema, type ExternalReference, ExternalReferenceSchema, FEED_ITEM_SCHEMA_IRI, FEED_SCHEMA_IRI, FOLDER_SCHEMA_IRI, FORECAST_CATEGORIES, type Feed, type FeedItem, FeedItemSchema, FeedSchema, type FileOptions, type FileRef, type Folder, type FolderLike, FolderSchema, type FolderTreeNode, type ForecastCategory, GAME_ASSET_FORMATS, GAME_ASSET_MIME_TYPES, GAME_ASSET_SCHEMA_IRI, GAME_ECONOMY_ENTRY_SCHEMA_IRI, GAME_ITEM_SCHEMA_IRI, GAME_NAMESPACE, GAME_SCHEMA_IRIS, type GameAsset, type GameAssetFormat, GameAssetSchema, type GameEconomyEntry, GameEconomyEntrySchema, type GameItem, GameItemSchema, type GameVisibility, type GeoFeature, type GeoFeatureCollection, type GeoGeometry, type GeoPosition, type Grant, GrantSchema, IMPORT_BATCH_SCHEMA_IRI, INVENTORY_SCHEMA_IRI, ITEM_RARITIES, type ImportBatch, ImportBatchSchema, type ImportSource, type InboxItemTriage, type InboxState, InboxStateSchema, type InboxWatermark, InferNode, type Inventory, InventorySchema, type ItemRarity, type JsonOptions, LINE_ITEM_SCHEMA_IRI, type LedgerNodeIntent, LensOperation, type LineItem, LineItemSchema, MATCH_RESULTS, MATCH_SESSION_SCHEMA_IRI, MAX_MENTION_DIDS, MAX_TAG_NAME_LENGTH, MEETING_CHANNELS, MEETING_SCHEMA_IRI, MEETING_TEMPLATE_IDS, MEETING_TRANSCRIPT_SCHEMA_IRI, MEMORY_ITEM_SCHEMA_IRI, MEMORY_KINDS, MILESTONE_SCHEMA_IRI, type Map$1 as Map, type MapBasemapId, type MapLayerGeometry, type MapLayerSource, type MapLayerSpec, type MapLayerStyle, MapSchema, type MapViewport, type MatchResult, type MatchSession, MatchSessionSchema, type MediaAsset, MediaAssetSchema, type Meeting, type MeetingChannel, MeetingSchema, type MeetingSegment, type MeetingTemplateId, type MeetingTranscript, MeetingTranscriptSchema, type MemoryItem, MemoryItemSchema, type MemoryKind, type Mention, type MessageMentions, type MessageRequest, MessageRequestSchema, type Metric, type MetricKind, type MetricPolarity, type MetricScheduleId, MetricSchema, type Milestone, MilestoneSchema, type ModerationLabel, ModerationLabelSchema, type MoneyOptions, type MoneyValue, type MultiSelectOptions, NODE_VISIBILITY, type NodeAnchor, type NodeVisibility, type NoteRating, NoteRatingSchema, type NotificationPrefs, type NumberOptions, ORGANIZATION_SCHEMA_IRI, ORGANIZATION_SIZES, type Observation, type ObservationPhase, ObservationSchema, type Organization, OrganizationSchema, type OrganizationSize, type OrphanReason, type OrphanResolvers, type OrphanStatus, PIPELINE_SCHEMA_IRI, PLAYER_IDENTITY_SCHEMA_IRI, POSTING_SCHEMA_IRI, PRODUCT_KINDS, PRODUCT_SCHEMA_IRI, type Page, PageSchema, type ParsedSystemNamespaceResource, type ParsedTaskShortId, type PersonOptions, type PhoneOptions, type Pipeline, PipelineSchema, type PlayerIdentity, PlayerIdentitySchema, type PolicyList, PolicyListSchema, type PolicySubscription, PolicySubscriptionSchema, type Posting, PostingSchema, PresenceAggregator, type PresenceAggregatorOptions, type PresenceAggregatorStore, type PresenceCountBucket, type PresenceSummary, type PresenceSummaryDescriptor, PresenceSummarySchema, type PresenceVisibility, type PresenceVisibilityResolver, type Product, type ProductKind, ProductSchema, type Profile, ProfileSchema, type Project, ProjectSchema, PropertyBuilder, PropertyType, type PublicInteractionPolicy, PublicInteractionPolicySchema, type QualitySignal, QualitySignalSchema, RECOVERY_RECORD_SCHEMA_IRI, RELATIONSHIP_KINDS, RELATIONSHIP_SCHEMA_IRI, REVOCATION_RECORD_SCHEMA_IRI, type Reaction, ReactionSchema, type RecoveryRecord, RecoveryRecordSchema, type RelationOptions, type Relationship, type RelationshipKind, RelationshipSchema, type ReviewTask, ReviewTaskSchema, type RevocationLike, type RevocationRecord, RevocationRecordSchema, type RowAnchor, SCHEMA_EXTENSION_SCHEMA_IRI, DEFAULT_SCHEMA_VERSION as SCHEMA_VERSION, SIDECAR_PREFIX, SPACE_KINDS, SPACE_MEMBERSHIP_SCHEMA_IRI, SPACE_ROLES, SPACE_SCHEMA_IRI, SPACE_VISIBILITY, STAGE_SCHEMA_IRI, SYSTEM_NAMESPACE_KINDS, SYSTEM_SCHEMA_BASE_IRIS, SYSTEM_SCHEMA_IRIS, type SavedView, SavedViewSchema, Schema, type SchemaAuthorityResolution, type SchemaAuthorityResolutionKind, type SchemaAuthorityResolutionOptions, type SchemaCompatibility, type SchemaCompatibilityMode, SchemaCompatibilitySchema, type SchemaDefinition, SchemaDefinitionSchema, type SchemaDefinitionSigningInput, type SchemaDefinitionStatus, type SchemaExtension, SchemaExtensionSchema, SchemaIRI, SchemaLens, type SelectOption, type SelectOptions, type SidecarOverlay, type Space, type SpaceKind, type SpaceLike, type SpaceMembership, SpaceMembershipSchema, type SpaceRole, SpaceSchema, type SpaceTreeNode, type SpaceVisibility, type Stage, StageSchema, type SyncPolicy, SyncPolicySchema, type SyncPolicyStatus, type SystemFederationErrorCode, type SystemNamespaceKind, type SystemSchemaDefinitionRecord, SystemSchemaIndex, type SystemSchemaIndexDiagnostic, type SystemSchemaIndexOptions, type SystemSchemaIndexStore, TAG_SCHEMA_IRI, TASK_SHORT_ID_PATTERN, TASK_STATUS_CATEGORIES, TRANSACTION_SCHEMA_IRI, TRANSCRIPTION_SCHEMA_IRI, type Tag, TagSchema, type Task, TaskSchema, type TaskShortIdBlock, type TaskStatusCategory, type TaskStatusId, type TaskView, TaskViewSchema, type TextAnchor, type TextOptions, type Transaction, TransactionSchema, type TransactionStatus, type Transcription, TranscriptionSchema, type TranscriptionSourceId, type UpdatedOptions, type UrlOptions, type UserWidget, type UserWidgetConfigField, UserWidgetSchema, type UserWidgetSize, type ValidateSchemaDefinitionNodeOptions, ValidationError, ValidationResult, type Workspace, WorkspaceSchema, type WorkspaceTreeJson, accountRecordId, accountState, addDefault, admitDeviceRecord, bucketPresenceCount, buildEffectiveSchema, buildFolderTree, buildSpaceTree, buildSystemNamespace, buildSystemNodeId, builtInSchemas, canManageSpace, canModifyColumn, checkOrphanStatus, checkbox, compareSpaceRoles, composeLens, computeSchemaDefinitionContentHash, convert, copy, createAccountRecord, createNodeGraphSchemaResolver, createOperations, createSchemaDefinitionSigningPayload, created, createdBy, crmSchemas, date, dateRange, decodeAnchor, defineSchema, deviceRecipientExpander, deviceRecordId, effectiveSpaceRole, email, encodeAnchor, extKey, extractMentions, file, filterOrphanedComments, findLockedColumns, flattenFolderTree, flattenSpaceTree, folderAncestorIds, folderPathIds, formatTaskShortId, gameSchemas, getMentionedUsers, getPresenceNoisePolicy, getTaskStatusCategory, identity, inboxStateNodeId, isCanvasObjectAnchor, isCanvasPositionAnchor, isCellAnchor, isColumnAnchor, isCompletedTaskStatus, isDeviceAuthorized, isExtKey, isMoneyValue, isNodeAnchor, isRowAnchor, isSchemaDefinitionNode, isSpaceRole, isSystemNamespaceResource, isSystemSchemaIri, isTextAnchor, isValidMentions, isValidTagName, json, loadExtensionFields, lockedPropertyKeys, mentionsInclude, merge, mergeSidecarsIntoRow, money, multiSelect, nextEpoch, normalizeMentions, normalizeTagName, number, parseExtKey, parseSystemNamespaceResource, parseTaskShortId, person, phone, promoteOverlay, recoveryRecordId, relation, remove, rename, resolveActiveDevices, resolveEffectiveSchema, resolveSchemaAuthority, revocationRecordId, revokeDeviceRecord, revokeSubjectRecord, revokedSubjects, schemaExtensionId, select, selectExtensionFields, shortIdsFromBlock, sidecarId, sidecarOverlayKeys, spaceAncestorIds, spaceMembershipId, spacePathIds, spaceRoleGrantActions, spaceRoleToShareRole, summarizePresenceNodes, taskBranchName, text, transform, updated, url, validateSchemaDefinitionNode, when, wouldCreateFolderCycle, wouldCreateSpaceCycle };
@@ -63,7 +63,13 @@ import {
63
63
  taskBranchName,
64
64
  transform,
65
65
  when
66
- } from "../chunk-YAUS3Q2Q.js";
66
+ } from "../chunk-HAV2DS2C.js";
67
+ import {
68
+ SavedViewSchema
69
+ } from "../chunk-ZZ6TWKGS.js";
70
+ import {
71
+ WorkspaceSchema
72
+ } from "../chunk-PH3PVAR6.js";
67
73
  import {
68
74
  UserWidgetSchema
69
75
  } from "../chunk-53F4PRNC.js";
@@ -112,6 +118,10 @@ import {
112
118
  MEMORY_KINDS,
113
119
  MemoryItemSchema
114
120
  } from "../chunk-GU6THOAB.js";
121
+ import {
122
+ CHANNEL_KINDS,
123
+ ChannelSchema
124
+ } from "../chunk-ZCOFZY5M.js";
115
125
  import {
116
126
  ChatMessageSchema
117
127
  } from "../chunk-Q3IEGH4B.js";
@@ -154,9 +164,6 @@ import {
154
164
  revocationRecordId,
155
165
  revokedSubjects
156
166
  } from "../chunk-KQUALW4O.js";
157
- import {
158
- SavedViewSchema
159
- } from "../chunk-ZZ6TWKGS.js";
160
167
  import {
161
168
  MediaAssetSchema
162
169
  } from "../chunk-3J3HILXO.js";
@@ -164,6 +171,14 @@ import {
164
171
  TRANSCRIPTION_SCHEMA_IRI,
165
172
  TranscriptionSchema
166
173
  } from "../chunk-2ZNJWIQG.js";
174
+ import {
175
+ MEETING_CHANNELS,
176
+ MEETING_SCHEMA_IRI,
177
+ MEETING_TEMPLATE_IDS,
178
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
179
+ MeetingSchema,
180
+ MeetingTranscriptSchema
181
+ } from "../chunk-L7NRPLE5.js";
167
182
  import {
168
183
  CanvasSchema
169
184
  } from "../chunk-LYSWLCOI.js";
@@ -179,10 +194,6 @@ import {
179
194
  import {
180
195
  ProfileSchema
181
196
  } from "../chunk-DCTRX6II.js";
182
- import {
183
- CHANNEL_KINDS,
184
- ChannelSchema
185
- } from "../chunk-ZCOFZY5M.js";
186
197
  import {
187
198
  ACTIVITY_KINDS,
188
199
  ACTIVITY_SCHEMA_IRI,
@@ -467,12 +478,18 @@ export {
467
478
  MATCH_SESSION_SCHEMA_IRI,
468
479
  MAX_MENTION_DIDS,
469
480
  MAX_TAG_NAME_LENGTH,
481
+ MEETING_CHANNELS,
482
+ MEETING_SCHEMA_IRI,
483
+ MEETING_TEMPLATE_IDS,
484
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
470
485
  MEMORY_ITEM_SCHEMA_IRI,
471
486
  MEMORY_KINDS,
472
487
  MILESTONE_SCHEMA_IRI,
473
488
  MapSchema,
474
489
  MatchSessionSchema,
475
490
  MediaAssetSchema,
491
+ MeetingSchema,
492
+ MeetingTranscriptSchema,
476
493
  MemoryItemSchema,
477
494
  MessageRequestSchema,
478
495
  MetricSchema,
@@ -545,6 +562,7 @@ export {
545
562
  TransactionSchema,
546
563
  TranscriptionSchema,
547
564
  UserWidgetSchema,
565
+ WorkspaceSchema,
548
566
  accountRecordId,
549
567
  accountState,
550
568
  addDefault,
@@ -0,0 +1,8 @@
1
+ import {
2
+ WorkspaceSchema
3
+ } from "./chunk-PH3PVAR6.js";
4
+ import "./chunk-EBNMV2VO.js";
5
+ import "./chunk-RL64OJJ5.js";
6
+ export {
7
+ WorkspaceSchema
8
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xnetjs/data",
3
- "version": "0.4.0",
3
+ "version": "0.6.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -57,12 +57,12 @@
57
57
  "nanoid": "^5.1.6",
58
58
  "y-protocols": "^1.0.6",
59
59
  "yjs": "^13.6.24",
60
- "@xnetjs/crypto": "0.4.0",
61
- "@xnetjs/identity": "0.4.0",
62
- "@xnetjs/sqlite": "0.4.0",
63
- "@xnetjs/storage": "0.4.0",
64
- "@xnetjs/sync": "0.4.0",
65
- "@xnetjs/core": "0.4.0"
60
+ "@xnetjs/core": "0.6.0",
61
+ "@xnetjs/crypto": "0.6.0",
62
+ "@xnetjs/identity": "0.6.0",
63
+ "@xnetjs/sqlite": "0.6.0",
64
+ "@xnetjs/storage": "0.6.0",
65
+ "@xnetjs/sync": "0.6.0"
66
66
  },
67
67
  "devDependencies": {
68
68
  "tsup": "^8.0.0",