@consciousclouds/admin-sdk 0.1.2 → 0.1.3

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,5 +1,5 @@
1
1
  /**
2
- * The body of GET /personality-envelope/{productId}/{personalityId} — a Personality's EFFECTIVE AUTHORITY, re-derived live and uncached at read time from the file baseline, the cutover state, and a fresh strict load of the enrollment directory. It is a snapshot of a computation, never stored state. It carries only the Personality/consent HALF of the authority envelope: the re-proven initiating actor and the immutable Operation bounds are deliberately elsewhere. A lawful refusal (post-cutover, or no file authority) is DATA, not an error — it arrives as a 200 carrying the reason, with every dimension empty.
2
+ * The body of GET /personality-envelope/{productId}/{personalityId} — a Personality's EFFECTIVE AUTHORITY, re-derived live and uncached at read time: the cutover state and the owning product's enrollment grants are read fresh on every call, while the personality DECLARATION baseline is the one loaded at boot and is not re-read until the service restarts. It is a snapshot of a computation, never stored state. It carries only the Personality/consent HALF of the authority envelope: the re-proven initiating actor and the immutable Operation bounds are deliberately elsewhere. A lawful refusal (post-cutover, or no file authority) is DATA, not an error — it arrives as a 200 carrying the reason, with every dimension empty.
3
3
  */
