@congruent-stack/congruent-api 0.11.3 → 0.11.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.
package/dist/index.cjs CHANGED
@@ -835,7 +835,9 @@ function clientParseRequestDefinitionField(definition, key, requestObject) {
835
835
  }
836
836
 
837
837
  class DIContainerBase {
838
+ /** @internal */
838
839
  _map = /* @__PURE__ */ new Map();
840
+ /** @internal */
839
841
  _singletonInstances = /* @__PURE__ */ new Map();
840
842
  createScope() {
841
843
  const proxy = new Proxy({
package/dist/index.d.cts CHANGED
@@ -212,8 +212,6 @@ type DIScope<R extends DIRegistry> = {
212
212
  [K in keyof R as `get${string & K}`]: () => R[K] extends DIRegistryEntry<infer T> ? T : never;
213
213
  };
214
214
  declare class DIContainerBase<R extends DIRegistry> {
215
- protected _map: Map<string, DIRegistryEntry<any>>;
216
- protected _singletonInstances: Map<string, any>;
217
215
  createScope(): DIScope<R>;
218
216
  }
219
217
  declare class DIContainer<R extends DIRegistry = {}> extends DIContainerBase<R> {
package/dist/index.d.mts CHANGED
@@ -212,8 +212,6 @@ type DIScope<R extends DIRegistry> = {
212
212
  [K in keyof R as `get${string & K}`]: () => R[K] extends DIRegistryEntry<infer T> ? T : never;
213
213
  };
214
214
  declare class DIContainerBase<R extends DIRegistry> {
215
- protected _map: Map<string, DIRegistryEntry<any>>;
216
- protected _singletonInstances: Map<string, any>;
217
215
  createScope(): DIScope<R>;
218
216
  }
219
217
  declare class DIContainer<R extends DIRegistry = {}> extends DIContainerBase<R> {
package/dist/index.mjs CHANGED
@@ -833,7 +833,9 @@ function clientParseRequestDefinitionField(definition, key, requestObject) {
833
833
  }
834
834
 
835
835
  class DIContainerBase {
836
+ /** @internal */
836
837
  _map = /* @__PURE__ */ new Map();
838
+ /** @internal */
837
839
  _singletonInstances = /* @__PURE__ */ new Map();
838
840
  createScope() {
839
841
  const proxy = new Proxy({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@congruent-stack/congruent-api",
3
3
  "type": "module",
4
- "version": "0.11.3",
4
+ "version": "0.11.4",
5
5
  "description": "Typescript schema-first tooling for agnostic REST APIs.",
6
6
  "keywords": [],
7
7
  "author": "congruent-stack",