@aeriajs/core 0.0.171 → 0.0.172
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.js +1 -0
- package/dist/context.mjs +1 -0
- package/package.json +3 -3
package/dist/context.js
CHANGED
|
@@ -131,6 +131,7 @@ const createContext = async (_options) => {
|
|
|
131
131
|
const description = (0, common_1.throwIfError)(await getCollectionAsset(collectionName, 'description'));
|
|
132
132
|
context.description = await (0, preload_js_1.preloadDescription)(description);
|
|
133
133
|
context.collectionName = collectionName;
|
|
134
|
+
context.calledFunction = options.calledFunction;
|
|
134
135
|
context.collection = indepthCollection(collectionName, collections, context);
|
|
135
136
|
}
|
|
136
137
|
return context;
|
package/dist/context.mjs
CHANGED
|
@@ -103,6 +103,7 @@ export const createContext = async (_options) => {
|
|
|
103
103
|
const description = throwIfError(await getCollectionAsset(collectionName, "description"));
|
|
104
104
|
context.description = await preloadDescription(description);
|
|
105
105
|
context.collectionName = collectionName;
|
|
106
|
+
context.calledFunction = options.calledFunction;
|
|
106
107
|
context.collection = indepthCollection(collectionName, collections, context);
|
|
107
108
|
}
|
|
108
109
|
return context;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aeriajs/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.172",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"aeriaMain": "tests/fixtures/aeriaMain.js",
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
"mongodb-memory-server": "^9.2.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@aeriajs/builtins": "^0.0.
|
|
45
|
+
"@aeriajs/builtins": "^0.0.172",
|
|
46
46
|
"@aeriajs/common": "^0.0.105",
|
|
47
47
|
"@aeriajs/entrypoint": "^0.0.107",
|
|
48
48
|
"@aeriajs/http": "^0.0.118",
|
|
49
|
-
"@aeriajs/security": "^0.0.
|
|
49
|
+
"@aeriajs/security": "^0.0.172",
|
|
50
50
|
"@aeriajs/types": "^0.0.88",
|
|
51
51
|
"@aeriajs/validation": "^0.0.108"
|
|
52
52
|
},
|