@stndrds/schema 1.0.0-alpha.286 → 1.0.0-alpha.287

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -40,17 +40,11 @@ var NOTIFICATION_WORK_STATES = [
40
40
  "expired",
41
41
  "failed"
42
42
  ];
43
- var NOTIFICATION_TYPE_AGENT_SESSION_COMPLETED = "agent.session.completed";
44
- var NOTIFICATION_TYPE_AGENT_SESSION_FAILED = "agent.session.failed";
45
43
  var NOTIFICATION_TYPE_AGENT_SESSION_WAITING_HUMAN = "agent.session.waiting_human";
46
- var NOTIFICATION_TYPE_AGENT_SESSION_TIMEOUT = "agent.session.timeout";
47
44
  var NOTIFICATION_TYPE_AGENT_TASK_ASSIGNED = "agent.task.assigned";
48
45
  var NOTIFICATION_TYPE_AGENT_QUESTION_REQUESTED = "agent.question.requested";
49
46
  var NOTIFICATION_TYPES_V1 = [
50
- NOTIFICATION_TYPE_AGENT_SESSION_COMPLETED,
51
- NOTIFICATION_TYPE_AGENT_SESSION_FAILED,
52
47
  NOTIFICATION_TYPE_AGENT_SESSION_WAITING_HUMAN,
53
- NOTIFICATION_TYPE_AGENT_SESSION_TIMEOUT,
54
48
  NOTIFICATION_TYPE_AGENT_TASK_ASSIGNED,
55
49
  NOTIFICATION_TYPE_AGENT_QUESTION_REQUESTED
56
50
  ];
@@ -4730,6 +4724,13 @@ Available objects: ${this.listNames().join(", ")}`;
4730
4724
  }
4731
4725
  };
4732
4726
  var registry = new NativeObjectRegistryClass();
4727
+
4728
+ // src/native/system-view.ts
4729
+ function markSystemView(view) {
4730
+ return { ...view, system: true };
4731
+ }
4732
+
4733
+ // src/native/skill.object.ts
4733
4734
  var SKILL_CONTENT_TEMPLATE = `## Overview
4734
4735
 
4735
4736
  Describe in one or two sentences what this skill does and the outcome it produces. The agent reads this page when it uses the skill \u2014 write instructions for the agent, not documentation for people.
@@ -4767,8 +4768,12 @@ var SKILL_OBJECT = object({ name: "skill", label: "Skill" }).sealed().icon("spar
4767
4768
  'What this skill does and when to use it \u2014 e.g. "Drafts replies to customer complaints. Use when asked to answer an unhappy customer."'
4768
4769
  )
4769
4770
  ).attribute(richtext({ name: "content", label: "Content" }).defaultValue(SKILL_CONTENT_TEMPLATE)).build();
4770
- var SKILL_VIEW = detailView("skill-detail", "Skill").for("skill").default().sidePanel({ attributes: ["name", "description"] }).tab("content", "Content").richtext("content").titleAttribute("name").done().tab("files", "Files").documents().done().build();
4771
- var SKILL_LIST_VIEW = listView("skill-list", "Skills").for("skill").default().tab("workspace", "Skills").default().icon("table").visibility("workspace").table().columns("name", "description").sort("name", "asc").tab("mine", "My skills").icon("lock").visibility("private").table().columns("name", "description").sort("name", "asc").build();
4771
+ var SKILL_VIEW = markSystemView(
4772
+ detailView("skill-detail", "Skill").for("skill").default().sidePanel({ attributes: ["name", "description"] }).tab("content", "Content").richtext("content").titleAttribute("name").done().tab("files", "Files").documents().done().build()
4773
+ );
4774
+ var SKILL_LIST_VIEW = markSystemView(
4775
+ listView("skill-list", "Skills").for("skill").default().tab("workspace", "Skills").default().icon("table").visibility("workspace").table().columns("name", "description").sort("name", "asc").tab("mine", "My skills").icon("lock").visibility("private").table().columns("name", "description").sort("name", "asc").build()
4776
+ );
4772
4777
  var MEMORY_OBJECT = object({ name: "memory", label: "Memory" }).sealed().icon("database").order(Number.MAX_SAFE_INTEGER).pluralLabel("Memories").labelExpression("{{ name }}").embeddingExpression("{{ name }}\n{{ description }}\n{{ content }}").migration(2, (migration) => migration.changeType("content", "text", "richtext")).attribute(text({ name: "name", label: "Name" }).maxLength(constants.MEMORY_NAME_MAX_LENGTH).required()).attribute(
4773
4778
  text({ name: "description", label: "Description" }).multiline().maxLength(constants.MEMORY_DESCRIPTION_MAX_LENGTH).required()
4774
4779
  ).attribute(richtext({ name: "content", label: "Content" })).attribute(
@@ -4785,25 +4790,33 @@ var MEMORY_OBJECT = object({ name: "memory", label: "Memory" }).sealed().icon("d
4785
4790
  { value: "corroborated", label: "Corroborated across users" }
4786
4791
  ])
4787
4792
  ).attribute(date({ name: "validFrom", label: "Valid from" }).includeTime()).attribute(date({ name: "invalidAt", label: "Invalid at" }).includeTime()).attribute(relation({ name: "supersededBy", label: "Superseded by" }).to("memory")).build();
4788
- var MEMORY_VIEW = detailView("memory-detail", "Memory").for("memory").default().sidePanel({
4789
- attributes: [
4790
- "description",
4791
- "kind",
4792
- "source",
4793
- "validFrom",
4794
- "invalidAt",
4795
- "supersededBy",
4796
- "subjects",
4797
- "links"
4798
- ]
4799
- }).tab("content", "Content").richtext("content").titleAttribute("name").build();
4800
- var MEMORY_LIST_VIEW = listView("memory-list", "Memories").for("memory").default().tab("workspace", "Memories").default().icon("table").visibility("workspace").table().columns("name", "kind", "description", "createdAt").sort("name", "asc").tab("mine", "My memories").icon("lock").visibility("private").table().columns("name", "kind", "description", "createdAt").sort("name", "asc").build();
4793
+ var MEMORY_VIEW = markSystemView(
4794
+ detailView("memory-detail", "Memory").for("memory").default().sidePanel({
4795
+ attributes: [
4796
+ "description",
4797
+ "kind",
4798
+ "source",
4799
+ "validFrom",
4800
+ "invalidAt",
4801
+ "supersededBy",
4802
+ "subjects",
4803
+ "links"
4804
+ ]
4805
+ }).tab("content", "Content").richtext("content").titleAttribute("name").build()
4806
+ );
4807
+ var MEMORY_LIST_VIEW = markSystemView(
4808
+ listView("memory-list", "Memories").for("memory").default().tab("workspace", "Memories").default().icon("table").visibility("workspace").table().columns("name", "kind", "description", "createdAt").sort("name", "asc").tab("mine", "My memories").icon("lock").visibility("private").table().columns("name", "kind", "description", "createdAt").sort("name", "asc").build()
4809
+ );
4801
4810
 
