@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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +33 -3
- package/dist/index.d.ts +33 -3
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/AgentWebAppStoreProtocol.ts +10 -0
- package/src/ProjectRoomMessageStoreProtocol.ts +10 -0
- package/src/WorkspaceStoreProtocol.ts +15 -2
- package/src/__tests__/agent-web-app-types.test.ts +18 -5
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,
|