@aeriajs/types 0.0.119 → 0.0.120

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/context.d.ts CHANGED
@@ -22,6 +22,7 @@ export type IndepthCollection<TCollection> = TCollection extends {
22
22
  functions?: infer InferredFunctions;
23
23
  } ? InferredDescription extends JsonSchema ? Omit<TCollection, 'functions'> & {
24
24
  item: SchemaWithId<InferredDescription>;
25
+ context: () => Promise<Context<InferredDescription, InferredFunctions>>;
25
26
  functions: UnionFunctions<InferredFunctions, InferredDescription>;
26
27
  originalFunctions: InferredFunctions;
27
28
  model: InferredDescription extends Description ? CollectionModel<InferredDescription> : never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aeriajs/types",
3
- "version": "0.0.119",
3
+ "version": "0.0.120",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",