4802
4811
  // src/native/drive.object.ts
4803
4812
  var DRIVE_OBJECT_NAME = "drives";
4804
4813
  var DRIVE_OBJECT = object({ name: DRIVE_OBJECT_NAME, label: "Drive" }).sealed().icon("folder").hidden().pluralLabel("Drives").labelExpression("{{ name }}").embeddingExpression("{{ name }}\n{{ description }}").attribute(text({ name: "name", label: "Name" }).required()).attribute(text({ name: "description", label: "Description" }).multiline()).build();
4805
- var DRIVE_VIEW = detailView("drive-detail", "Drive").for(DRIVE_OBJECT_NAME).default().sidePanel({ attributes: ["description"] }).tab("documents", "Documents").documents().build();
4806
- var DRIVE_LIST_VIEW = listView("drive-list", "Drives").for(DRIVE_OBJECT_NAME).default().tab("workspace", "Shared").default().icon("users").visibility("workspace").table().columns("name", "description", "updatedAt").sort("name", "asc").tab("mine", "My drives").icon("lock").visibility("private").table().columns("name", "description", "updatedAt").sort("name", "asc").build();
4814
+ var DRIVE_VIEW = markSystemView(
4815
+ detailView("drive-detail", "Drive").for(DRIVE_OBJECT_NAME).default().sidePanel({ attributes: ["description"] }).tab("documents", "Documents").documents().build()
4816
+ );
4817
+ var DRIVE_LIST_VIEW = markSystemView(
4818
+ listView("drive-list", "Drives").for(DRIVE_OBJECT_NAME).default().tab("workspace", "Shared").default().icon("users").visibility("workspace").table().columns("name", "description", "updatedAt").sort("name", "asc").tab("mine", "My drives").icon("lock").visibility("private").table().columns("name", "description", "updatedAt").sort("name", "asc").build()
4819
+ );
4807
4820
 
4808
4821
  // src/views/registry.ts
