@xnetjs/data 0.3.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.
@@ -2,7 +2,7 @@ import { P as PropertyBuilder, S as SchemaIRI, D as DefinedSchema, ba as Documen
2
2
  export { H as CreateNodeOptions, bb as DEFAULT_SCHEMA_VERSION, I as InferCreateProps, K as InferProperties, J as InferPropertyType, Z as LensRegistry, Y as MigrationError, X as MigrationResult, x as Node, b as ParsedSchemaIRI, E as PropertyDefinition, bd as buildSchemaIRI, A as createNodeId, bf as getBaseSchemaIRI, bh as getSchemaVersion, z as isNode, bg as isSameSchema, _ as lensRegistry, be as normalizeSchemaIRI, bc as parseSchemaIRI } from '../types-S-BJAKyK.js';
3
3
  import { AuthorizationDefinition } from '@xnetjs/core';
4
4
  import { S as SavedViewDescriptor } from '../query-ast-C3m6kZYv.js';
5
- import { m as FilterGroup, p as SortConfig, y as SummaryFunction } from '../view-types-DSde-uT_.js';
5
+ import { a7 as FormSubmissionMeta, W as FilterGroup, Z as SortConfig, an as SummaryFunction, a4 as FormViewConfig, a5 as FormFieldRule } from '../form-types-BlZvpDEE.js';
6
6
  import { N as NodeStore } from '../store-CjjofiLR.js';
7
7
  export { S as SchemaRegistry, s as schemaRegistry } from '../registry-DunPv__d.js';
8
8
  import '@xnetjs/crypto';
@@ -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>;
@@ -1101,30 +1192,6 @@ declare const DatabaseSchema: DefinedSchema<{
1101
1192
  */
1102
1193
  type Database = InferNode<(typeof DatabaseSchema)['_properties']>;
1103
1194
 
1104
- declare const DatabaseRowSchema: DefinedSchema<{
1105
- /**
1106
- * Reference to the parent database.
1107
- * This is a typed relation that only accepts Database node IDs.
1108
- */
1109
- database: PropertyBuilder<string>;
1110
- /**
1111
- * Fractional index for row ordering.
1112
- * Uses a string-based fractional indexing scheme (like Figma/Linear)
1113
- * that allows inserting between any two rows without reindexing.
1114
- *
1115
- * @see packages/data/src/database/fractional-index.ts
1116
- */
1117
- sortKey: PropertyBuilder<string>;
1118
- }>;
1119
- /**
1120
- * A DatabaseRow node type (inferred from schema).
1121
- *
1122
- * Note: Cell values are stored as dynamic properties with `cell_` prefix,
1123
- * so they won't appear in this type. Use `fromCellProperties()` to extract
1124
- * cell values from a row's properties.
1125
- */
1126
- type DatabaseRow = InferNode<(typeof DatabaseRowSchema)['_properties']>;
1127
-
1128
1195
  declare const DatabaseFieldSchema: DefinedSchema<{
1129
1196
  /** Parent database */
1130
1197
  database: PropertyBuilder<string>;
@@ -1173,13 +1240,42 @@ declare const DatabaseSelectOptionSchema: DefinedSchema<{
1173
1240
  */
1174
1241
  type DatabaseSelectOption = InferNode<(typeof DatabaseSelectOptionSchema)['_properties']>;
1175
1242
 
1243
+ declare const DatabaseRowSchema: DefinedSchema<{
1244
+ /**
1245
+ * Reference to the parent database.
1246
+ * This is a typed relation that only accepts Database node IDs.
1247
+ */
1248
+ database: PropertyBuilder<string>;
1249
+ /**
1250
+ * Fractional index for row ordering.
1251
+ * Uses a string-based fractional indexing scheme (like Figma/Linear)
1252
+ * that allows inserting between any two rows without reindexing.
1253
+ *
1254
+ * @see packages/data/src/database/fractional-index.ts
1255
+ */
1256
+ sortKey: PropertyBuilder<string>;
1257
+ /**
1258
+ * Provenance for rows created by a form submission (exploration 0278):
1259
+ * which form view, when, and the submitter's idempotency nonce.
1260
+ */
1261
+ submissionMeta: PropertyBuilder<FormSubmissionMeta>;
1262
+ }>;
1263
+ /**
1264
+ * A DatabaseRow node type (inferred from schema).
1265
+ *
1266
+ * Note: Cell values are stored as dynamic properties with `cell_` prefix,
1267
+ * so they won't appear in this type. Use `fromCellProperties()` to extract
1268
+ * cell values from a row's properties.
1269
+ */
1270
+ type DatabaseRow = InferNode<(typeof DatabaseRowSchema)['_properties']>;
1271
+
1176
1272
  declare const DatabaseViewSchema: DefinedSchema<{
1177
1273
  /** Parent database */
1178
1274
  database: PropertyBuilder<string>;
1179
1275
  /** Display name */
1180
1276
  name: PropertyBuilder<string>;
1181
1277
  /** View type */
1182
- type: PropertyBuilder<"list" | "table" | "timeline" | "board" | "gallery" | "calendar">;
1278
+ type: PropertyBuilder<"list" | "table" | "timeline" | "board" | "gallery" | "calendar" | "form">;
1183
1279
  /** Filter tree (FilterGroup) — whole-tree LWW */
1184
1280
  filters: PropertyBuilder<FilterGroup>;
1185
1281
  /** Sort list (SortConfig[]) — whole-list LWW */
@@ -1210,6 +1306,12 @@ declare const DatabaseViewSchema: DefinedSchema<{
1210
1306
  dateField: PropertyBuilder<string>;
1211
1307
  /** End date field ID */
1212
1308
  endDateField: PropertyBuilder<string>;
1309
+ /** Form question config (FormViewConfig) — whole-object LWW */
1310
+ formConfig: PropertyBuilder<FormViewConfig>;
1311
+ /** Per-question show-if rules: fieldId -> FormFieldRule — whole-map LWW */
1312
+ formRules: PropertyBuilder<Record<string, FormFieldRule>>;
1313
+ /** Accepting responses toggle (form view) */
1314
+ formAccepting: PropertyBuilder<boolean>;
1213
1315
  }>;
1214
1316
  /**
1215
1317
  * A DatabaseView node type (inferred from schema).
@@ -3988,6 +4090,7 @@ declare const builtInSchemas: {
3988
4090
  readonly 'xnet://xnet.fyi/DatabaseRow@2.0.0': () => Promise<DefinedSchema<{
3989
4091
  database: PropertyBuilder<string>;
3990
4092
  sortKey: PropertyBuilder<string>;
4093
+ submissionMeta: PropertyBuilder<FormSubmissionMeta>;
3991
4094
  }>>;
3992
4095
  readonly 'xnet://xnet.fyi/DatabaseField@1.0.0': () => Promise<DefinedSchema<{
3993
4096
  database: PropertyBuilder<string>;
@@ -4009,7 +4112,7 @@ declare const builtInSchemas: {
4009
4112
  readonly 'xnet://xnet.fyi/DatabaseView@1.0.0': () => Promise<DefinedSchema<{
4010
4113
  database: PropertyBuilder<string>;
4011
4114
  name: PropertyBuilder<string>;
4012
- type: PropertyBuilder<"list" | "table" | "timeline" | "board" | "gallery" | "calendar">;
4115
+ type: PropertyBuilder<"list" | "table" | "timeline" | "board" | "gallery" | "calendar" | "form">;
4013
4116
  filters: PropertyBuilder<FilterGroup>;
4014
4117
  sorts: PropertyBuilder<SortConfig[]>;
4015
4118
  groupBy: PropertyBuilder<string>;
@@ -4025,6 +4128,9 @@ declare const builtInSchemas: {
4025
4128
  cardSize: PropertyBuilder<string>;
4026
4129
  dateField: PropertyBuilder<string>;
4027
4130
  endDateField: PropertyBuilder<string>;
4131
+ formConfig: PropertyBuilder<FormViewConfig>;
4132
+ formRules: PropertyBuilder<Record<string, FormFieldRule>>;
4133
+ formAccepting: PropertyBuilder<boolean>;
4028
4134
  }>>;
4029
4135
  readonly 'xnet://xnet.fyi/SchemaExtension@1.0.0': () => Promise<DefinedSchema<{
4030
4136
  targetSchema: PropertyBuilder<string>;
@@ -4397,6 +4503,32 @@ declare const builtInSchemas: {
4397
4503
  space: PropertyBuilder<string>;
4398
4504
  visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
4399
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
+ }>>;
4400
4532
  readonly 'xnet://xnet.fyi/Canvas@1.0.0': () => Promise<DefinedSchema<{
4401
4533
  title: PropertyBuilder<string>;
4402
4534
  icon: PropertyBuilder<string>;
@@ -5017,6 +5149,7 @@ declare const builtInSchemas: {
5017
5149
  readonly 'xnet://xnet.fyi/DatabaseRow': () => Promise<DefinedSchema<{
5018
5150
  database: PropertyBuilder<string>;
5019
5151
  sortKey: PropertyBuilder<string>;
5152
+ submissionMeta: PropertyBuilder<FormSubmissionMeta>;
5020
5153
  }>>;
5021
5154
  readonly 'xnet://xnet.fyi/DatabaseField': () => Promise<DefinedSchema<{
5022
5155
  database: PropertyBuilder<string>;
@@ -5038,7 +5171,7 @@ declare const builtInSchemas: {
5038
5171
  readonly 'xnet://xnet.fyi/DatabaseView': () => Promise<DefinedSchema<{
5039
5172
  database: PropertyBuilder<string>;
5040
5173
  name: PropertyBuilder<string>;
5041
- type: PropertyBuilder<"list" | "table" | "timeline" | "board" | "gallery" | "calendar">;
5174
+ type: PropertyBuilder<"list" | "table" | "timeline" | "board" | "gallery" | "calendar" | "form">;
5042
5175
  filters: PropertyBuilder<FilterGroup>;
5043
5176
  sorts: PropertyBuilder<SortConfig[]>;
5044
5177
  groupBy: PropertyBuilder<string>;
@@ -5054,6 +5187,9 @@ declare const builtInSchemas: {
5054
5187
  cardSize: PropertyBuilder<string>;
5055
5188
  dateField: PropertyBuilder<string>;
5056
5189
  endDateField: PropertyBuilder<string>;
5190
+ formConfig: PropertyBuilder<FormViewConfig>;
5191
+ formRules: PropertyBuilder<Record<string, FormFieldRule>>;
5192
+ formAccepting: PropertyBuilder<boolean>;
5057
5193
  }>>;
5058
5194
  readonly 'xnet://xnet.fyi/SchemaExtension': () => Promise<DefinedSchema<{
5059
5195
  targetSchema: PropertyBuilder<string>;
@@ -5426,6 +5562,32 @@ declare const builtInSchemas: {
5426
5562
  space: PropertyBuilder<string>;
5427
5563
  visibility: PropertyBuilder<"public" | "private" | "unlisted" | "inherit">;
5428
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
+ }>>;
5429
5591
  readonly 'xnet://xnet.fyi/Canvas': () => Promise<DefinedSchema<{
5430
5592
  title: PropertyBuilder<string>;
5431
5593
  icon: PropertyBuilder<string>;
@@ -6486,4 +6648,4 @@ declare function createOperations(...operations: LensOperation[]): {
6486
6648
  */
6487
6649
  declare function identity(source: SchemaIRI, target: SchemaIRI): SchemaLens;
6488
6650
 
6489
- 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-K7DOZWWT.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,
@@ -319,7 +327,7 @@ import {
319
327
  import "../chunk-QWFTRZQT.js";
320
328
  import {
321
329
  DatabaseRowSchema
322
- } from "../chunk-DWEXKD6E.js";
330
+ } from "../chunk-FB63TZVI.js";
323
331
  import {
324
332
  DatabaseFieldSchema
325
333
  } from "../chunk-KQAT4XBL.js";
@@ -328,7 +336,7 @@ import {
328
336
  } from "../chunk-6OMG4I7M.js";
329
337
  import {
330
338
  DatabaseViewSchema
331
- } from "../chunk-H4GA4BBK.js";
339
+ } from "../chunk-MD553LDL.js";
332
340
  import "../chunk-OCMSAKWV.js";
333
341
  import {
334
342
  PresenceSummarySchema,
@@ -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.3.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/core": "0.3.0",
61
- "@xnetjs/crypto": "0.3.0",
62
- "@xnetjs/identity": "0.3.0",
63
- "@xnetjs/sqlite": "0.3.0",
64
- "@xnetjs/storage": "0.3.0",
65
- "@xnetjs/sync": "0.3.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",