@opengeni/contracts 3.0.0-canary.0 → 3.0.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.
@@ -4,7 +4,7 @@ import {
4
4
  SessionTenancyVisibility,
5
5
  UserResourceAuthorityGrant,
6
6
  UserResourceDelegation
7
- } from "./chunk-OO4AEMQB.js";
7
+ } from "./chunk-EHHDZLGY.js";
8
8
 
9
9
  // src/connection-authority.ts
10
10
  import { z } from "zod";
@@ -345,4 +345,4 @@ export {
345
345
  ConnectionUseAuditFact,
346
346
  ConnectionUseAuthorizationResult
347
347
  };
348
- //# sourceMappingURL=chunk-SSWEWU3V.js.map
348
+ //# sourceMappingURL=chunk-IRR7CBBW.js.map
package/dist/connect.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  IntegrationInstanceKey,
3
3
  IntegrationSource
4
- } from "./chunk-OO4AEMQB.js";
4
+ } from "./chunk-EHHDZLGY.js";
5
5
  import "./chunk-YBW5JSA3.js";
6
6
  import "./chunk-O5LEQHDM.js";
7
7
  import "./chunk-GRG7PHWQ.js";
@@ -16,8 +16,8 @@ import {
16
16
  ListConnectionAuthoritiesQuery,
17
17
  ListConnectionAuthoritiesResponse,
18
18
  RevokeConnectionUseGrantQuery
19
- } from "./chunk-SSWEWU3V.js";
20
- import "./chunk-OO4AEMQB.js";
19
+ } from "./chunk-IRR7CBBW.js";
20
+ import "./chunk-EHHDZLGY.js";
21
21
  import "./chunk-YBW5JSA3.js";
22
22
  import "./chunk-O5LEQHDM.js";
23
23
  import "./chunk-GRG7PHWQ.js";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  ConnectionMetadata
3
- } from "./chunk-OO4AEMQB.js";
3
+ } from "./chunk-EHHDZLGY.js";
4
4
  import "./chunk-YBW5JSA3.js";
5
5
  import "./chunk-O5LEQHDM.js";
6
6
  import "./chunk-GRG7PHWQ.js";
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  ConnectionUseAuthoritySnapshot,
3
3
  IssueConnectionUseGrantRequest
4
- } from "./chunk-SSWEWU3V.js";
4
+ } from "./chunk-IRR7CBBW.js";
5
5
  import {
6
6
  HostMcpCreateSelections,
7
7
  McpServerConnectionRef,
8
8
  SessionTenancyVisibility
9
- } from "./chunk-OO4AEMQB.js";
9
+ } from "./chunk-EHHDZLGY.js";
10
10
  import "./chunk-YBW5JSA3.js";
11
11
  import "./chunk-O5LEQHDM.js";
12
12
  import "./chunk-GRG7PHWQ.js";
package/dist/index.js CHANGED
@@ -1864,7 +1864,7 @@ import {
1864
1864
  workspaceLearningPolicyRouterContext,
1865
1865
  workspaceLearningSourceKey,
1866
1866
  workspaceSlackReactionChannelAllowed
1867
- } from "./chunk-OO4AEMQB.js";
1867
+ } from "./chunk-EHHDZLGY.js";
1868
1868
  import {
1869
1869
  CONNECTOR_ATTACHMENT_FILENAME_MAX_UTF8_BYTES,
1870
1870
  CONNECTOR_ATTACHMENT_MAX_BYTES,
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  ConnectionMetadata
3
- } from "./chunk-OO4AEMQB.js";
3
+ } from "./chunk-EHHDZLGY.js";
4
4
  import "./chunk-YBW5JSA3.js";
5
5
  import "./chunk-O5LEQHDM.js";
6
6
  import "./chunk-GRG7PHWQ.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeni/contracts",
3
- "version": "3.0.0-canary.0",
3
+ "version": "3.0.1",
4
4
  "description": "Shared zod schemas and wire-contract types for the OpenGeni API.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
package/src/index.ts CHANGED
@@ -6803,7 +6803,10 @@ export const SessionAuthorizationActor = z.discriminatedUnion("kind", [
6803
6803
  /** Frozen authority that admitted the calling turn. */
6804
6804
  initiator: TurnInitiator,
6805
6805
  initiatorContext: TurnInitiatorContext,
6806
- /** Durable causal human for delegated/service work; null for pure service work. */
6806
+ /**
6807
+ * Durable causal-human selector for named human-bound capabilities. It never
6808
+ * authorizes by itself and is null for pure service work.
6809
+ */
6807
6810
  initiatingHumanSubjectId: z.string().min(1).max(1024).nullable(),
6808
6811
  }),
6809
6812
  ]);