@xnetjs/data 0.4.0 → 0.5.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),
@@ -463,6 +466,8 @@ var builtInSchemas = {
463
466
  "xnet://xnet.fyi/ExternalReference": () => import("./external-reference-7BSFF6SA.js").then((m) => m.ExternalReferenceSchema),
464
467
  "xnet://xnet.fyi/MediaAsset": () => import("./media-asset-QTCGLIZA.js").then((m) => m.MediaAssetSchema),
465
468
  "xnet://xnet.fyi/Transcription": () => import("./transcription-PSCLDAGX.js").then((m) => m.TranscriptionSchema),
469
+ "xnet://xnet.fyi/Meeting": () => import("./meeting-LMUYTZBF.js").then((m) => m.MeetingSchema),
470
+ "xnet://xnet.fyi/MeetingTranscript": () => import("./meeting-LMUYTZBF.js").then((m) => m.MeetingTranscriptSchema),
466
471
  "xnet://xnet.fyi/Canvas": () => import("./canvas-6WYBNH53.js").then((m) => m.CanvasSchema),
467
472
  "xnet://xnet.fyi/Map": () => import("./map-RG5Y3CPC.js").then((m) => m.MapSchema),
468
473
  "xnet://xnet.fyi/Comment": () => import("./comment-QSWYAQVS.js").then((m) => m.CommentSchema),
@@ -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
+ };
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, 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,10 @@ import {
287
287
  taskBranchName,
288
288
  transform,
289
289
  when
290
- } from "./chunk-YAUS3Q2Q.js";
290
+ } from "./chunk-GZYJDV6X.js";
291
+ import {
292
+ SavedViewSchema
293
+ } from "./chunk-ZZ6TWKGS.js";
291
294
  import {
292
295
  UserWidgetSchema
293
296
  } from "./chunk-53F4PRNC.js";
@@ -336,6 +339,10 @@ import {
336
339
  MEMORY_KINDS,
337
340
  MemoryItemSchema
338
341
  } from "./chunk-GU6THOAB.js";
342
+ import {
343
+ CHANNEL_KINDS,
344
+ ChannelSchema
345
+ } from "./chunk-ZCOFZY5M.js";
339
346
  import {
340
347
  ChatMessageSchema
341
348
  } from "./chunk-Q3IEGH4B.js";
@@ -378,9 +385,6 @@ import {
378
385
  revocationRecordId,
379
386
  revokedSubjects
380
387
  } from "./chunk-KQUALW4O.js";
381
- import {
382
- SavedViewSchema
383
- } from "./chunk-ZZ6TWKGS.js";
384
388
  import {
385
389
  MediaAssetSchema
386
390
  } from "./chunk-3J3HILXO.js";
@@ -388,6 +392,14 @@ import {
388
392
  TRANSCRIPTION_SCHEMA_IRI,
389
393
  TranscriptionSchema
390
394
  } from "./chunk-2ZNJWIQG.js";
395
+ import {
396
+ MEETING_CHANNELS,
397
+ MEETING_SCHEMA_IRI,
398
+ MEETING_TEMPLATE_IDS,
399
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
400
+ MeetingSchema,
401
+ MeetingTranscriptSchema
402
+ } from "./chunk-L7NRPLE5.js";
391
403
  import {
392
404
  CanvasSchema
393
405
  } from "./chunk-LYSWLCOI.js";
