@teamkeel/functions-runtime 0.236.1 → 0.236.2
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/compose.yaml +10 -0
- package/package.json +9 -24
- package/pnpm-lock.yaml +1455 -0
- package/src/ModelAPI.js +86 -0
- package/src/ModelAPI.test.js +441 -0
- package/src/QueryBuilder.js +29 -0
- package/src/applyWhereConditions.js +48 -0
- package/src/casing.js +24 -0
- package/src/database.js +56 -0
- package/src/handleRequest.js +52 -0
- package/src/handleRequest.test.js +112 -0
- package/src/index.d.ts +35 -0
- package/src/index.js +9 -0
- package/dist/index.d.ts +0 -296
- package/dist/index.js +0 -26405
package/compose.yaml
ADDED
package/package.json
CHANGED
|
@@ -1,45 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamkeel/functions-runtime",
|
|
3
|
-
"version": "0.236.
|
|
3
|
+
"version": "0.236.2",
|
|
4
4
|
"description": "Internal package used by @teamkeel/sdk",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"test": "jest",
|
|
10
|
-
"lint": "npx prettier --write ."
|
|
7
|
+
"test": "vitest run --reporter verbose",
|
|
8
|
+
"format": "npx prettier --write src/**/*.js"
|
|
11
9
|
},
|
|
12
10
|
"keywords": [],
|
|
13
11
|
"author": "Adam Bull (adam@keel.xyz)",
|
|
14
12
|
"license": "ISC",
|
|
15
|
-
"typings": "
|
|
13
|
+
"typings": "src/index.d.ts",
|
|
16
14
|
"publishConfig": {
|
|
17
15
|
"access": "public"
|
|
18
16
|
},
|
|
19
|
-
"files": [
|
|
20
|
-
"dist"
|
|
21
|
-
],
|
|
22
17
|
"devDependencies": {
|
|
23
|
-
"@types/commander": "^2.12.2",
|
|
24
|
-
"@types/jest": "^28.1.6",
|
|
25
|
-
"@types/node": "^18.11.9",
|
|
26
|
-
"esbuild": "^0.14.53",
|
|
27
|
-
"jest": "^28.1.3",
|
|
28
|
-
"npm-dts": "^1.3.12",
|
|
29
18
|
"prettier": "2.7.1",
|
|
30
|
-
"
|
|
31
|
-
"ts-node": "^10.9.1"
|
|
19
|
+
"vitest": "^0.27.1"
|
|
32
20
|
},
|
|
33
21
|
"dependencies": {
|
|
34
|
-
"
|
|
35
|
-
"@structured-types/api": "^3.46.12",
|
|
36
|
-
"@types/pg": "^8.6.5",
|
|
37
|
-
"chalk": "^4.1.2",
|
|
22
|
+
"aws-sdk": "^2.1295.0",
|
|
38
23
|
"change-case": "^4.1.2",
|
|
39
|
-
"commander": "^9.4.1",
|
|
40
24
|
"json-rpc-2.0": "^1.4.1",
|
|
41
25
|
"ksuid": "^3.0.0",
|
|
42
|
-
"
|
|
26
|
+
"kysely": "^0.23.4",
|
|
27
|
+
"kysely-data-api": "^0.1.4",
|
|
43
28
|
"pg": "^8.8.0"
|
|
44
29
|
}
|
|
45
30
|
}
|