4809
4822
  function cloneViewDefinition(view) {
@@ -5282,8 +5295,6 @@ function liveChannelKey(channel) {
5282
5295
  return `record:${encodeURIComponent(channel.objectId)}:${encodeURIComponent(channel.recordId)}`;
5283
5296
  case "view":
5284
5297
  return `view:${encodeURIComponent(channel.viewId)}`;
5285
- case "agent":
5286
- return `agent:${encodeURIComponent(channel.tenantId)}`;
5287
5298
  case "user":
5288
5299
  return `user:${encodeURIComponent(channel.actorId)}`;
5289
5300
  case "conversation":
@@ -5323,10 +5334,6 @@ function parseLiveChannelKey(key) {
5323
5334
  const viewId = decodeLiveChannelPart(parts[1]);
5324
5335
  return viewId ? { kind: "view", viewId } : null;
5325
5336
  }
5326
- if (parts[0] === "agent" && parts.length === 2 && parts[1]) {
5327
- const tenantId = decodeLiveChannelPart(parts[1]);
5328
- return tenantId ? { kind: "agent", tenantId } : null;
5329
- }
5330
5337
  if (parts[0] === "user" && parts.length === 2 && parts[1]) {
5331
5338
  const actorId = decodeLiveChannelPart(parts[1]);
5332
5339
  return actorId ? { kind: "user", actorId } : null;
@@ -5350,12 +5357,10 @@ var LIVE_EVENT_TYPE_REGISTRY = {
5350
5357
  "record.created": true,
5351
5358
  "view.projection.stale": true,
5352
5359
  "agent.session.patch": true,
5353
- "agent.unread.patch": true,
5354
5360
  "notification.created": true,
5355
5361
  "notification.recipient.patch": true,
5356
5362
  "notification.count.patch": true,
5357
5363
  "notification.inbox.archived": true,
5358
- "conversation.renamed": true,
5359
5364
  "reflex.state.changed": true,
5360
5365
  "reflex.run.completed": true,
5361
5366
  "reflex.authoring.progress": true,
@@ -5445,8 +5450,6 @@ function isLiveEventPayloadForType(type, payload) {
5445
5450
  return isViewProjectionStalePayload(payload);
5446
5451
  case "agent.session.patch":
5447
5452
  return isAgentSessionPatchPayload(payload);
5448
- case "agent.unread.patch":
5449
- return isAgentUnreadPatchPayload(payload);
5450
5453
  case "notification.created":
5451
5454
  return isNotificationCreatedPayload(payload);
5452
5455
  case "notification.recipient.patch":
@@ -5455,8 +5458,6 @@ function isLiveEventPayloadForType(type, payload) {
5455
5458
  return isNotificationCountPatchPayload(payload);
5456
5459
  case "notification.inbox.archived":
5457
5460
  return isNotificationInboxArchivedPayload(payload);
5458
- case "conversation.renamed":
5459
- return isConversationRenamedPayload(payload);
5460
5461
  case "reflex.state.changed":
5461
5462
  return isReflexStateChangedPayload(payload);
5462
5463
  case "reflex.run.completed":
@@ -5561,9 +5562,6 @@ function isViewProjectionStalePayload(payload) {
5561
5562
  function isAgentSessionPatchPayload(payload) {
5562
5563
  return payload.type === "agent.session.patch" && hasString(payload, "sessionId") && isRecord2(payload.patch) && hasVersion(payload, "version") && hasString(payload, "updatedAt");
5563
5564
  }
5564
- function isAgentUnreadPatchPayload(payload) {
5565
- return payload.type === "agent.unread.patch" && hasString(payload, "targetActorId") && hasString(payload, "sessionId") && hasVersion(payload, "unreadCount") && hasVersion(payload, "version") && hasString(payload, "updatedAt") && (!Object.hasOwn(payload, "session") || isRecord2(payload.session) && payload.session.id === payload.sessionId);
5566
- }
5567
5565
  function isLiveNotification(value) {
5568
5566
  return isRecord2(value) && hasString(value, "id") && hasString(value, "tenantId") && hasOptional(value, "senderActorId", isString) && hasOptional(value, "rootActorId", isString) && hasOptional(value, "triggeredByActorId", isString) && isNotificationKind(value.kind) && hasString(value, "type") && hasOptional(value, "subject", isNotificationSubject) && hasString(value, "title") && hasOptional(value, "summary", isString) && isRecord2(value.payload) && isNotificationPriority(value.priority) && isNotificationSensitivity(value.sensitivity) && hasOptional(value, "threadKey", isString) && hasOptional(value, "idempotencyKey", isString) && hasOptional(value, "expiresAt", isIsoDateString) && hasIsoDateString(value, "createdAt") && hasIsoDateString(value, "updatedAt");
5569
5567
  }
@@ -5593,9 +5591,6 @@ function isNotificationCountPatchPayload(payload) {
5593
5591
  function isNotificationInboxArchivedPayload(payload) {
5594
5592
  return payload.type === "notification.inbox.archived" && hasOnlyKeys(payload, NOTIFICATION_INBOX_ARCHIVED_PAYLOAD_KEYS) && hasNonEmptyString(payload, "targetActorId") && hasVersion(payload, "archivedCount") && hasVersion(payload, "version") && hasIsoDateString(payload, "updatedAt");
5595
5593
  }
5596
- function isConversationRenamedPayload(payload) {
5597
- return payload.type === "conversation.renamed" && hasString(payload, "sessionId") && hasString(payload, "title") && hasVersion(payload, "version") && hasString(payload, "updatedAt");
5598
- }
5599
5594
  var REFLEX_STATES = ["armed", "disarmed"];
5600
5595
  var REFLEX_AUTHORING_STATUSES = [
5601
5596
  "authoring",
@@ -9932,9 +9927,6 @@ exports.NOTIFICATION_PRIORITIES = NOTIFICATION_PRIORITIES;
9932
9927
  exports.NOTIFICATION_SENSITIVITIES = NOTIFICATION_SENSITIVITIES;
9933
9928
  exports.NOTIFICATION_TYPES_V1 = NOTIFICATION_TYPES_V1;
9934
9929
  exports.NOTIFICATION_TYPE_AGENT_QUESTION_REQUESTED = NOTIFICATION_TYPE_AGENT_QUESTION_REQUESTED;
9935
- exports.NOTIFICATION_TYPE_AGENT_SESSION_COMPLETED = NOTIFICATION_TYPE_AGENT_SESSION_COMPLETED;
9936
- exports.NOTIFICATION_TYPE_AGENT_SESSION_FAILED = NOTIFICATION_TYPE_AGENT_SESSION_FAILED;
9937
- exports.NOTIFICATION_TYPE_AGENT_SESSION_TIMEOUT = NOTIFICATION_TYPE_AGENT_SESSION_TIMEOUT;
9938
9930
  exports.NOTIFICATION_TYPE_AGENT_SESSION_WAITING_HUMAN = NOTIFICATION_TYPE_AGENT_SESSION_WAITING_HUMAN;
9939
9931
  exports.NOTIFICATION_TYPE_AGENT_TASK_ASSIGNED = NOTIFICATION_TYPE_AGENT_TASK_ASSIGNED;
9940
9932
  exports.NOTIFICATION_WORK_STATES = NOTIFICATION_WORK_STATES;
package/dist/index.mjs CHANGED
@@ -39,17 +39,11 @@ var NOTIFICATION_WORK_STATES = [
39
39
  "expired",
40
40
  "failed"
41
41
  ];
42
- var NOTIFICATION_TYPE_AGENT_SESSION_COMPLETED = "agent.session.completed";
43
- var NOTIFICATION_TYPE_AGENT_SESSION_FAILED = "agent.session.failed";
44
42
  var NOTIFICATION_TYPE_AGENT_SESSION_WAITING_HUMAN = "agent.session.waiting_human";
45
- var NOTIFICATION_TYPE_AGENT_SESSION_TIMEOUT = "agent.session.timeout";
46
43
  var NOTIFICATION_TYPE_AGENT_TASK_ASSIGNED = "agent.task.assigned";
47
44
  var NOTIFICATION_TYPE_AGENT_QUESTION_REQUESTED = "agent.question.requested";
48
45
  var NOTIFICATION_TYPES_V1 = [
49
- NOTIFICATION_TYPE_AGENT_SESSION_COMPLETED,
50
- NOTIFICATION_TYPE_AGENT_SESSION_FAILED,
51
46
  NOTIFICATION_TYPE_AGENT_SESSION_WAITING_HUMAN,
52
- NOTIFICATION_TYPE_AGENT_SESSION_TIMEOUT,
53
47
  NOTIFICATION_TYPE_AGENT_TASK_ASSIGNED,
54
48
  NOTIFICATION_TYPE_AGENT_QUESTION_REQUESTED
55
49
  ];
@@ -4729,6 +4723,13 @@ Available objects: ${this.listNames().join(", ")}`;
4729
4723
  }
4730
4724
  };
4731
4725
  var registry = new NativeObjectRegistryClass();
4726
+
4727
+ // src/native/system-view.ts
4728
+ function markSystemView(view) {
4729
+ return { ...view, system: true };
4730
+ }
4731
+
4732
+ // src/native/skill.object.ts
4732
4733
  var SKILL_CONTENT_TEMPLATE = `## Overview
4733
4734
 
4734
4735
  Describe in one or two sentences what this skill does and the outcome it produces. The agent reads this page when it uses the skill \u2014 write instructions for the agent, not documentation for people.
@@ -4766,8 +4767,12 @@ var SKILL_OBJECT = object({ name: "skill", label: "Skill" }).sealed().icon("spar
4766
4767
  'What this skill does and when to use it \u2014 e.g. "Drafts replies to customer complaints. Use when asked to answer an unhappy customer."'
4767
4768
  )
4768
4769
  ).attribute(richtext({ name: "content", label: "Content" }).defaultValue(SKILL_CONTENT_TEMPLATE)).build();
4769
- var SKILL_VIEW = detailView("skill-detail", "Skill").for("skill").default().sidePanel({ attributes: ["name", "description"] }).tab("content", "Content").richtext("content").titleAttribute("name").done().tab("files", "Files").documents().done().build();
4770
- var SKILL_LIST_VIEW = listView("skill-list", "Skills").for("skill").default().tab("workspace", "Skills").default().icon("table").visibility("workspace").table().columns("name", "description").sort("name", "asc").tab("mine", "My skills").icon("lock").visibility("private").table().columns("name", "description").sort("name", "asc").build();
4770
+ var SKILL_VIEW = markSystemView(
4771
+ detailView("skill-detail", "Skill").for("skill").default().sidePanel({ attributes: ["name", "description"] }).tab("content", "Content").richtext("content").titleAttribute("name").done().tab("files", "Files").documents().done().build()
4772
+ );
4773
+ var SKILL_LIST_VIEW = markSystemView(
4774
+ listView("skill-list", "Skills").for("skill").default().tab("workspace", "Skills").default().icon("table").visibility("workspace").table().columns("name", "description").sort("name", "asc").tab("mine", "My skills").icon("lock").visibility("private").table().columns("name", "description").sort("name", "asc").build()
4775
+ );
4771
4776
  var MEMORY_OBJECT = object({ name: "memory", label: "Memory" }).sealed().icon("database").order(Number.MAX_SAFE_INTEGER).pluralLabel("Memories").labelExpression("{{ name }}").embeddingExpression("{{ name }}\n{{ description }}\n{{ content }}").migration(2, (migration) => migration.changeType("content", "text", "richtext")).attribute(text({ name: "name", label: "Name" }).maxLength(MEMORY_NAME_MAX_LENGTH).required()).attribute(
4772
4777
  text({ name: "description", label: "Description" }).multiline().maxLength(MEMORY_DESCRIPTION_MAX_LENGTH).required()
4773
4778
  ).attribute(richtext({ name: "content", label: "Content" })).attribute(
@@ -4784,25 +4789,33 @@ var MEMORY_OBJECT = object({ name: "memory", label: "Memory" }).sealed().icon("d
4784
4789
  { value: "corroborated", label: "Corroborated across users" }
4785
4790
  ])
4786
4791
  ).attribute(date({ name: "validFrom", label: "Valid from" }).includeTime()).attribute(date({ name: "invalidAt", label: "Invalid at" }).includeTime()).attribute(relation({ name: "supersededBy", label: "Superseded by" }).to("memory")).build();
4787
- var MEMORY_VIEW = detailView("memory-detail", "Memory").for("memory").default().sidePanel({
4788
- attributes: [
4789
- "description",
4790
- "kind",
4791
- "source",
4792
- "validFrom",
4793
- "invalidAt",
4794
- "supersededBy",
4795
- "subjects",
4796
- "links"
4797
- ]
4798
- }).tab("content", "Content").richtext("content").titleAttribute("name").build();
4799
- var MEMORY_LIST_VIEW = listView("memory-list", "Memories").for("memory").default().tab("workspace", "Memories").default().icon("table").visibility("workspace").table().columns("name", "kind", "description", "createdAt").sort("name", "asc").tab("mine", "My memories").icon("lock").visibility("private").table().columns("name", "kind", "description", "createdAt").sort("name", "asc").build();
4792
+ var MEMORY_VIEW = markSystemView(
4793
+ detailView("memory-detail", "Memory").for("memory").default().sidePanel({
4794
+ attributes: [
4795
+ "description",
4796
+ "kind",
4797
+ "source",
4798
+ "validFrom",
4799
+ "invalidAt",
4800
+ "supersededBy",
4801
+ "subjects",
4802
+ "links"
4803
+ ]
4804
+ }).tab("content", "Content").richtext("content").titleAttribute("name").build()
4805
+ );
4806
+ var MEMORY_LIST_VIEW = markSystemView(
4807
+ listView("memory-list", "Memories").for("memory").default().tab("workspace", "Memories").default().icon("table").visibility("workspace").table().columns("name", "kind", "description", "createdAt").sort("name", "asc").tab("mine", "My memories").icon("lock").visibility("private").table().columns("name", "kind", "description", "createdAt").sort("name", "asc").build()
4808
+ );
4800
4809
 
4801
4810
  // src/native/drive.object.ts
4802
4811
  var DRIVE_OBJECT_NAME = "drives";
4803
4812
  var DRIVE_OBJECT = object({ name: DRIVE_OBJECT_NAME, label: "Drive" }).sealed().icon("folder").hidden().pluralLabel("Drives").labelExpression("{{ name }}").embeddingExpression("{{ name }}\n{{ description }}").attribute(text({ name: "name", label: "Name" }).required()).attribute(text({ name: "description", label: "Description" }).multiline()).build();
4804
- var DRIVE_VIEW = detailView("drive-detail", "Drive").for(DRIVE_OBJECT_NAME).default().sidePanel({ attributes: ["description"] }).tab("documents", "Documents").documents().build();
4805
- var DRIVE_LIST_VIEW = listView("drive-list", "Drives").for(DRIVE_OBJECT_NAME).default().tab("workspace", "Shared").default().icon("users").visibility("workspace").table().columns("name", "description", "updatedAt").sort("name", "asc").tab("mine", "My drives").icon("lock").visibility("private").table().columns("name", "description", "updatedAt").sort("name", "asc").build();
4813
+ var DRIVE_VIEW = markSystemView(
4814
+ detailView("drive-detail", "Drive").for(DRIVE_OBJECT_NAME).default().sidePanel({ attributes: ["description"] }).tab("documents", "Documents").documents().build()
4815
+ );
4816
+ var DRIVE_LIST_VIEW = markSystemView(
4817
+ listView("drive-list", "Drives").for(DRIVE_OBJECT_NAME).default().tab("workspace", "Shared").default().icon("users").visibility("workspace").table().columns("name", "description", "updatedAt").sort("name", "asc").tab("mine", "My drives").icon("lock").visibility("private").table().columns("name", "description", "updatedAt").sort("name", "asc").build()
4818
+ );
4806
4819
 
4807
4820
  // src/views/registry.ts
4808
4821
  function cloneViewDefinition(view) {
@@ -5281,8 +5294,6 @@ function liveChannelKey(channel) {
5281
5294
  return `record:${encodeURIComponent(channel.objectId)}:${encodeURIComponent(channel.recordId)}`;
5282
5295
  case "view":
5283
5296
  return `view:${encodeURIComponent(channel.viewId)}`;
5284
- case "agent":
5285
- return `agent:${encodeURIComponent(channel.tenantId)}`;
5286
5297
  case "user":
5287
5298
  return `user:${encodeURIComponent(channel.actorId)}`;
5288
5299
  case "conversation":
@@ -5322,10 +5333,6 @@ function parseLiveChannelKey(key) {
5322
5333
  const viewId = decodeLiveChannelPart(parts[1]);
5323
5334
  return viewId ? { kind: "view", viewId } : null;
5324
5335
  }
5325
- if (parts[0] === "agent" && parts.length === 2 && parts[1]) {
5326
- const tenantId = decodeLiveChannelPart(parts[1]);
5327
- return tenantId ? { kind: "agent", tenantId } : null;
5328
- }
5329
5336
  if (parts[0] === "user" && parts.length === 2 && parts[1]) {
5330
5337
  const actorId = decodeLiveChannelPart(parts[1]);
5331
5338
  return actorId ? { kind: "user", actorId } : null;
@@ -5349,12 +5356,10 @@ var LIVE_EVENT_TYPE_REGISTRY = {
5349
5356
  "record.created": true,
5350
5357
  "view.projection.stale": true,
5351
5358
  "agent.session.patch": true,
5352
- "agent.unread.patch": true,
5353
5359
  "notification.created": true,
5354
5360
  "notification.recipient.patch": true,
5355
5361
  "notification.count.patch": true,
5356
5362
  "notification.inbox.archived": true,
5357
- "conversation.renamed": true,
5358
5363
  "reflex.state.changed": true,
5359
5364
  "reflex.run.completed": true,
5360
5365
  "reflex.authoring.progress": true,
@@ -5444,8 +5449,6 @@ function isLiveEventPayloadForType(type, payload) {
5444
5449
  return isViewProjectionStalePayload(payload);
5445
5450
  case "agent.session.patch":
5446
5451
  return isAgentSessionPatchPayload(payload);
5447
- case "agent.unread.patch":
5448
- return isAgentUnreadPatchPayload(payload);
5449
5452
  case "notification.created":
5450
5453
  return isNotificationCreatedPayload(payload);
5451
5454
  case "notification.recipient.patch":
@@ -5454,8 +5457,6 @@ function isLiveEventPayloadForType(type, payload) {
5454
5457
  return isNotificationCountPatchPayload(payload);
5455
5458
  case "notification.inbox.archived":
5456
5459
  return isNotificationInboxArchivedPayload(payload);
5457
- case "conversation.renamed":
5458
- return isConversationRenamedPayload(payload);
5459
5460
  case "reflex.state.changed":
5460
5461
  return isReflexStateChangedPayload(payload);
5461
5462
  case "reflex.run.completed":
@@ -5560,9 +5561,6 @@ function isViewProjectionStalePayload(payload) {
5560
5561
  function isAgentSessionPatchPayload(payload) {
5561
5562
  return payload.type === "agent.session.patch" && hasString(payload, "sessionId") && isRecord2(payload.patch) && hasVersion(payload, "version") && hasString(payload, "updatedAt");
5562
5563
  }
5563
- function isAgentUnreadPatchPayload(payload) {
5564
- return payload.type === "agent.unread.patch" && hasString(payload, "targetActorId") && hasString(payload, "sessionId") && hasVersion(payload, "unreadCount") && hasVersion(payload, "version") && hasString(payload, "updatedAt") && (!Object.hasOwn(payload, "session") || isRecord2(payload.session) && payload.session.id === payload.sessionId);
5565
- }
5566
5564
  function isLiveNotification(value) {
5567
5565
  return isRecord2(value) && hasString(value, "id") && hasString(value, "tenantId") && hasOptional(value, "senderActorId", isString) && hasOptional(value, "rootActorId", isString) && hasOptional(value, "triggeredByActorId", isString) && isNotificationKind(value.kind) && hasString(value, "type") && hasOptional(value, "subject", isNotificationSubject) && hasString(value, "title") && hasOptional(value, "summary", isString) && isRecord2(value.payload) && isNotificationPriority(value.priority) && isNotificationSensitivity(value.sensitivity) && hasOptional(value, "threadKey", isString) && hasOptional(value, "idempotencyKey", isString) && hasOptional(value, "expiresAt", isIsoDateString) && hasIsoDateString(value, "createdAt") && hasIsoDateString(value, "updatedAt");
5568
5566
  }
@@ -5592,9 +5590,6 @@ function isNotificationCountPatchPayload(payload) {
5592
5590
  function isNotificationInboxArchivedPayload(payload) {
5593
5591
  return payload.type === "notification.inbox.archived" && hasOnlyKeys(payload, NOTIFICATION_INBOX_ARCHIVED_PAYLOAD_KEYS) && hasNonEmptyString(payload, "targetActorId") && hasVersion(payload, "archivedCount") && hasVersion(payload, "version") && hasIsoDateString(payload, "updatedAt");
5594
5592
  }
5595
- function isConversationRenamedPayload(payload) {
5596
- return payload.type === "conversation.renamed" && hasString(payload, "sessionId") && hasString(payload, "title") && hasVersion(payload, "version") && hasString(payload, "updatedAt");
5597
- }
5598
5593
  var REFLEX_STATES = ["armed", "disarmed"];
5599
5594
  var REFLEX_AUTHORING_STATUSES = [
5600
5595
  "authoring",
@@ -9310,4 +9305,4 @@ function fromDraftableView(original, drafted) {
9310
9305
  };
9311
9306
  }
9312
9307
 
9313
- export { AGENT_UI_BATCH_MAX_BYTES, AGENT_UI_BATCH_MAX_ITEMS, ALLOWED_PROPERTY_TYPES, ALL_ACTIONS, ALL_OPERATION_TYPES, ALL_SYSTEM_RESOURCES, ATTRIBUTE_TYPES, AUDIT_ACTIONS, AUDIT_RESOURCE_TYPES, ActivityTabConfig, AgentBuilder, BEHAVIOR_PROPERTIES, BYTE_UNIT_LABELS, CLAIMABLE_SESSION_STATUSES, COMPUTED_FUNCTIONS, COMPUTED_FUNCTION_METADATA, COMPUTED_FUNCTION_NAMES, CONNECTOR_CALLBACK_PARAM, COUNT_MODES, ComputedFormulaCompileError, CustomTabConfig, DB_COLUMN_FIELDS, DEFAULT_AGENT_EXECUTION_CONFIG, DEFAULT_APPROVAL_POLICY, DEFAULT_LABEL_FALLBACK, DEFAULT_ROLES, DEFAULT_ROLE_DESCRIPTIONS, DEFAULT_ROLE_LABELS, DEFAULT_ROLE_PERMISSIONS, DOCUMENT_SYSTEM_ATTRIBUTES, DRAFTABLE_ATTRIBUTE_TYPES, DRIVE_LIST_VIEW, DRIVE_OBJECT, DRIVE_OBJECT_NAME, DRIVE_VIEW, DetailViewBuilder, DocumentsTabConfig, EMPTY_VALUE_PLACEHOLDER, ESTIMATED_COUNT_CAP, EmailsTabConfig, FORM_FORBIDDEN_ATTRIBUTE_TYPES, FlagRegistry, FlagService, FormBuilder, FormRegistry, FormRowBuilder, FormStepBuilder, GroupBuilder, IDENTITY_PROPERTIES, LIVE_EVENT_TYPES, ListViewBuilder, ListViewTabConfigBuilder, MAX_PRESET_DEPTH, MAX_TODOS, MAX_TODO_DESCRIPTION_CHARS, MAX_TODO_ID_CHARS, MAX_TODO_RESULT_CHARS, MEMORY_LIST_VIEW, MEMORY_OBJECT, MEMORY_VIEW, MeetingsTabConfig, NATIVE_AGENT_UI_PART_IDS_METADATA_KEY, NATIVE_AGENT_UI_PART_IDS_METADATA_SCHEMA_VERSION, NOTIFICATION_INBOX_STATES, NOTIFICATION_KINDS, NOTIFICATION_PRIORITIES, NOTIFICATION_SENSITIVITIES, NOTIFICATION_TYPES_V1, NOTIFICATION_TYPE_AGENT_QUESTION_REQUESTED, NOTIFICATION_TYPE_AGENT_SESSION_COMPLETED, NOTIFICATION_TYPE_AGENT_SESSION_FAILED, NOTIFICATION_TYPE_AGENT_SESSION_TIMEOUT, NOTIFICATION_TYPE_AGENT_SESSION_WAITING_HUMAN, NOTIFICATION_TYPE_AGENT_TASK_ASSIGNED, NOTIFICATION_WORK_STATES, NoopGeocodingAdapter, OBJECT_NAME_SCHEMA, OPEN_TOOL_PART_STATES, OPERATION_REGISTRY, OPERATOR_SPECS, ObjectBuilder, PRESENTATION_PROPERTIES, QUALIFIED_SEPARATOR, RECORD_CREATOR_ROOT_ACTOR_METADATA_KEY, RELATION_TARGET_ANY, RichtextTabConfig, SCHEMA_PLAN_LIMITS, SESSION_TERMINAL_STATUSES, SKILL_LIST_VIEW, SKILL_OBJECT, SKILL_VIEW, STANDARD_SCHEMA_VENDOR, SYSTEM_RESOURCES, SYSTEM_RESOURCE_LABELS, TODAY_DEFAULT, TODO_PLAN_STATUSES, TODO_STATUSES, TOOL_APPROVAL_STATES, TabBuilder, TableTabConfig, UPDATE_TABLE_TAB_CHANGE_KEYS, UPDATE_TAB_CHANGE_KEYS, UPDATE_TAB_CONFIG_CHANGE_KEYS, USER_STATUSES, USER_WORK_POSTURES, accessLevelToActions, actionsToAccessLevel, agent, agentDataChunk, agentDisplayName, agentMessageAttachmentSchema, agentMessagePartSchema, agentSessionMessageSchema, agentUIValidationError, applyOperations, applyPipes, applyRelationProps, assertAcyclicComputedDependencies, assertCustomAgentUIMessageChunk, booleanFlag, buildAgentFallbackTitle, buildPermissionFlags, buildPropertySchema, buildQualifiedAttribute, checkbox, compareAgentSessionMessages, compileComputedFormula, compileRollupAttribute, computeByteMagnitude, conversationDisplayTitle, createFlagRegistry, createFlagService, createStandardSchemaProps, currency, customDataChunkSchemas, date, dateInTimezone, dateValueStart, defineOperation, definePresentation, deriveArchitectChanges, deriveInitials, describeAttributeConfig, describeOperationInput, describeOperations, destructiveSchema, detailView, document, durableDateSchema, ensureFieldIds, episodeImpactOf, evaluateComputedAst, evaluateComputedFormula, evaluateComputedFormulaWithResult, evaluateFilterState, evaluateRecordFilterState, extractAttributeNames, extractValueRefs, flagRegistry, focusOf, form, formFieldFlatKey, formFieldKey, formRegistry, formatAttributeValue, formatByteSize, formatComputedResult, formatLocationValue, formula, fromDraftableView, generateDefaultDetailView, generateDefaultListView, getActiveTab, getErrorMessage, getLiveProtocolPayloadChannel, getRecordCreatorPrincipalId, getSlotFieldTargets, getUserDisplayName, group, hasDestructiveEntries, hasOptions, includesAction, inferInverseCardinality, inferRollupReturnType, isAgentUIDataName, isAgentUIMessageBatch, isAttributeSortable2 as isAttributeSortable, isBilateralRelation, isCheckboxEquality, isClaimableSessionStatus, isComputedFunctionName, isDateRangeValue, isDefaultRole, isDetailView, isDocumentAttribute, isEmptyObject, isFieldGroup, isFormDefinition, isFormFieldsRow, isFormFreeFieldRef, isFormHeadingRow, isFormSeparatorRow, isFormSlotFieldRef, isFormTextRow, isLabelExpression, isListView, isLiveEventEnvelope, isLiveEventPayload, isLiveEventPayloadForType, isLiveEventType, isNotEmpty, isOpenToolPartState, isPlainRecord2 as isPlainRecord, isStandardSchema, isTerminalSessionStatus, isTerminalState, isToolApprovalState, isUniversalRelation, jsonFlag, legacyStatusToSessionState, listDescribableNames, listView, liveChannelKey, location, makeFieldId, matchesAccepts, mentionReferenceSchema, modelDefinitionSchema, multiselect, nativeAgentUIPartIdMetadataKey, normalizeDateValue, number, numberFlag, object, orderAgentSessionMessages, parseCountMode, parseLiveChannelKey, parseNativeAgentUIPartIdsMetadata, parseOperation, parseOptionalCountMode, parseQualifiedAttribute, persistedDefaultViewTargetSchema, persistedSchemaPlanSchema, phone, plannedAttributeSchema, plannedInlineAttributeSchema, plannedObjectSchema, presentationOf, proposedDefaultViewTargetSchema, qualifiedPropertyDefs, readFormFieldValue, registry, relation, relationPropertyDefs, renderLabelExpression, resetViewToDefault, resolveAttributeDefaultValue, resolveFieldRequired, resolvePropertyDefinitions, richtext, rollup, rollupToFormulaExpression, schemaPlanSchema, select, sessionStateToLegacyStatus, status, stringFlag, text, toDraftableAttributes, toDraftableObject, toDraftableView, toUndefinedIfEmpty, todoItemSchema, todoPlanSchema, toolImpactSchema, user, validateAttributeName, validateLabelExpression, validateObjectName, validateViewName, viewRegistry, viewStateKey, viewSyncPayload };
9308
+ export { AGENT_UI_BATCH_MAX_BYTES, AGENT_UI_BATCH_MAX_ITEMS, ALLOWED_PROPERTY_TYPES, ALL_ACTIONS, ALL_OPERATION_TYPES, ALL_SYSTEM_RESOURCES, ATTRIBUTE_TYPES, AUDIT_ACTIONS, AUDIT_RESOURCE_TYPES, ActivityTabConfig, AgentBuilder, BEHAVIOR_PROPERTIES, BYTE_UNIT_LABELS, CLAIMABLE_SESSION_STATUSES, COMPUTED_FUNCTIONS, COMPUTED_FUNCTION_METADATA, COMPUTED_FUNCTION_NAMES, CONNECTOR_CALLBACK_PARAM, COUNT_MODES, ComputedFormulaCompileError, CustomTabConfig, DB_COLUMN_FIELDS, DEFAULT_AGENT_EXECUTION_CONFIG, DEFAULT_APPROVAL_POLICY, DEFAULT_LABEL_FALLBACK, DEFAULT_ROLES, DEFAULT_ROLE_DESCRIPTIONS, DEFAULT_ROLE_LABELS, DEFAULT_ROLE_PERMISSIONS, DOCUMENT_SYSTEM_ATTRIBUTES, DRAFTABLE_ATTRIBUTE_TYPES, DRIVE_LIST_VIEW, DRIVE_OBJECT, DRIVE_OBJECT_NAME, DRIVE_VIEW, DetailViewBuilder, DocumentsTabConfig, EMPTY_VALUE_PLACEHOLDER, ESTIMATED_COUNT_CAP, EmailsTabConfig, FORM_FORBIDDEN_ATTRIBUTE_TYPES, FlagRegistry, FlagService, FormBuilder, FormRegistry, FormRowBuilder, FormStepBuilder, GroupBuilder, IDENTITY_PROPERTIES, LIVE_EVENT_TYPES, ListViewBuilder, ListViewTabConfigBuilder, MAX_PRESET_DEPTH, MAX_TODOS, MAX_TODO_DESCRIPTION_CHARS, MAX_TODO_ID_CHARS, MAX_TODO_RESULT_CHARS, MEMORY_LIST_VIEW, MEMORY_OBJECT, MEMORY_VIEW, MeetingsTabConfig, NATIVE_AGENT_UI_PART_IDS_METADATA_KEY, NATIVE_AGENT_UI_PART_IDS_METADATA_SCHEMA_VERSION, NOTIFICATION_INBOX_STATES, NOTIFICATION_KINDS, NOTIFICATION_PRIORITIES, NOTIFICATION_SENSITIVITIES, NOTIFICATION_TYPES_V1, NOTIFICATION_TYPE_AGENT_QUESTION_REQUESTED, NOTIFICATION_TYPE_AGENT_SESSION_WAITING_HUMAN, NOTIFICATION_TYPE_AGENT_TASK_ASSIGNED, NOTIFICATION_WORK_STATES, NoopGeocodingAdapter, OBJECT_NAME_SCHEMA, OPEN_TOOL_PART_STATES, OPERATION_REGISTRY, OPERATOR_SPECS, ObjectBuilder, PRESENTATION_PROPERTIES, QUALIFIED_SEPARATOR, RECORD_CREATOR_ROOT_ACTOR_METADATA_KEY, RELATION_TARGET_ANY, RichtextTabConfig, SCHEMA_PLAN_LIMITS, SESSION_TERMINAL_STATUSES, SKILL_LIST_VIEW, SKILL_OBJECT, SKILL_VIEW, STANDARD_SCHEMA_VENDOR, SYSTEM_RESOURCES, SYSTEM_RESOURCE_LABELS, TODAY_DEFAULT, TODO_PLAN_STATUSES, TODO_STATUSES, TOOL_APPROVAL_STATES, TabBuilder, TableTabConfig, UPDATE_TABLE_TAB_CHANGE_KEYS, UPDATE_TAB_CHANGE_KEYS, UPDATE_TAB_CONFIG_CHANGE_KEYS, USER_STATUSES, USER_WORK_POSTURES, accessLevelToActions, actionsToAccessLevel, agent, agentDataChunk, agentDisplayName, agentMessageAttachmentSchema, agentMessagePartSchema, agentSessionMessageSchema, agentUIValidationError, applyOperations, applyPipes, applyRelationProps, assertAcyclicComputedDependencies, assertCustomAgentUIMessageChunk, booleanFlag, buildAgentFallbackTitle, buildPermissionFlags, buildPropertySchema, buildQualifiedAttribute, checkbox, compareAgentSessionMessages, compileComputedFormula, compileRollupAttribute, computeByteMagnitude, conversationDisplayTitle, createFlagRegistry, createFlagService, createStandardSchemaProps, currency, customDataChunkSchemas, date, dateInTimezone, dateValueStart, defineOperation, definePresentation, deriveArchitectChanges, deriveInitials, describeAttributeConfig, describeOperationInput, describeOperations, destructiveSchema, detailView, document, durableDateSchema, ensureFieldIds, episodeImpactOf, evaluateComputedAst, evaluateComputedFormula, evaluateComputedFormulaWithResult, evaluateFilterState, evaluateRecordFilterState, extractAttributeNames, extractValueRefs, flagRegistry, focusOf, form, formFieldFlatKey, formFieldKey, formRegistry, formatAttributeValue, formatByteSize, formatComputedResult, formatLocationValue, formula, fromDraftableView, generateDefaultDetailView, generateDefaultListView, getActiveTab, getErrorMessage, getLiveProtocolPayloadChannel, getRecordCreatorPrincipalId, getSlotFieldTargets, getUserDisplayName, group, hasDestructiveEntries, hasOptions, includesAction, inferInverseCardinality, inferRollupReturnType, isAgentUIDataName, isAgentUIMessageBatch, isAttributeSortable2 as isAttributeSortable, isBilateralRelation, isCheckboxEquality, isClaimableSessionStatus, isComputedFunctionName, isDateRangeValue, isDefaultRole, isDetailView, isDocumentAttribute, isEmptyObject, isFieldGroup, isFormDefinition, isFormFieldsRow, isFormFreeFieldRef, isFormHeadingRow, isFormSeparatorRow, isFormSlotFieldRef, isFormTextRow, isLabelExpression, isListView, isLiveEventEnvelope, isLiveEventPayload, isLiveEventPayloadForType, isLiveEventType, isNotEmpty, isOpenToolPartState, isPlainRecord2 as isPlainRecord, isStandardSchema, isTerminalSessionStatus, isTerminalState, isToolApprovalState, isUniversalRelation, jsonFlag, legacyStatusToSessionState, listDescribableNames, listView, liveChannelKey, location, makeFieldId, matchesAccepts, mentionReferenceSchema, modelDefinitionSchema, multiselect, nativeAgentUIPartIdMetadataKey, normalizeDateValue, number, numberFlag, object, orderAgentSessionMessages, parseCountMode, parseLiveChannelKey, parseNativeAgentUIPartIdsMetadata, parseOperation, parseOptionalCountMode, parseQualifiedAttribute, persistedDefaultViewTargetSchema, persistedSchemaPlanSchema, phone, plannedAttributeSchema, plannedInlineAttributeSchema, plannedObjectSchema, presentationOf, proposedDefaultViewTargetSchema, qualifiedPropertyDefs, readFormFieldValue, registry, relation, relationPropertyDefs, renderLabelExpression, resetViewToDefault, resolveAttributeDefaultValue, resolveFieldRequired, resolvePropertyDefinitions, richtext, rollup, rollupToFormulaExpression, schemaPlanSchema, select, sessionStateToLegacyStatus, status, stringFlag, text, toDraftableAttributes, toDraftableObject, toDraftableView, toUndefinedIfEmpty, todoItemSchema, todoPlanSchema, toolImpactSchema, user, validateAttributeName, validateLabelExpression, validateObjectName, validateViewName, viewRegistry, viewStateKey, viewSyncPayload };
@@ -1,7 +1,7 @@
1
1
  export { V as ValidationMessages } from '../types-CVYiFc69.mjs';
2
2
  export { DEFAULT_VALIDATION_MESSAGES, formatZodErrors } from './core/index.mjs';
3
- export { ab as multiselectOptionWriteSchema, ac as parseAttributeConfig, ad as parseAttributeConfigForCreate, ae as parseAttributeConfigForUpdate, af as selectOptionWriteSchema, ag as statusGroupSchema, ah as statusOptionWriteSchema } from '../index-C7_ZT65X.mjs';
4
- export { S as SCHEMA_LIMITS, c as colorIdSchema, e as detailTabSchema, f as detailViewConfigSchema, m as iconNameSchema, n as inverseSourceSchema, o as listViewConfigSchema, p as listViewTabSchema, q as parseViewConfig, r as relationSourceSchema, t as tableSourceSchema, v as viewConfigByTypeSchema } from '../all-BDG25wTM.mjs';
3
+ export { ab as multiselectOptionWriteSchema, ac as parseAttributeConfig, ad as parseAttributeConfigForCreate, ae as parseAttributeConfigForUpdate, af as selectOptionWriteSchema, ag as statusGroupSchema, ah as statusOptionWriteSchema } from '../index-Eh1tYq3i.mjs';
4
+ export { S as SCHEMA_LIMITS, c as colorIdSchema, e as detailTabSchema, f as detailViewConfigSchema, m as iconNameSchema, n as inverseSourceSchema, o as listViewConfigSchema, p as listViewTabSchema, q as parseViewConfig, r as relationSourceSchema, t as tableSourceSchema, v as viewConfigByTypeSchema } from '../all-DaucFjyz.mjs';
5
5
  export { a as createFormAttributeValidator, r as rejectUnknownAttributesOrThrow, b as validateDraft, d as validateDraftOrThrow, e as validateObject, f as validateObjectOrThrow } from '../helpers-Dul_r9rJ.mjs';
6
6
  import '../attributes-CWPLbp7c.mjs';
7
7
  import '@stndrds/constants';
@@ -1,7 +1,7 @@
1
1
  export { V as ValidationMessages } from '../types-NGEww_ln.js';
2
2
  export { DEFAULT_VALIDATION_MESSAGES, formatZodErrors } from './core/index.js';
3
- export { ab as multiselectOptionWriteSchema, ac as parseAttributeConfig, ad as parseAttributeConfigForCreate, ae as parseAttributeConfigForUpdate, af as selectOptionWriteSchema, ag as statusGroupSchema, ah as statusOptionWriteSchema } from '../index-Bxvq1S3B.js';
4
- export { S as SCHEMA_LIMITS, c as colorIdSchema, e as detailTabSchema, f as detailViewConfigSchema, m as iconNameSchema, n as inverseSourceSchema, o as listViewConfigSchema, p as listViewTabSchema, q as parseViewConfig, r as relationSourceSchema, t as tableSourceSchema, v as viewConfigByTypeSchema } from '../all-CDYgKdXW.js';
3
+ export { ab as multiselectOptionWriteSchema, ac as parseAttributeConfig, ad as parseAttributeConfigForCreate, ae as parseAttributeConfigForUpdate, af as selectOptionWriteSchema, ag as statusGroupSchema, ah as statusOptionWriteSchema } from '../index-0VG9u1XW.js';
4
+ export { S as SCHEMA_LIMITS, c as colorIdSchema, e as detailTabSchema, f as detailViewConfigSchema, m as iconNameSchema, n as inverseSourceSchema, o as listViewConfigSchema, p as listViewTabSchema, q as parseViewConfig, r as relationSourceSchema, t as tableSourceSchema, v as viewConfigByTypeSchema } from '../all-FGIrc6mI.js';
5
5
  export { a as createFormAttributeValidator, r as rejectUnknownAttributesOrThrow, b as validateDraft, d as validateDraftOrThrow, e as validateObject, f as validateObjectOrThrow } from '../helpers-CXkVwpsl.js';
6
6
  import '../attributes-CNYwg_Nr.js';
7
7
  import '@stndrds/constants';
@@ -1,4 +1,4 @@
1
- export { ai as attributeConfigSchemas, aj as getAttributeConfigSchema, ak as getAttributeConfigWriteSchema, ab as multiselectOptionWriteSchema, ac as parseAttributeConfig, ad as parseAttributeConfigForCreate, ae as parseAttributeConfigForUpdate, af as selectOptionWriteSchema, ag as statusGroupSchema, ah as statusOptionWriteSchema } from '../../index-C7_ZT65X.mjs';
1
+ export { ai as attributeConfigSchemas, aj as getAttributeConfigSchema, ak as getAttributeConfigWriteSchema, ab as multiselectOptionWriteSchema, ac as parseAttributeConfig, ad as parseAttributeConfigForCreate, ae as parseAttributeConfigForUpdate, af as selectOptionWriteSchema, ag as statusGroupSchema, ah as statusOptionWriteSchema } from '../../index-Eh1tYq3i.mjs';
2
2
  import 'zod';
3
3
  import '../../attributes-CWPLbp7c.mjs';
4
4
  import '@stndrds/constants';
@@ -1,4 +1,4 @@
1
- export { ai as attributeConfigSchemas, aj as getAttributeConfigSchema, ak as getAttributeConfigWriteSchema, ab as multiselectOptionWriteSchema, ac as parseAttributeConfig, ad as parseAttributeConfigForCreate, ae as parseAttributeConfigForUpdate, af as selectOptionWriteSchema, ag as statusGroupSchema, ah as statusOptionWriteSchema } from '../../index-Bxvq1S3B.js';
1
+ export { ai as attributeConfigSchemas, aj as getAttributeConfigSchema, ak as getAttributeConfigWriteSchema, ab as multiselectOptionWriteSchema, ac as parseAttributeConfig, ad as parseAttributeConfigForCreate, ae as parseAttributeConfigForUpdate, af as selectOptionWriteSchema, ag as statusGroupSchema, ah as statusOptionWriteSchema } from '../../index-0VG9u1XW.js';
2
2
  import 'zod';
3
3
  import '../../attributes-CNYwg_Nr.js';
4
4
  import '@stndrds/constants';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/schema",
3
- "version": "1.0.0-alpha.286",
3
+ "version": "1.0.0-alpha.287",
4
4
  "description": "Standard schema definitions and utilities",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -125,7 +125,7 @@
125
125
  "@standard-schema/spec": "^1.1.0",
126
126
  "libphonenumber-js": "^1.12.31",
127
127
  "zod": "^4.2.1",
128
- "@stndrds/constants": "1.0.0-alpha.286"
128
+ "@stndrds/constants": "1.0.0-alpha.287"
129
129
  },
130
130
  "devDependencies": {
131
131
  "@types/node": "^25.0.3",