@opengeni/db 4.3.3-canary.3 → 4.4.0-canary.1
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 +1 -0
- package/dist/index.js.map +1 -1
- package/dist/schema.d.ts +4 -4
- package/dist/session-mcp-credential-rotation.d.ts +28 -0
- package/dist/session-mcp-credential-rotation.js +185 -0
- package/dist/session-mcp-credential-rotation.js.map +1 -0
- package/dist/workspace-artifacts.d.ts +1 -0
- package/package.json +10 -6
- package/src/session-mcp-credential-rotation.ts +249 -0
- package/src/workspace-artifacts.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -35266,6 +35266,7 @@ async function getWorkspaceArtifactContentRef(db, workspaceId, artifactId, versi
|
|
|
35266
35266
|
if (!version) throw new WorkspaceArtifactNotFoundError("Artifact version not found");
|
|
35267
35267
|
return {
|
|
35268
35268
|
artifactId,
|
|
35269
|
+
status: artifact.status,
|
|
35269
35270
|
version: versionFromRow2(version),
|
|
35270
35271
|
contentKey: version.contentKey,
|
|
35271
35272
|
sourceKey: version.sourceKey
|