@axiom-lattice/protocols 4.2.2 → 4.3.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.
package/dist/index.mjs CHANGED
@@ -127,6 +127,10 @@ var McpMessageType = /* @__PURE__ */ ((McpMessageType2) => {
127
127
  })(McpMessageType || {});
128
128
 
129
129
  // src/WorkspaceStoreProtocol.ts
130
+ var WORKSPACE_PUBLIC_ROOM_PROJECT_PREFIX = "workspace_public_";
131
+ function isWorkspacePublicRoomProjectId(projectId) {
132
+ return projectId.startsWith(WORKSPACE_PUBLIC_ROOM_PROJECT_PREFIX);
133
+ }
130
134
  var InvalidProjectCapabilityBundleConfigError = class extends Error {
131
135
  /** Creates the reserved-config error returned by generic Project writes. */
132
136
  constructor() {
@@ -917,6 +921,7 @@ export {
917
921
  ScheduleType,
918
922
  ScheduledTaskStatus,
919
923
  UIComponentType,
924
+ WORKSPACE_PUBLIC_ROOM_PROJECT_PREFIX,
920
925
  assertGenericProjectConfig,
921
926
  createAgentWebAppStreamProjectionContext,
922
927
  descriptorDataValue,
@@ -931,6 +936,7 @@ export {
931
936
  isProjectRoomEventId,
932
937
  isTeamAgentConfig,
933
938
  isWorkflowAgentConfig,
939
+ isWorkspacePublicRoomProjectId,
934
940
  parseAgentWebAppGenUIBlock,
935
941
  parseProjectRoomEventId,
936
942
  parseQueuedExecutionMode,