@cedarjs/api 2.2.2-next.0 → 2.2.2-next.31
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/cjs/index.js +11 -11
- package/package.json +3 -3
package/dist/cjs/index.js
CHANGED
|
@@ -17,22 +17,22 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
17
17
|
};
|
|
18
18
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
-
var
|
|
21
|
-
__export(
|
|
20
|
+
var src_exports = {};
|
|
21
|
+
__export(src_exports, {
|
|
22
22
|
cedarjsVersion: () => cedarjsVersion,
|
|
23
23
|
prismaVersion: () => prismaVersion,
|
|
24
24
|
redwoodVersion: () => redwoodVersion
|
|
25
25
|
});
|
|
26
|
-
module.exports = __toCommonJS(
|
|
26
|
+
module.exports = __toCommonJS(src_exports);
|
|
27
27
|
var import_node_module = require("node:module");
|
|
28
|
-
__reExport(
|
|
29
|
-
__reExport(
|
|
30
|
-
__reExport(
|
|
31
|
-
__reExport(
|
|
32
|
-
__reExport(
|
|
33
|
-
__reExport(
|
|
34
|
-
__reExport(
|
|
35
|
-
__reExport(
|
|
28
|
+
__reExport(src_exports, require("./auth/index.js"), module.exports);
|
|
29
|
+
__reExport(src_exports, require("./errors.js"), module.exports);
|
|
30
|
+
__reExport(src_exports, require("./validations/validations.js"), module.exports);
|
|
31
|
+
__reExport(src_exports, require("./validations/errors.js"), module.exports);
|
|
32
|
+
__reExport(src_exports, require("./types.js"), module.exports);
|
|
33
|
+
__reExport(src_exports, require("./transforms.js"), module.exports);
|
|
34
|
+
__reExport(src_exports, require("./cors.js"), module.exports);
|
|
35
|
+
__reExport(src_exports, require("./event.js"), module.exports);
|
|
36
36
|
const import_meta = {};
|
|
37
37
|
const customRequire = (
|
|
38
38
|
// Look out for a stubbed require function (@rollup will stub it)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/api",
|
|
3
|
-
"version": "2.2.2-next.
|
|
3
|
+
"version": "2.2.2-next.31+ff2776832",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"title-case": "3.0.3"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@cedarjs/framework-tools": "2.2.2-next.
|
|
100
|
+
"@cedarjs/framework-tools": "2.2.2-next.31",
|
|
101
101
|
"@types/aws-lambda": "8.10.159",
|
|
102
102
|
"@types/jsonwebtoken": "9.0.10",
|
|
103
103
|
"@types/memjs": "1",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"publishConfig": {
|
|
129
129
|
"access": "public"
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "ff2776832afcb70cd4ca38986ec4e37043e1c44b"
|
|
132
132
|
}
|