@noodleseed/one 0.139.3 → 0.139.4

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noodle-borg/agent-kit",
3
- "version": "0.84.0",
3
+ "version": "0.84.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "engines": {
@@ -0,0 +1,7 @@
1
+ import type { ControlPlaneIdentity, OrganizationStore, OrgRecord } from './contracts.js';
2
+ export interface PersonalWorkspace {
3
+ readonly org: OrgRecord;
4
+ readonly created: boolean;
5
+ }
6
+ export declare function ensurePersonalWorkspace(controlPlane: Pick<OrganizationStore, 'provisionPersonalWorkspace'>, identity: ControlPlaneIdentity): Promise<PersonalWorkspace>;
7
+ //# sourceMappingURL=personal-workspace.d.ts.map
@@ -1,5 +1,4 @@
1
- import { personalOrgSlug } from '@noodle-borg/control-plane/portable';
2
- export { personalOrgSlug, personalOrgSlugSuffix } from '@noodle-borg/control-plane/portable';
1
+ import { personalOrgSlug } from './organization-helpers.js';
3
2
  export async function ensurePersonalWorkspace(controlPlane, identity) {
4
3
  const slug = personalOrgSlug(identity);
5
4
  return controlPlane.provisionPersonalWorkspace({
@@ -4,6 +4,7 @@ export { InMemoryControlPlaneStore } from './in-memory-control-plane-store.js';
4
4
  export { bindInMemoryOrganizationStore, type InMemoryOrganizationOperations, InMemoryOrganizationStore, } from './in-memory-organization-store.js';
5
5
  export { InMemoryMcpSubdomainClaimStore, McpSubdomainCooldownError, McpSubdomainIdempotencyConflictError, McpSubdomainOwnerRequiredError, type McpSubdomainRouteRef, McpSubdomainUnavailableError, mcpSubdomainEndpointOptions, type ResolvedMcpTenantRef, resolveMcpSubdomainTenant, } from './mcp-subdomain-claims.js';
6
6
  export { domainFromEmail, domainKey, memberKey, normalizeSignupAllowlistValue, personalOrgSlug, personalOrgSlugSuffix, signupKey, } from './organization-helpers.js';
7
+ export { ensurePersonalWorkspace } from './personal-workspace.js';
7
8
  export { type RollbackControlPlane, type RollbackOperationDependencies, type RollbackOperationInput, type RollbackOperationResult, type RollbackRegistry, rollbackDeploymentOperation, } from './rollback-deployment.js';
8
9
  export type { RollbackResult } from './rollback-result.js';
9
10
  export { DOMAIN_PATTERN, isSystemOwnedOrgSlug, OPENAI_APPS_CHALLENGE_MAX_LENGTH, SLUG_PATTERN, validateDomain, validateMcpSubdomain, validateOpenAIAppsChallenge, validateOrgMembershipDomain, validateOrgRole, validateSignupAllowlistKind, validateSlug, validateUserOwnedOrgSlug, } from './validation.js';
@@ -3,6 +3,7 @@ export { InMemoryControlPlaneStore } from './in-memory-control-plane-store.js';
3
3
  export { bindInMemoryOrganizationStore, InMemoryOrganizationStore, } from './in-memory-organization-store.js';
4
4
  export { InMemoryMcpSubdomainClaimStore, McpSubdomainCooldownError, McpSubdomainIdempotencyConflictError, McpSubdomainOwnerRequiredError, McpSubdomainUnavailableError, mcpSubdomainEndpointOptions, resolveMcpSubdomainTenant, } from './mcp-subdomain-claims.js';
5
5
  export { domainFromEmail, domainKey, memberKey, normalizeSignupAllowlistValue, personalOrgSlug, personalOrgSlugSuffix, signupKey, } from './organization-helpers.js';
6
+ export { ensurePersonalWorkspace } from './personal-workspace.js';
6
7
  export { rollbackDeploymentOperation, } from './rollback-deployment.js';
7
8
  export { DOMAIN_PATTERN, isSystemOwnedOrgSlug, OPENAI_APPS_CHALLENGE_MAX_LENGTH, SLUG_PATTERN, validateDomain, validateMcpSubdomain, validateOpenAIAppsChallenge, validateOrgMembershipDomain, validateOrgRole, validateSignupAllowlistKind, validateSlug, validateUserOwnedOrgSlug, } from './validation.js';
8
9
  //# sourceMappingURL=portable.js.map
@@ -1,4 +1,5 @@
1
1
  import { cspFaultsInManifest } from '@noodle-borg/compiler';
2
+ import { ensurePersonalWorkspace } from '@noodle-borg/control-plane/portable';
2
3
  import { DEVELOPER_CLI_PATH } from '@noodle-borg/developer-mcp';
3
4
  import { normalizeServerVersion } from '@noodle-borg/module';
4
5
  import { noopLogger } from '@noodle-borg/transport-http';
@@ -6,7 +7,6 @@ import { deployRequestSchema, formatWireError, } from '@noodle-borg/wire-contrac
6
7
  import { authorizeDeveloperGrant, } from '../auth/developer-grant-guard.js';
7
8
  import { baseFromRequest, readDeployBody, sendForbidden, sendJson, sendUnauthorized, } from '../http-util.js';
8
9
  import { endpointUrlOptionsForOrg } from '../mcp-public-routing.js';
9
- import { ensurePersonalWorkspace } from '../personal-workspace.js';
10
10
  import { manifestUsesUserRoot } from '../registry-access.js';
11
11
  import { isIdentityAccessMode } from './access-mode.js';
12
12
  import { validateDeployIdempotency } from './deploy-idempotency.js';
@@ -39,7 +39,7 @@
39
39
  "dependencies": {
40
40
  "@modelcontextprotocol/sdk": "^1.29.0",
41
41
  "@noodle-borg/admission-limits": "0.0.0",
42
- "@noodle-borg/agent-kit": "0.84.0",
42
+ "@noodle-borg/agent-kit": "0.84.1",
43
43
  "@noodle-borg/app-package": "0.0.0",
44
44
  "@noodle-borg/assistant-gateway": "0.0.0",
45
45
  "@noodle-borg/auth": "0.0.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noodleseed/one",
3
- "version": "0.139.3",
3
+ "version": "0.139.4",
4
4
  "private": false,
5
5
  "description": "Noodle CLI by Noodle Seed — author, run, and deploy declarative MCP servers. Embedding the assistant in your own web app is @noodleseed/assistant.",
6
6
  "license": "Apache-2.0",
@@ -236,7 +236,7 @@
236
236
  "@modelcontextprotocol/client": "2.0.0",
237
237
  "@modelcontextprotocol/server": "2.0.0",
238
238
  "@noodle-borg/admission-limits": "0.0.0",
239
- "@noodle-borg/agent-kit": "0.84.0",
239
+ "@noodle-borg/agent-kit": "0.84.1",
240
240
  "@noodle-borg/app-audit": "0.0.0",
241
241
  "@noodle-borg/app-package": "0.0.0",
242
242
  "@noodle-borg/assistant-gateway": "0.0.0",