@opengeni/core 2.6.4 → 2.7.5-canary.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/access/index.d.ts +10 -0
- package/dist/application/api-integration-servers.d.ts +20 -0
- package/dist/billing/limits.d.ts +5 -0
- package/dist/dependencies.d.ts +12 -1
- package/dist/domain/host-mcp-authority-source-admission.d.ts +10 -0
- package/dist/domain/packs.d.ts +1 -0
- package/dist/domain/pr-review.d.ts +1 -1
- package/dist/domain/product-integration-pack.d.ts +50 -0
- package/dist/domain/sessions.d.ts +25 -11
- package/dist/index.d.ts +4 -0
- package/dist/index.js +2360 -687
- package/dist/index.js.map +1 -1
- package/dist/model-catalog.d.ts +105 -0
- package/dist/sandbox/fleet.d.ts +19 -0
- package/package.json +12 -10
- package/src/access/index.ts +25 -0
- package/src/application/api-integration-servers.ts +215 -0
- package/src/application/session-commands.ts +2 -2
- package/src/billing/limits.ts +52 -22
- package/src/dependencies.ts +17 -1
- package/src/domain/capabilities.ts +19 -3
- package/src/domain/host-mcp-authority-source-admission.ts +25 -0
- package/src/domain/insights.ts +32 -0
- package/src/domain/packs.ts +48 -18
- package/src/domain/personal-connection-delegations.ts +14 -6
- package/src/domain/product-integration-pack.ts +494 -0
- package/src/domain/scheduled-tasks.ts +43 -1
- package/src/domain/sessions.ts +964 -386
- package/src/index.ts +4 -0
- package/src/model-catalog.ts +742 -0
- package/src/sandbox/fleet.ts +85 -23
- package/src/sandbox/routing.ts +6 -9
package/src/index.ts
CHANGED
|
@@ -49,6 +49,7 @@ export {
|
|
|
49
49
|
type ManagedAuthActorMutationLeaseStamp,
|
|
50
50
|
} from "./managed-session";
|
|
51
51
|
export * from "./transcription";
|
|
52
|
+
export * from "./model-catalog";
|
|
52
53
|
|
|
53
54
|
// Sandbox fleet/routing service — the closure of `domain/sessions.ts`
|
|
54
55
|
// (`swapActiveSandbox` + `FleetContext`). apps/api re-imports these for its MCP
|
|
@@ -68,12 +69,14 @@ export * from "./billing/limits";
|
|
|
68
69
|
// postUserMessageTurn, createAndStartSession, capability/pack/environment/
|
|
69
70
|
// scheduled-task/workspace-member logic, …).
|
|
70
71
|
export * from "./domain/capabilities";
|
|
72
|
+
export * from "./domain/host-mcp-authority-source-admission";
|
|
71
73
|
export * from "./domain/skill-imports";
|
|
72
74
|
export * from "./domain/environments";
|
|
73
75
|
export * from "./rigs";
|
|
74
76
|
export * from "./domain/packs";
|
|
75
77
|
export * from "./domain/automations";
|
|
76
78
|
export * from "./domain/pr-review";
|
|
79
|
+
export * from "./domain/product-integration-pack";
|
|
77
80
|
export * from "./domain/personal-connection-delegations";
|
|
78
81
|
export * from "./domain/resources";
|
|
79
82
|
export * from "./domain/github-repository-bindings";
|
|
@@ -103,6 +106,7 @@ export * from "./application/composer-submit";
|
|
|
103
106
|
export * from "./application/session-commands";
|
|
104
107
|
export * from "./application/session-tenancy";
|
|
105
108
|
export * from "./application/user-resource-grants";
|
|
109
|
+
export * from "./application/api-integration-servers";
|
|
106
110
|
|
|
107
111
|
// Durable editable-artifact live broker, ticket, ports, and projection types.
|
|
108
112
|
export * from "./editable-artifact-live";
|