@@ -403,10 +415,6 @@ import {
403
415
  import {
404
416
  ProfileSchema
405
417
  } from "./chunk-DCTRX6II.js";
406
- import {
407
- CHANNEL_KINDS,
408
- ChannelSchema
409
- } from "./chunk-ZCOFZY5M.js";
410
418
  import {
411
419
  ACTIVITY_KINDS,
412
420
  ACTIVITY_SCHEMA_IRI,
@@ -2094,12 +2102,18 @@ export {
2094
2102
  MAX_MENTION_DIDS,
2095
2103
  MAX_TAG_NAME_LENGTH,
2096
2104
  MAX_VERSION_HISTORY,
2105
+ MEETING_CHANNELS,
2106
+ MEETING_SCHEMA_IRI,
2107
+ MEETING_TEMPLATE_IDS,
2108
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
2097
2109
  MEMORY_ITEM_SCHEMA_IRI,
2098
2110
  MEMORY_KINDS,
2099
2111
  MILESTONE_SCHEMA_IRI,
2100
2112
  MapSchema,
2101
2113
  MatchSessionSchema,
2102
2114
  MediaAssetSchema,
2115
+ MeetingSchema,
2116
+ MeetingTranscriptSchema,
2103
2117
  MemoryItemSchema,
2104
2118
  MemoryNodeStorageAdapter,
2105
2119
  MessageRequestSchema,
@@ -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
+ };
@@ -965,6 +965,97 @@ declare const MapSchema: DefinedSchema<{
965
965
  */
966
966
  type Map$1 = InferNode<(typeof MapSchema)['_properties']>;
967
967
 
968
+ declare const MEETING_SCHEMA_IRI: "xnet://xnet.fyi/Meeting@1.0.0";
969
+ declare const MEETING_TRANSCRIPT_SCHEMA_IRI: "xnet://xnet.fyi/MeetingTranscript@1.0.0";
970
+ /**
971
+ * Speaker attribution channel (the Granola trick): the microphone stream is
972
+ * `me`, the system-audio stream is `them`. Everyone on the far end collapses
973
+ * into `them` until a diarization upgrade splits that channel.
974
+ */
975
+ declare const MEETING_CHANNELS: readonly ["me", "them"];
976
+ type MeetingChannel = (typeof MEETING_CHANNELS)[number];
977
+ /** One timed, channel-attributed slice of a meeting transcript. */
978
+ interface MeetingSegment {
979
+ /** Which capture channel produced this slice. */
980
+ channel: MeetingChannel;
981
+ /** Transcribed text for the slice. */
982
+ text: string;
983
+ /** Start offset from meeting start, in milliseconds. */
984
+ startMs: number;
985
+ /** End offset from meeting start, in milliseconds. */
986
+ endMs: number;
987
+ /**
988
+ * Optional speaker label once diarization/calendar attribution upgrades
989
+ * `them` into named speakers (phase 4). Absent = channel label only.
990
+ */
991
+ speaker?: string;
992
+ }
993
+ /** Built-in enhancement template ids (phase 2); free-form ids are allowed. */
994
+ declare const MEETING_TEMPLATE_IDS: readonly ["generic", "1on1", "standup", "sales", "interview"];
995
+ type MeetingTemplateId = (typeof MEETING_TEMPLATE_IDS)[number];
996
+ declare const MeetingSchema: DefinedSchema<{
997
+ /** Meeting title — from the calendar event when available. */
998
+ title: PropertyBuilder<string>;
999
+ /** Wall-clock start, epoch ms. */
1000
+ startedAt: PropertyBuilder<number>;
1001
+ /** Total captured duration in milliseconds. */
1002
+ durationMs: PropertyBuilder<number>;
1003
+ /** Enhancement template shaping the AI notes, e.g. "1on1" | "standup". */
1004
+ templateId: PropertyBuilder<string>;
1005
+ /** The sibling transcript node (one per meeting). */
1006
+ transcript: PropertyBuilder<string>;
1007
+ /** Calendar event this meeting came from, when detected (phase 4). */
1008
+ calendarEventId: PropertyBuilder<string>;
1009
+ /** Attendee display names from the calendar, for context + attribution. */
1010
+ attendees: PropertyBuilder<string[]>;
1011
+ /** Canonical home; empty = Unfiled (exploration 0169). */
1012
+ folder: PropertyBuilder<string>;
1013
+ /** Workspace-wide labels, referenced by id (exploration 0169). */
1014
+ tags: PropertyBuilder<string[]>;
1015
+ /** Order among siblings — fractional index. */
1016
+ sortKey: PropertyBuilder<string>;
1017
+ /** Canonical SECURITY home; empty = personal/private (exploration 0179). */
1018
+ space: PropertyBuilder<string>;
1019
+ /**
1020
+ * Per-node visibility. Defaults to `private` — a meeting may contain
1021
+ * anything, and must never leak to a public surface by accident (0279).
1022
+ */
1023
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
1024
+ }>;
1025
+ declare const MeetingTranscriptSchema: DefinedSchema<{
1026
+ /** The meeting this transcript belongs to. */
1027
+ meeting: PropertyBuilder<string>;
1028
+ /**
1029
+ * Concatenated transcript text — FTS-indexed so meetings are searchable.
1030
+ * Rebuilt from `segments` on each batched upsert.
1031
+ */
1032
+ fullText: PropertyBuilder<string>;
1033
+ /** Timed, channel-attributed segments (me | them). */
1034
+ segments: PropertyBuilder<MeetingSegment[]>;
1035
+ /** Detected/used language (BCP-47-ish, e.g. "en"), when known. */
1036
+ language: PropertyBuilder<string>;
1037
+ /** Which engine produced this, e.g. "parakeet-sherpa" | "whisper-cpp" | "byo". */
1038
+ engineId: PropertyBuilder<string>;
1039
+ /** Which model produced this, e.g. "parakeet-tdt-0.6b-v2". */
1040
+ modelId: PropertyBuilder<string>;
1041
+ /** Length of the transcribed audio in milliseconds. */
1042
+ durationMs: PropertyBuilder<number>;
1043
+ /**
1044
+ * Optional source audio, stored as a content-addressed blob reference.
1045
+ * Off by default — retained only when the user opts into keeping audio
1046
+ * (0279 privacy norm; the bytes live in BlobStore, never the change log).
1047
+ */
1048
+ audio: PropertyBuilder<FileRef>;
1049
+ /** Canonical SECURITY home; empty = personal/private (exploration 0179). */
1050
+ space: PropertyBuilder<string>;
1051
+ /** Per-node visibility. Defaults to `private`, like the meeting itself. */
1052
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
1053
+ }>;
1054
+ /** A Meeting node type (inferred from schema). */
1055
+ type Meeting = InferNode<(typeof MeetingSchema)['_properties']>;
1056
+ /** A MeetingTranscript node type (inferred from schema). */
1057
+ type MeetingTranscript = InferNode<(typeof MeetingTranscriptSchema)['_properties']>;
1058
+
968
1059
  declare const PageSchema: DefinedSchema<{
969
1060
  /** Page title */
970
1061
  title: PropertyBuilder<string>;
@@ -4412,6 +4503,32 @@ declare const builtInSchemas: {
4412
4503
  space: PropertyBuilder<string>;
4413
4504
  visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
4414
4505
  }>>;
4506
+ readonly 'xnet://xnet.fyi/Meeting@1.0.0': () => Promise<DefinedSchema<{
4507
+ title: PropertyBuilder<string>;
4508
+ startedAt: PropertyBuilder<number>;
4509
+ durationMs: PropertyBuilder<number>;
4510
+ templateId: PropertyBuilder<string>;
4511
+ transcript: PropertyBuilder<string>;
4512
+ calendarEventId: PropertyBuilder<string>;
4513
+ attendees: PropertyBuilder<string[]>;
4514
+ folder: PropertyBuilder<string>;
4515
+ tags: PropertyBuilder<string[]>;
4516
+ sortKey: PropertyBuilder<string>;
4517
+ space: PropertyBuilder<string>;
4518
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
4519
+ }>>;
4520
+ readonly 'xnet://xnet.fyi/MeetingTranscript@1.0.0': () => Promise<DefinedSchema<{
4521
+ meeting: PropertyBuilder<string>;
4522
+ fullText: PropertyBuilder<string>;
4523
+ segments: PropertyBuilder<MeetingSegment[]>;
4524
+ language: PropertyBuilder<string>;
4525
+ engineId: PropertyBuilder<string>;
4526
+ modelId: PropertyBuilder<string>;
4527
+ durationMs: PropertyBuilder<number>;
4528
+ audio: PropertyBuilder<FileRef>;
4529
+ space: PropertyBuilder<string>;
4530
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
4531
+ }>>;
4415
4532
  readonly 'xnet://xnet.fyi/Canvas@1.0.0': () => Promise<DefinedSchema<{
4416
4533
  title: PropertyBuilder<string>;
4417
4534
  icon: PropertyBuilder<string>;
@@ -5445,6 +5562,32 @@ declare const builtInSchemas: {
5445
5562
  space: PropertyBuilder<string>;
5446
5563
  visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
5447
5564
  }>>;
5565
+ readonly 'xnet://xnet.fyi/Meeting': () => Promise<DefinedSchema<{
5566
+ title: PropertyBuilder<string>;
5567
+ startedAt: PropertyBuilder<number>;
5568
+ durationMs: PropertyBuilder<number>;
5569
+ templateId: PropertyBuilder<string>;
5570
+ transcript: PropertyBuilder<string>;
5571
+ calendarEventId: PropertyBuilder<string>;
5572
+ attendees: PropertyBuilder<string[]>;
5573
+ folder: PropertyBuilder<string>;
5574
+ tags: PropertyBuilder<string[]>;
5575
+ sortKey: PropertyBuilder<string>;
5576
+ space: PropertyBuilder<string>;
5577
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
5578
+ }>>;
5579
+ readonly 'xnet://xnet.fyi/MeetingTranscript': () => Promise<DefinedSchema<{
5580
+ meeting: PropertyBuilder<string>;
5581
+ fullText: PropertyBuilder<string>;
5582
+ segments: PropertyBuilder<MeetingSegment[]>;
5583
+ language: PropertyBuilder<string>;
5584
+ engineId: PropertyBuilder<string>;
5585
+ modelId: PropertyBuilder<string>;
5586
+ durationMs: PropertyBuilder<number>;
5587
+ audio: PropertyBuilder<FileRef>;
5588
+ space: PropertyBuilder<string>;
5589
+ visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
5590
+ }>>;
5448
5591
  readonly 'xnet://xnet.fyi/Canvas': () => Promise<DefinedSchema<{
5449
5592
  title: PropertyBuilder<string>;
5450
5593
  icon: PropertyBuilder<string>;
@@ -6505,4 +6648,4 @@ declare function createOperations(...operations: LensOperation[]): {
6505
6648
  */
6506
6649
  declare function identity(source: SchemaIRI, target: SchemaIRI): SchemaLens;
6507
6650
 
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 };
6651
+ 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, 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,10 @@ import {
63
63
  taskBranchName,
64
64
  transform,
65
65
  when
66
- } from "../chunk-YAUS3Q2Q.js";
66
+ } from "../chunk-GZYJDV6X.js";
67
+ import {
68
+ SavedViewSchema
69
+ } from "../chunk-ZZ6TWKGS.js";
67
70
  import {
68
71
  UserWidgetSchema
69
72
  } from "../chunk-53F4PRNC.js";
@@ -112,6 +115,10 @@ import {
112
115
  MEMORY_KINDS,
113
116
  MemoryItemSchema
114
117
  } from "../chunk-GU6THOAB.js";
118
+ import {
119
+ CHANNEL_KINDS,
120
+ ChannelSchema
121
+ } from "../chunk-ZCOFZY5M.js";
115
122
  import {
116
123
  ChatMessageSchema
117
124
  } from "../chunk-Q3IEGH4B.js";
@@ -154,9 +161,6 @@ import {
154
161
  revocationRecordId,
155
162
  revokedSubjects
156
163
  } from "../chunk-KQUALW4O.js";
157
- import {
158
- SavedViewSchema
159
- } from "../chunk-ZZ6TWKGS.js";
160
164
  import {
161
165
  MediaAssetSchema
162
166
  } from "../chunk-3J3HILXO.js";
@@ -164,6 +168,14 @@ import {
164
168
  TRANSCRIPTION_SCHEMA_IRI,
165
169
  TranscriptionSchema
166
170
  } from "../chunk-2ZNJWIQG.js";
171
+ import {
172
+ MEETING_CHANNELS,
173
+ MEETING_SCHEMA_IRI,
174
+ MEETING_TEMPLATE_IDS,
175
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
176
+ MeetingSchema,
177
+ MeetingTranscriptSchema
178
+ } from "../chunk-L7NRPLE5.js";
167
179
  import {
168
180
  CanvasSchema
169
181
  } from "../chunk-LYSWLCOI.js";
@@ -179,10 +191,6 @@ import {
179
191
  import {
180
192
  ProfileSchema
181
193
  } from "../chunk-DCTRX6II.js";
182
- import {
183
- CHANNEL_KINDS,
184
- ChannelSchema
185
- } from "../chunk-ZCOFZY5M.js";
186
194
  import {
187
195
  ACTIVITY_KINDS,
188
196
  ACTIVITY_SCHEMA_IRI,
@@ -467,12 +475,18 @@ export {
467
475
  MATCH_SESSION_SCHEMA_IRI,
468
476
  MAX_MENTION_DIDS,
469
477
  MAX_TAG_NAME_LENGTH,
478
+ MEETING_CHANNELS,
479
+ MEETING_SCHEMA_IRI,
480
+ MEETING_TEMPLATE_IDS,
481
+ MEETING_TRANSCRIPT_SCHEMA_IRI,
470
482
  MEMORY_ITEM_SCHEMA_IRI,
471
483
  MEMORY_KINDS,
472
484
  MILESTONE_SCHEMA_IRI,
473
485
  MapSchema,
474
486
  MatchSessionSchema,
475
487
  MediaAssetSchema,
488
+ MeetingSchema,
489
+ MeetingTranscriptSchema,
476
490
  MemoryItemSchema,
477
491
  MessageRequestSchema,
478
492
  MetricSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xnetjs/data",
3
- "version": "0.4.0",
3
+ "version": "0.5.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.5.0",
61
+ "@xnetjs/crypto": "0.5.0",
62
+ "@xnetjs/identity": "0.5.0",
63
+ "@xnetjs/sqlite": "0.5.0",
64
+ "@xnetjs/storage": "0.5.0",
65
+ "@xnetjs/sync": "0.5.0"
66
66
  },
67
67
  "devDependencies": {
68
68
  "tsup": "^8.0.0",