4
4
  export interface AuthorityEnvelope {
5
5
  /** The product that OWNS this Personality — echoed back from the request path, and the product whose enrollment grants were intersected in. A personality id alone is ambiguous across products, so authority is only ever answered for the owning product named here. */
@@ -8,7 +8,7 @@ export interface AuthorityEnvelope {
8
8
  personality_id: string;
9
9
  /** The moment this computation ran (UTC). A COMPUTATION timestamp, not a state as-of: nothing in this body was stored at this time, and re-reading a second later may legitimately return different dimensions if a grant was revoked in between. */
10
10
  evaluated_at: string;
11
- /** How this answer was produced. Always live and uncached — an operator reading this is reading what would be decided NOW, not what was decided once and kept. */
11
+ /** How this answer was produced. The COMPUTATION is uncached — an operator is reading what would be decided now, not what was decided once. Note the boundary precisely: the cutover state and enrollment grants are re-read per call; the personality declaration baseline is boot-loaded and changes only on restart. */
12
12
  evaluation: "live_uncached_at_read";
13
13
  /** Which part of the authority envelope this body actually answers. Always the Personality/consent half — never the complete authority a commissioned Operation runs under. Stated explicitly so a reader does not mistake this for the whole. */
14
14
  scope: "personality_consent_half";
@@ -227,6 +227,26 @@ export interface EnrollmentDetail {
227
227
  enforced: boolean;
228
228
  };
229
229
  }
230
+ /**
231
+ * The body of GET /admin/enrollments — every enrolled product the conductor loaded at boot, as a SUMMARY. It is deliberately narrower than the enrollment detail: identity, gate, trust mode and the two grant arrays, and nothing else. Non-active records are listed too, so an operator can see what was suspended or revoked rather than watching it vanish. Nothing here is a secret: no endpoint URL, no storage coordinate, no key.
232
+ */
233
+ export interface EnrollmentList {
234
+ /** One row per loaded record, in load order. Always an array — never null — so an empty registry reads as 'no products enrolled' rather than as a missing field. */
235
+ enrollments: Array<{
236
+ /** The platform's durable name for the product, and for its project — an enrolled product IS a project under the Project Isolation Doctrine. */
237
+ product_id: string;
238
+ /** The enrollment gate as recorded, verbatim. Only `active` is trusted anywhere; a suspended or revoked product still appears here but resolves no capability and grants no personality. Not enumerated: the loader defines no closed constant set and only ever compares this to "active". */
239
+ status: string;
240
+ /** How the factory's outbound capability projection into this product is proven — the scheme, never the principal and never the secret behind it. */
241
+ s2s_trust_mode: string;
242
+ /** The personality ids this product owns. One-owner-each is a boot-enforced law for active records, so an id appearing here for two active products would refuse the boot. Always an array. */
243
+ personality_grants: string[];
244
+ /** The capabilities this product is entitled to consume. A grant is an entitlement, not a route — the detail read pairs each with its route key and whether an endpoint is present. Always an array. */
245
+ capability_grants: string[];
246
+ }>;
247
+ /** The number of rows, emitted alongside the array so a truncated or mis-parsed response is detectable rather than silently short. */
248
+ count: number;
249
+ }
230
250
  /**
231
251
  * The body of GET /operative-type/{productId}/{operativeId} — one Operative Type as an operator reads it, re-proven at the owning product. It never collapses the three answers that look like one: what the product DECLARED, what the governed record currently RESOLVES to, and what a gate actually ENFORCES. It carries the full authored version history and, unlike the roster read, the Type's opaque product-authored preferences. Unknown, unowned and unauthorized all answer 404, so this surface is never an existence oracle.
232
252
  */
@@ -291,7 +311,7 @@ export interface OperativeTypeDetail {
291
311
  max_iterations: number;
292
312
  /** The kinds of Artifact this Type is declared to admit, enforced at the Artifact admission boundary. Empty list, never null. */
293
313
  artifact_contract: string[];
294
- /** The bounded-executor envelope this Type DECLARES. Note it is not the envelope that bounds a real run — see enforcement.serving_envelope_source. Null when the active version records none; never an object of zeros, which would read as 'bounded at nothing'. */
314
+ /** The bounded-executor envelope this Type DECLARES. Note it is not the execution envelope that bounds a real run — see enforcement.serving_envelope_source. Null when the active version records none; never an object of zeros, which would read as 'bounded at nothing'. */
295
315
  execution_envelope: {
296
316
  /** Compute allotted to one run, in CPU units. Must be greater than zero — an unbounded executor is a declaration defect. */
297
317
  cpu: number;
@@ -313,7 +333,7 @@ export interface OperativeTypeDetail {
313
333
  /** Opaque, schema-free, product-authored configuration recorded verbatim and enforced by nothing. THIS READ ONLY: it is deliberately absent from the roster and from the platform-scoped enrollment read, because a platform-breadth operator can sweep those across every product at once and the platform cannot know what a product put in here. Always a JSON object when present (null, scalars and arrays refuse at the write boundary); null when the version declares none. */
314
334
  preferences: Record<string, unknown> | null;
315
335
  };
316
- /** The honesty control. Which of this record's fields actually reach a gate, which are recorded and consumed by nothing, and which authority supplies the envelope that really bounds a run. Computed by the platform, not remembered by a UI — a bound that does not bind is the silent failure this field exists to prevent. */
336
+ /** The honesty control. Which of this record's fields actually reach a gate, which are recorded and consumed by nothing, and which authority supplies the execution envelope that really bounds a run. Computed by the platform, not remembered by a UI — a bound that does not bind is the silent failure this field exists to prevent. */
317
337
  enforcement: {
318
338
  /** The field names on this record that a gate actually consults — the census gate, typed commission admission, or provider-bound sandbox satisfiability. Everything named here is governance in force. */
319
339
  enforced: string[];
@@ -449,7 +469,7 @@ export interface OperativeTypeList {
449
469
  max_iterations: number;
450
470
  /** The kinds of Artifact this Type declares it may produce, checked when an Artifact is admitted. An empty list means no kinds were declared. */
451
471
  artifact_contract: string[];
452
- /** The resource envelope this Type's record declares for a bounded executor, emitted as the AUTHORED JSON EXACTLY AS STORED — the roster never re-validates or re-renders these bytes, so this object's shape is bounded by the record's own write boundary and by nothing else. Null when no envelope is on the record (no active version, or an unreadable one). IMPORTANT: this is NOT the envelope that bounds a real run — see enforcement.serving_envelope_source; the enrollment declaration's envelope is the one resolved at dispatch. */
472
+ /** The resource envelope this Type's record declares for a bounded executor, emitted as the AUTHORED JSON EXACTLY AS STORED — the roster never re-validates or re-renders these bytes, so this object's shape is bounded by the record's own write boundary and by nothing else. Null when no envelope is on the record (no active version, or an unreadable one). IMPORTANT: this is NOT the execution envelope that bounds a real run — see enforcement.serving_envelope_source; the enrollment declaration's envelope is the one resolved at dispatch. */
453
473
  execution_envelope: {
454
474
  /** CPU allowance for one instance of this Type. Required: the write boundary demands a value > 0, and an absent key decodes to zero and is refused — so no stored envelope can omit it. May be fractional. */
455
475
  cpu: number;
@@ -469,7 +489,7 @@ export interface OperativeTypeList {
469
489
  teardown_slack_ms?: number | null;
470
490
  };
471
491
  };
472
- /** The honesty control, carried on EVERY row: which of the record's fields reach a gate, which are recorded and consumed by nothing, and which authority actually supplies the envelope that bounds a run. It describes the mechanism, so it is identical on every row — a surface that left this to a renderer would eventually show an operator a bound that does not bind. */
492
+ /** The honesty control, carried on EVERY row: which of the record's fields reach a gate, which are recorded and consumed by nothing, and which authority actually supplies the execution envelope that bounds a run. It describes the mechanism, so it is identical on every row — a surface that left this to a renderer would eventually show an operator a bound that does not bind. */
473
493
  enforcement: {
474
494
  /** The record's fields that actually reach a gate — today: role, required_capabilities, allowed_commissioners, sandbox_requirement, supports_clustering, execution_provider. These are governance in force. */
475
495
  enforced: string[];
@@ -562,4 +582,67 @@ export interface PersonalityResolution {
562
582
  as_of: string;
563
583
  };
564
584
  }
585
+ /**
586
+ * The body of GET /admin/projects — every enrolled product seen as a PROJECT: its provisioning posture rather than its AI configuration. An enrolled product IS a project (Project Isolation Doctrine), so the rows are the same records the enrollment list returns, projected through a different question: is this project storage-bound, across which planes, and what may it read across project lines. Non-active records appear here too, so a suspended project is visible rather than absent.
587
+ */
588
+ export interface ProjectList {
589
+ /** One row per loaded record, in load order. Always an array — never null. */
590
+ projects: Array<{
591
+ /** The project's durable name — identical to the enrolled product_id. */
592
+ project_id: string;
593
+ /** The recorded provisioning/enrollment lifecycle, verbatim: `active` (fully provisioned, verified, turn-capable) or `suspended` per the engine's flip rule. Not enumerated: the loader closes no vocabulary and only ever compares this to "active". */
594
+ status: string;
595
+ /** Whether ANY plane binding is declared. False is a valid, pre-provisioning state — enrolled but not yet storage-bound — and must not be read as a failure. */
596
+ storage_bound: boolean;
597
+ /** The four-plane binding grid (six slots; structured = graph + memory + learning), each with declared + lifecycle status — the SAME safe rendering as the enrollment detail, deliberately identical so the two surfaces cannot drift into describing storage differently. Presence and lifecycle only; no secret name, index, bucket or database is ever serialized. */
598
+ planes: {
599
+ /** This project's own graph store (Neon) — where its Reference and Overlay rings physically live. */
600
+ graph: {
601
+ /** Whether the record declares this plane at all. False = enrolled but not yet bound here, a valid pre-provisioning state. */
602
+ declared: boolean;
603
+ /** The provisioning lifecycle of a declared binding. The handler normalizes an omitted status to `active` and otherwise passes the recorded value through verbatim; the lawful set (`active` — resolves; `pending` — declared but unprovisioned, boots fine and fails closed at resolve) is closed only by ValidateStorage, which skips every non-active record, so this is described rather than enumerated. Absent when the plane is not declared. */
604
+ status?: string;
605
+ };
606
+ /** This project's own memory store (Neon) — where its Memory Tier 0 / Tier 1 records physically live. */
607
+ memory: {
608
+ /** Whether the record declares this plane at all. False = enrolled but not yet bound here, a valid pre-provisioning state. */
609
+ declared: boolean;
610
+ /** The provisioning lifecycle of a declared binding. The handler normalizes an omitted status to `active` and otherwise passes the recorded value through verbatim; the lawful set (`active` — resolves; `pending` — declared but unprovisioned, boots fine and fails closed at resolve) is closed only by ValidateStorage, which skips every non-active record, so this is described rather than enumerated. Absent when the plane is not declared. */
611
+ status?: string;
612
+ };
613
+ /** This project's own learning store (Neon) — where its edge inference and epoch state physically live. */
614
+ learning: {
615
+ /** Whether the record declares this plane at all. False = enrolled but not yet bound here, a valid pre-provisioning state. */
616
+ declared: boolean;
617
+ /** The provisioning lifecycle of a declared binding. The handler normalizes an omitted status to `active` and otherwise passes the recorded value through verbatim; the lawful set (`active` — resolves; `pending` — declared but unprovisioned, boots fine and fails closed at resolve) is closed only by ValidateStorage, which skips every non-active record, so this is described rather than enumerated. Absent when the plane is not declared. */
618
+ status?: string;
619
+ };
620
+ /** This project's own vector collection — the retrieval plane; per-source namespaces nest inside it. */
621
+ vector: {
622
+ /** Whether the record declares this plane at all. False = enrolled but not yet bound here, a valid pre-provisioning state. */
623
+ declared: boolean;
624
+ /** The provisioning lifecycle of a declared binding. The handler normalizes an omitted status to `active` and otherwise passes the recorded value through verbatim; the lawful set (`active` — resolves; `pending` — declared but unprovisioned, boots fine and fails closed at resolve) is closed only by ValidateStorage, which skips every non-active record, so this is described rather than enumerated. Absent when the plane is not declared. */
625
+ status?: string;
626
+ };
627
+ /** This project's own object-storage partition — the bucket/prefix its Artifact bytes live in. */
628
+ object: {
629
+ /** Whether the record declares this plane at all. False = enrolled but not yet bound here, a valid pre-provisioning state. */
630
+ declared: boolean;
631
+ /** The provisioning lifecycle of a declared binding. The handler normalizes an omitted status to `active` and otherwise passes the recorded value through verbatim; the lawful set (`active` — resolves; `pending` — declared but unprovisioned, boots fine and fails closed at resolve) is closed only by ValidateStorage, which skips every non-active record, so this is described rather than enumerated. Absent when the plane is not declared. */
632
+ status?: string;
633
+ };
634
+ /** This project's own analytics database — the fourth plane, where its traces, usage and cost land. */
635
+ analytics: {
636
+ /** Whether the record declares this plane at all. False = enrolled but not yet bound here, a valid pre-provisioning state. */
637
+ declared: boolean;
638
+ /** The provisioning lifecycle of a declared binding. The handler normalizes an omitted status to `active` and otherwise passes the recorded value through verbatim; the lawful set (`active` — resolves; `pending` — declared but unprovisioned, boots fine and fails closed at resolve) is closed only by ValidateStorage, which skips every non-active record, so this is described rather than enumerated. Absent when the plane is not declared. */
639
+ status?: string;
640
+ };
641
+ };
642
+ /** The other projects this one may read across, by name. Cross-project reach is granted, never assumed, and needs BOTH this grant and a Control Plane decision — divergence fails closed. Always an array. */
643
+ cross_project_grants: string[];
644
+ }>;
645
+ /** The number of rows, emitted alongside the array so a truncated response is detectable. */
646
+ count: number;
647
+ }
565
648
  //# sourceMappingURL=contract-types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"contract-types.d.ts","sourceRoot":"","sources":["../../src/generated/contract-types.ts"],"names":[],"mappings":"AAYA;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,0QAA0Q;IAC1Q,UAAU,EAAE,MAAM,CAAC;IACnB,wFAAwF;IACxF,cAAc,EAAE,MAAM,CAAC;IACvB,qPAAqP;IACrP,YAAY,EAAE,MAAM,CAAC;IACrB,kKAAkK;IAClK,UAAU,EAAE,uBAAuB,CAAC;IACpC,kPAAkP;IAClP,KAAK,EAAE,0BAA0B,CAAC;IAClC,+TAA+T;IAC/T,cAAc,EAAE,CAAC,qCAAqC,GAAG,4BAA4B,CAAC,EAAE,CAAC;IACzF,sTAAsT;IACtT,IAAI,EAAE,4BAA4B,GAAG,EAAE,CAAC;IACxC,iVAAiV;IACjV,OAAO,EAAE,EAAE,GAAG,mCAAmC,GAAG,4BAA4B,CAAC;IACjF,iTAAiT;IACjT,UAAU,EAAE;QACV,2LAA2L;QAC3L,YAAY,EAAE,MAAM,EAAE,CAAC;QACvB,oJAAoJ;QACpJ,aAAa,EAAE,MAAM,EAAE,CAAC;QACxB,qFAAqF;QACrF,gBAAgB,EAAE,MAAM,EAAE,CAAC;QAC3B,8FAA8F;QAC9F,gBAAgB,EAAE,MAAM,EAAE,CAAC;QAC3B,8SAA8S;QAC9S,oBAAoB,EAAE,MAAM,EAAE,CAAC;QAC/B,0IAA0I;QAC1I,YAAY,EAAE,MAAM,EAAE,CAAC;QACvB,4IAA4I;QAC5I,aAAa,EAAE,MAAM,EAAE,CAAC;KACzB,CAAC;IACF,yYAAyY;IACzY,2BAA2B,EAAE,CAAC,sBAAsB,GAAG,cAAc,GAAG,eAAe,CAAC,EAAE,CAAC;CAC5F;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,sQAAsQ;IACtQ,UAAU,EAAE,MAAM,CAAC;IACnB,ibAAib;IACjb,MAAM,EAAE,MAAM,CAAC;IACf,yWAAyW;IACzW,cAAc,EAAE,MAAM,CAAC;IACvB,sPAAsP;IACtP,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,gMAAgM;IAChM,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,qMAAqM;IACrM,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,kUAAkU;IAClU,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,6OAA6O;IAC7O,iBAAiB,EAAE,KAAK,CAAC;QACvB,gGAAgG;QAChG,aAAa,EAAE,MAAM,CAAC;QACtB,sNAAsN;QACtN,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,4OAA4O;QAC5O,gBAAgB,EAAE,OAAO,CAAC;KAC3B,CAAC,CAAC;IACH,+OAA+O;IAC/O,0BAA0B,EAAE,MAAM,EAAE,CAAC;IACrC,sSAAsS;IACtS,oBAAoB,EAAE,MAAM,EAAE,CAAC;IAC/B,+LAA+L;IAC/L,qBAAqB,EAAE,MAAM,EAAE,CAAC;IAChC,yaAAya;IACza,gBAAgB,EAAE;QAChB,qGAAqG;QACrG,KAAK,EAAE;YACL,8HAA8H;YAC9H,QAAQ,EAAE,OAAO,CAAC;YAClB,wbAAwb;YACxb,MAAM,CAAC,EAAE,MAAM,CAAC;SACjB,CAAC;QACF,yGAAyG;QACzG,MAAM,EAAE;YACN,8HAA8H;YAC9H,QAAQ,EAAE,OAAO,CAAC;YAClB,wbAAwb;YACxb,MAAM,CAAC,EAAE,MAAM,CAAC;SACjB,CAAC;QACF,2GAA2G;QAC3G,QAAQ,EAAE;YACR,8HAA8H;YAC9H,QAAQ,EAAE,OAAO,CAAC;YAClB,wbAAwb;YACxb,MAAM,CAAC,EAAE,MAAM,CAAC;SACjB,CAAC;QACF,wGAAwG;QACxG,MAAM,EAAE;YACN,8HAA8H;YAC9H,QAAQ,EAAE,OAAO,CAAC;YAClB,wbAAwb;YACxb,MAAM,CAAC,EAAE,MAAM,CAAC;SACjB,CAAC;QACF,kGAAkG;QAClG,MAAM,EAAE;YACN,8HAA8H;YAC9H,QAAQ,EAAE,OAAO,CAAC;YAClB,wbAAwb;YACxb,MAAM,CAAC,EAAE,MAAM,CAAC;SACjB,CAAC;QACF,uGAAuG;QACvG,SAAS,EAAE;YACT,8HAA8H;YAC9H,QAAQ,EAAE,OAAO,CAAC;YAClB,wbAAwb;YACxb,MAAM,CAAC,EAAE,MAAM,CAAC;SACjB,CAAC;KACH,CAAC;IACF,0QAA0Q;IAC1Q,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2KAA2K;IAC3K,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,0NAA0N;IAC1N,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,4KAA4K;IAC5K,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,ucAAuc;IACvc,oBAAoB,EAAE,KAAK,CAAC;QAC1B,uPAAuP;QACvP,OAAO,EAAE,MAAM,CAAC;QAChB,wfAAwf;QACxf,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC,CAAC;IACH,mcAAmc;IACnc,iBAAiB,EAAE,KAAK,CAAC;QACvB,+IAA+I;QAC/I,oBAAoB,EAAE,MAAM,CAAC;QAC7B,oHAAoH;QACpH,kBAAkB,EAAE,MAAM,CAAC;QAC3B,0PAA0P;QAC1P,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,8LAA8L;QAC9L,kBAAkB,EAAE,OAAO,CAAC;QAC5B,yMAAyM;QACzM,kBAAkB,CAAC,EAAE,MAAM,CAAC;QAC5B,kOAAkO;QAClO,kBAAkB,EAAE;YAClB,+CAA+C;YAC/C,GAAG,EAAE,MAAM,CAAC;YACZ,+CAA+C;YAC/C,UAAU,EAAE,MAAM,CAAC;YACnB,4DAA4D;YAC5D,cAAc,EAAE,MAAM,CAAC;YACvB,kHAAkH;YAClH,gBAAgB,EAAE,MAAM,CAAC;YACzB,uKAAuK;YACvK,oBAAoB,EAAE,MAAM,EAAE,CAAC;YAC/B,oEAAoE;YACpE,UAAU,EAAE,MAAM,CAAC;YACnB,sGAAsG;YACtG,YAAY,EAAE,MAAM,CAAC;YACrB,8FAA8F;YAC9F,iBAAiB,EAAE,MAAM,CAAC;SAC3B,CAAC;KACH,CAAC,CAAC;IACH,iiBAAiiB;IACjiB,UAAU,EAAE,KAAK,CAAC;QAChB,iPAAiP;QACjP,EAAE,EAAE,MAAM,CAAC;QACX,wJAAwJ;QACxJ,YAAY,EAAE,MAAM,CAAC;QACrB,ueAAue;QACve,IAAI,EAAE,MAAM,CAAC;QACb,wKAAwK;QACxK,kBAAkB,CAAC,EAAE,MAAM,CAAC;QAC5B,8TAA8T;QAC9T,kBAAkB,EAAE;YAClB,gDAAgD;YAChD,GAAG,EAAE,MAAM,CAAC;YACZ,gDAAgD;YAChD,UAAU,EAAE,MAAM,CAAC;YACnB,6DAA6D;YAC7D,cAAc,EAAE,MAAM,CAAC;YACvB,yDAAyD;YACzD,gBAAgB,EAAE,MAAM,CAAC;YACzB,mKAAmK;YACnK,oBAAoB,EAAE,MAAM,EAAE,CAAC;YAC/B,0EAA0E;YAC1E,UAAU,EAAE,MAAM,CAAC;YACnB,kGAAkG;YAClG,YAAY,EAAE,MAAM,CAAC;YACrB,4EAA4E;YAC5E,iBAAiB,EAAE,MAAM,CAAC;SAC3B,CAAC;QACF,8PAA8P;QAC9P,qBAAqB,EAAE,MAAM,EAAE,CAAC;QAChC,+MAA+M;QAC/M,qBAAqB,EAAE,MAAM,EAAE,CAAC;QAChC,klBAAklB;QACllB,mBAAmB,EAAE,MAAM,CAAC;QAC5B,2QAA2Q;QAC3Q,mBAAmB,EAAE,OAAO,CAAC;QAC7B,0lBAA0lB;QAC1lB,UAAU,EAAE,MAAM,CAAC;QACnB,iJAAiJ;QACjJ,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,gIAAgI;QAChI,wBAAwB,CAAC,EAAE,MAAM,CAAC;QAClC,8GAA8G;QAC9G,iBAAiB,EAAE,MAAM,CAAC;QAC1B,mHAAmH;QACnH,cAAc,EAAE,MAAM,CAAC;QACvB,uHAAuH;QACvH,iBAAiB,EAAE,MAAM,EAAE,CAAC;KAC7B,CAAC,CAAC;IACH,4bAA4b;IAC5b,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,oSAAoS;IACpS,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC1C,0PAA0P;IAC1P,iBAAiB,EAAE;QACjB,uFAAuF;QACvF,QAAQ,EAAE,MAAM,CAAC;QACjB,2MAA2M;QAC3M,SAAS,EAAE,MAAM,CAAC;QAClB,sMAAsM;QACtM,QAAQ,EAAE,OAAO,CAAC;KACnB,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,qNAAqN;IACrN,UAAU,EAAE,MAAM,CAAC;IACnB,4KAA4K;IAC5K,YAAY,EAAE,MAAM,CAAC;IACrB,6HAA6H;IAC7H,MAAM,EAAE;QACN,uLAAuL;QACvL,MAAM,EAAE,OAAO,CAAC;QAChB,kKAAkK;QAClK,cAAc,EAAE,MAAM,CAAC;QACvB,gJAAgJ;QAChJ,kBAAkB,EAAE,OAAO,CAAC;QAC5B,oYAAoY;QACpY,SAAS,EAAE,QAAQ,GAAG,SAAS,GAAG,SAAS,CAAC;QAC5C,uIAAuI;QACvI,YAAY,EAAE,MAAM,CAAC;QACrB,8IAA8I;QAC9I,UAAU,EAAE,MAAM,CAAC;QACnB,qJAAqJ;QACrJ,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;KAC3B,CAAC;IACF,qgBAAqgB;IACrgB,QAAQ,EAAE;QACR,uJAAuJ;QACvJ,UAAU,EAAE,OAAO,CAAC;QACpB,+YAA+Y;QAC/Y,cAAc,EAAE,EAAE,GAAG,mBAAmB,GAAG,aAAa,GAAG,kCAAkC,GAAG,yBAAyB,CAAC;QAC1H,kJAAkJ;QAClJ,OAAO,EAAE,MAAM,CAAC;QAChB,sdAAsd;QACtd,IAAI,EAAE,EAAE,GAAG,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,eAAe,GAAG,SAAS,CAAC;QAC/G,+JAA+J;QAC/J,qBAAqB,EAAE,MAAM,EAAE,CAAC;QAChC,6LAA6L;QAC7L,qBAAqB,EAAE,MAAM,EAAE,CAAC;QAChC,oLAAoL;QACpL,mBAAmB,EAAE,EAAE,GAAG,MAAM,GAAG,UAAU,CAAC;QAC9C,yKAAyK;QACzK,mBAAmB,EAAE,OAAO,CAAC;QAC7B,sIAAsI;QACtI,UAAU,EAAE,EAAE,GAAG,MAAM,GAAG,QAAQ,CAAC;QACnC,6LAA6L;QAC7L,kBAAkB,EAAE,MAAM,CAAC;KAC5B,CAAC;IACF,mgBAAmgB;IACngB,QAAQ,EAAE;QACR,yMAAyM;QACzM,OAAO,EAAE,OAAO,CAAC;QACjB,uIAAuI;QACvI,YAAY,EAAE,MAAM,CAAC;QACrB,2IAA2I;QAC3I,WAAW,EAAE,MAAM,CAAC;QACpB,gIAAgI;QAChI,wBAAwB,EAAE,MAAM,CAAC;QACjC,oLAAoL;QACpL,iBAAiB,EAAE,MAAM,CAAC;QAC1B,6KAA6K;QAC7K,cAAc,EAAE,MAAM,CAAC;QACvB,iIAAiI;QACjI,iBAAiB,EAAE,MAAM,EAAE,CAAC;QAC5B,qQAAqQ;QACrQ,kBAAkB,EAAE;YAClB,4HAA4H;YAC5H,GAAG,EAAE,MAAM,CAAC;YACZ,0CAA0C;YAC1C,UAAU,EAAE,MAAM,CAAC;YACnB,uDAAuD;YACvD,cAAc,EAAE,MAAM,CAAC;YACvB,qDAAqD;YACrD,gBAAgB,EAAE,MAAM,CAAC;YACzB,yFAAyF;YACzF,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAC;YAChC,sDAAsD;YACtD,UAAU,EAAE,MAAM,CAAC;YACnB,iJAAiJ;YACjJ,YAAY,EAAE,MAAM,CAAC;YACrB,oGAAoG;YACpG,iBAAiB,CAAC,EAAE,MAAM,CAAC;SAC5B,CAAC;QACF,udAAud;QACvd,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC;KAC7C,CAAC;IACF,kUAAkU;IAClU,WAAW,EAAE;QACX,0MAA0M;QAC1M,QAAQ,EAAE,MAAM,EAAE,CAAC;QACnB,gMAAgM;QAChM,QAAQ,EAAE,MAAM,EAAE,CAAC;QACnB,uPAAuP;QACvP,uBAAuB,EAAE,wBAAwB,CAAC;KACnD,CAAC;IACF,sjBAAsjB;IACtjB,OAAO,EAAE,KAAK,CAAC;QACb,sHAAsH;QACtH,OAAO,EAAE,MAAM,CAAC;QAChB,4TAA4T;QAC5T,cAAc,EAAE,MAAM,CAAC;QACvB,mFAAmF;QACnF,WAAW,EAAE,MAAM,CAAC;QACpB,+HAA+H;QAC/H,WAAW,EAAE,MAAM,CAAC;QACpB,yNAAyN;QACzN,SAAS,EAAE,OAAO,CAAC;QACnB,67BAA67B;QAC77B,IAAI,EAAE,MAAM,CAAC;QACb,+LAA+L;QAC/L,YAAY,EAAE,MAAM,CAAC;QACrB,sDAAsD;QACtD,WAAW,EAAE,MAAM,CAAC;QACpB,iIAAiI;QACjI,wBAAwB,EAAE,MAAM,CAAC;QACjC,kHAAkH;QAClH,iBAAiB,EAAE,MAAM,CAAC;QAC1B,iHAAiH;QACjH,cAAc,EAAE,MAAM,CAAC;QACvB,mFAAmF;QACnF,iBAAiB,EAAE,MAAM,EAAE,CAAC;QAC5B,0JAA0J;QAC1J,qBAAqB,EAAE,MAAM,EAAE,CAAC;QAChC,8IAA8I;QAC9I,qBAAqB,EAAE,MAAM,EAAE,CAAC;QAChC,6RAA6R;QAC7R,mBAAmB,EAAE,MAAM,GAAG,UAAU,CAAC;QACzC,0FAA0F;QAC1F,mBAAmB,EAAE,OAAO,CAAC;QAC7B,iOAAiO;QACjO,UAAU,EAAE,MAAM,GAAG,QAAQ,CAAC;QAC9B,oHAAoH;QACpH,kBAAkB,EAAE,MAAM,CAAC;QAC3B,mJAAmJ;QACnJ,kBAAkB,EAAE;YAClB,iDAAiD;YACjD,GAAG,EAAE,MAAM,CAAC;YACZ,0CAA0C;YAC1C,UAAU,EAAE,MAAM,CAAC;YACnB,uDAAuD;YACvD,cAAc,EAAE,MAAM,CAAC;YACvB,qDAAqD;YACrD,gBAAgB,EAAE,MAAM,CAAC;YACzB,yGAAyG;YACzG,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAC;YAChC,sDAAsD;YACtD,UAAU,EAAE,MAAM,CAAC;YACnB,mGAAmG;YACnG,YAAY,EAAE,MAAM,CAAC;YACrB,6EAA6E;YAC7E,iBAAiB,CAAC,EAAE,MAAM,CAAC;SAC5B,CAAC;KACH,CAAC,CAAC;IACH,uNAAuN;IACvN,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,iSAAiS;IACjS,eAAe,EAAE,KAAK,CAAC;QACrB,uLAAuL;QACvL,UAAU,EAAE,MAAM,CAAC;QACnB,6IAA6I;QAC7I,YAAY,EAAE,MAAM,CAAC;QACrB,2IAA2I;QAC3I,MAAM,EAAE;YACN,kIAAkI;YAClI,MAAM,EAAE,OAAO,CAAC;YAChB,qJAAqJ;YACrJ,cAAc,EAAE,MAAM,CAAC;YACvB,2HAA2H;YAC3H,kBAAkB,EAAE,OAAO,CAAC;YAC5B,6KAA6K;YAC7K,SAAS,EAAE,QAAQ,GAAG,SAAS,GAAG,SAAS,CAAC;YAC5C,uJAAuJ;YACvJ,YAAY,EAAE,MAAM,CAAC;YACrB,sHAAsH;YACtH,UAAU,EAAE,MAAM,CAAC;YACnB,2KAA2K;YAC3K,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;SAC3B,CAAC;QACF,qRAAqR;QACrR,QAAQ,EAAE;YACR,gJAAgJ;YAChJ,UAAU,EAAE,OAAO,CAAC;YACpB,mZAAmZ;YACnZ,cAAc,EAAE,EAAE,GAAG,mBAAmB,GAAG,aAAa,GAAG,kCAAkC,GAAG,yBAAyB,CAAC;YAC1H,uGAAuG;YACvG,OAAO,EAAE,MAAM,CAAC;YAChB,8OAA8O;YAC9O,IAAI,EAAE,EAAE,GAAG,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,eAAe,GAAG,SAAS,CAAC;YAC/G,uOAAuO;YACvO,qBAAqB,EAAE,MAAM,EAAE,CAAC;YAChC,uKAAuK;YACvK,qBAAqB,EAAE,MAAM,EAAE,CAAC;YAChC,2MAA2M;YAC3M,mBAAmB,EAAE,EAAE,GAAG,MAAM,GAAG,UAAU,CAAC;YAC9C,gGAAgG;YAChG,mBAAmB,EAAE,OAAO,CAAC;YAC7B,oKAAoK;YACpK,UAAU,EAAE,EAAE,GAAG,MAAM,GAAG,QAAQ,CAAC;YACnC,mMAAmM;YACnM,kBAAkB,EAAE,MAAM,CAAC;SAC5B,CAAC;QACF,wdAAwd;QACxd,QAAQ,EAAE;YACR,sSAAsS;YACtS,OAAO,EAAE,OAAO,CAAC;YACjB,iGAAiG;YACjG,YAAY,EAAE,MAAM,CAAC;YACrB,qGAAqG;YACrG,WAAW,EAAE,MAAM,CAAC;YACpB,sIAAsI;YACtI,wBAAwB,EAAE,MAAM,CAAC;YACjC,+IAA+I;YAC/I,iBAAiB,EAAE,MAAM,CAAC;YAC1B,oIAAoI;YACpI,cAAc,EAAE,MAAM,CAAC;YACvB,iJAAiJ;YACjJ,iBAAiB,EAAE,MAAM,EAAE,CAAC;YAC5B,mhBAAmhB;YACnhB,kBAAkB,EAAE;gBAClB,8MAA8M;gBAC9M,GAAG,EAAE,MAAM,CAAC;gBACZ,2KAA2K;gBAC3K,UAAU,EAAE,MAAM,CAAC;gBACnB,0GAA0G;gBAC1G,cAAc,EAAE,MAAM,CAAC;gBACvB,qHAAqH;gBACrH,gBAAgB,EAAE,MAAM,CAAC;gBACzB,wXAAwX;gBACxX,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAC;gBAChC,2GAA2G;gBAC3G,UAAU,EAAE,MAAM,CAAC;gBACnB,4KAA4K;gBAC5K,YAAY,EAAE,MAAM,CAAC;gBACrB,+TAA+T;gBAC/T,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;aACnC,CAAC;SACH,CAAC;QACF,iXAAiX;QACjX,WAAW,EAAE;YACX,+MAA+M;YAC/M,QAAQ,EAAE,MAAM,EAAE,CAAC;YACnB,2XAA2X;YAC3X,QAAQ,EAAE,MAAM,EAAE,CAAC;YACnB,qNAAqN;YACrN,uBAAuB,EAAE,wBAAwB,CAAC;SACnD,CAAC;KACH,CAAC,CAAC;IACH,8KAA8K;IAC9K,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,mJAAmJ;IACnJ,aAAa,EAAE,KAAK,CAAC;QACnB,0GAA0G;QAC1G,EAAE,EAAE,MAAM,CAAC;QACX,qDAAqD;QACrD,IAAI,EAAE,MAAM,CAAC;QACb,+UAA+U;QAC/U,cAAc,EAAE,MAAM,CAAC;QACvB,iMAAiM;QACjM,MAAM,EAAE,OAAO,CAAC;QAChB,kKAAkK;QAClK,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;QAChC,sMAAsM;QACtM,cAAc,CAAC,EAAE,UAAU,GAAG,UAAU,GAAG,WAAW,GAAG,eAAe,GAAG,SAAS,GAAG,UAAU,CAAC;QAClG,mMAAmM;QACnM,eAAe,CAAC,EAAE,YAAY,GAAG,cAAc,CAAC;QAChD,+QAA+Q;QAC/Q,YAAY,EAAE,MAAM,EAAE,CAAC;QACvB,sHAAsH;QACtH,aAAa,EAAE,MAAM,EAAE,CAAC;QACxB,yGAAyG;QACzG,gBAAgB,EAAE,MAAM,EAAE,CAAC;KAC5B,CAAC,CAAC;IACH,0LAA0L;IAC1L,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,kKAAkK;IAClK,cAAc,EAAE,MAAM,CAAC;IACvB,qKAAqK;IACrK,QAAQ,EAAE;QACR,qNAAqN;QACrN,UAAU,EAAE,MAAM,CAAC;QACnB,8KAA8K;QAC9K,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;KACjC,CAAC;IACF,8QAA8Q;IAC9Q,OAAO,EAAE;QACP,gKAAgK;QAChK,WAAW,EAAE,OAAO,CAAC;QACrB,iQAAiQ;QACjQ,IAAI,EAAE,aAAa,GAAG,QAAQ,CAAC;QAC/B,qSAAqS;QACrS,cAAc,EAAE,MAAM,CAAC;QACvB,gRAAgR;QAChR,qBAAqB,EAAE,MAAM,CAAC;QAC9B,iNAAiN;QACjN,qBAAqB,EAAE,MAAM,CAAC;QAC9B,4UAA4U;QAC5U,OAAO,EAAE,EAAE,GAAG,kBAAkB,GAAG,8BAA8B,GAAG,iCAAiC,GAAG,2BAA2B,GAAG,yBAAyB,GAAG,wBAAwB,CAAC;QAC3L,omBAAomB;QACpmB,SAAS,CAAC,EAAE,EAAE,GAAG,kCAAkC,GAAG,iBAAiB,CAAC;QACxE,+aAA+a;QAC/a,aAAa,CAAC,EAAE,EAAE,GAAG,SAAS,GAAG,UAAU,GAAG,WAAW,GAAG,eAAe,GAAG,sBAAsB,CAAC;QACrG,0MAA0M;QAC1M,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAC3B,mOAAmO;QACnO,cAAc,CAAC,EAAE,MAAM,CAAC;QACxB,yYAAyY;QACzY,KAAK,CAAC,EAAE,KAAK,CAAC;YACZ,8KAA8K;YAC9K,IAAI,EAAE,SAAS,GAAG,UAAU,GAAG,WAAW,GAAG,eAAe,GAAG,sBAAsB,CAAC;YACtF,gDAAgD;YAChD,QAAQ,EAAE,MAAM,CAAC;YACjB,6CAA6C;YAC7C,KAAK,EAAE,MAAM,CAAC;YACd,0aAA0a;YAC1a,MAAM,EAAE,gCAAgC,GAAG,oBAAoB,GAAG,8BAA8B,GAAG,6BAA6B,GAAG,8BAA8B,GAAG,6BAA6B,GAAG,8BAA8B,GAAG,qCAAqC,GAAG,mCAAmC,GAAG,mBAAmB,GAAG,mBAAmB,GAAG,+CAA+C,CAAC;SAChZ,CAAC,CAAC;QACH,4QAA4Q;QAC5Q,KAAK,EAAE,MAAM,CAAC;KACf,CAAC;CACH"}
1
+ {"version":3,"file":"contract-types.d.ts","sourceRoot":"","sources":["../../src/generated/contract-types.ts"],"names":[],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -50,8 +50,8 @@ export declare class AdminError extends Error {
50
50
  readonly path: string;
51
51
  constructor(method: string, path: string, status: number);
52
52
  }
53
- export type { AuthorityEnvelope, EnrollmentDetail, OperativeTypeDetail, OperativeTypeList, PersonalityList, PersonalityResolution, } from './generated/contract-types.js';
54
- import type { AuthorityEnvelope, EnrollmentDetail, OperativeTypeDetail, OperativeTypeList, PersonalityList, PersonalityResolution } from './generated/contract-types.js';
53
+ export type { AuthorityEnvelope, EnrollmentDetail, EnrollmentList, OperativeTypeDetail, OperativeTypeList, PersonalityList, PersonalityResolution, ProjectList, } from './generated/contract-types.js';
54
+ import type { AuthorityEnvelope, EnrollmentDetail, EnrollmentList, OperativeTypeDetail, OperativeTypeList, PersonalityList, PersonalityResolution, ProjectList } from './generated/contract-types.js';
55
55
  /**
56
56
  * AdminClient is a thin wrapper over the Operator Gateway's governance reads. Each method is one request; the
57
57
  * gateway authorizes before proxying, and a non-2xx response throws.
@@ -60,6 +60,20 @@ import type { AuthorityEnvelope, EnrollmentDetail, OperativeTypeDetail, Operativ
60
60
  * is ambiguous across products, and resolving one by picking a match would show a caller another product's
61
61
  * governance — so the detail methods take (productId, id) and encode both.
62
62
  */
63
+ /**
64
+ * A CONTRACT-COVERED METHOD TAKES NO TYPE PARAMETER.
65
+ *
66
+ * Six of these reads are described by platform/contracts/operator-admin/v1 and return the GENERATED type for
67
+ * their contract. They deliberately expose no `<T>` escape, because a caller-supplied replacement type is
68
+ * exactly the defect this package was rebuilt to remove: the consumer re-declares the shape by hand, the
69
+ * hand-written shape drifts from the wire, and nothing objects — which is how nine divergences shipped. An
70
+ * override would let a consumer opt back out of the contract one call site at a time, and the contract would
71
+ * quietly stop meaning anything.
72
+ *
73
+ * The remaining eight methods are still `<T = unknown>`. That is honest rather than lax: they declare NOTHING,
74
+ * so they cannot contradict the wire. They gain contracts, and lose their type parameter, when their response
75
+ * bodies are added to the contract home.
76
+ */
63
77
  export declare class AdminClient {
64
78
  private readonly baseUrl;
65
79
  private readonly headersFn;
@@ -67,13 +81,13 @@ export declare class AdminClient {
67
81
  constructor(options: AdminClientOptions);
68
82
  private request;
69
83
  /** Every enrolled Project the operator may see. */
70
- listEnrollments<T = unknown>(): Promise<T>;
84
+ listEnrollments(): Promise<EnrollmentList>;
71
85
  /** One Project's enrollment record — its governed AI configuration. */
72
86
  getEnrollment(productId: string): Promise<EnrollmentDetail>;
73
87
  /** The Project portfolio read. */
74
- listProjects<T = unknown>(): Promise<T>;
88
+ listProjects(): Promise<ProjectList>;
75
89
  /** The personalities the conductor is actually serving (the file registry). */
76
- listPersonalities<T = PersonalityList>(): Promise<T>;
90
+ listPersonalities(): Promise<PersonalityList>;
77
91
  /** The governed Personality Records inside the operator's read scope, optionally narrowed to one product. */
78
92
  listPersonalityRecords<T = unknown>(productId?: string): Promise<T>;
79
93
  /** One governed Personality Record and its version history. */
@@ -101,7 +115,7 @@ export declare class AdminClient {
101
115
  * COMPATIBILITY, not governance — the Provider Record has not cut over, so nothing it declares is in force.
102
116
  * A consumer that renders this as "governed" states the opposite of the truth.
103
117
  */
104
- getPersonalityModelPolicy<T = PersonalityResolution>(personalityId: string): Promise<T>;
118
+ getPersonalityModelPolicy(personalityId: string): Promise<PersonalityResolution>;
105
119
  /** The Provider Records the platform declares. Platform-scoped: a provider is platform configuration. */
106
120
  listProviders<T = unknown>(): Promise<T>;
107
121
  /** One Provider Record with its authored and derived halves. */
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js CHANGED
@@ -56,6 +56,20 @@ export class AdminError extends Error {
56
56
  * is ambiguous across products, and resolving one by picking a match would show a caller another product's
57
57
  * governance — so the detail methods take (productId, id) and encode both.
58
58
  */
59
+ /**
60
+ * A CONTRACT-COVERED METHOD TAKES NO TYPE PARAMETER.
61
+ *
62
+ * Six of these reads are described by platform/contracts/operator-admin/v1 and return the GENERATED type for
63
+ * their contract. They deliberately expose no `<T>` escape, because a caller-supplied replacement type is
64
+ * exactly the defect this package was rebuilt to remove: the consumer re-declares the shape by hand, the
65
+ * hand-written shape drifts from the wire, and nothing objects — which is how nine divergences shipped. An
66
+ * override would let a consumer opt back out of the contract one call site at a time, and the contract would
67
+ * quietly stop meaning anything.
68
+ *
69
+ * The remaining eight methods are still `<T = unknown>`. That is honest rather than lax: they declare NOTHING,
70
+ * so they cannot contradict the wire. They gain contracts, and lose their type parameter, when their response
71
+ * bodies are added to the contract home.
72
+ */
59
73
  export class AdminClient {
60
74
  constructor(options) {
61
75
  this.baseUrl = options.baseUrl.replace(/\/$/, '');
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@consciousclouds/admin-sdk",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "ConsciousClouds Universal Admin SDK \u2014 the thin, policy-free client for the Operator Gateway's governance reads: Projects/enrollment, Personalities and their governed records, effective authority envelopes, and Operative Type rosters. Types + HTTP wrappers only; every authorization decision belongs to the Operator Gateway and the Control Plane.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",