@lowdefy/connection-mongodb 0.0.0-experimental-20231123101256
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/LICENSE +201 -0
- package/dist/auth/adapters/MongoDBAdapter/MongoDBAdapter.js +31 -0
- package/dist/auth/adapters.js +2 -0
- package/dist/connections/MongoDBCollection/MongoDBAggregation/MongoDBAggregation.js +53 -0
- package/dist/connections/MongoDBCollection/MongoDBAggregation/schema.js +42 -0
- package/dist/connections/MongoDBCollection/MongoDBCollection.js +38 -0
- package/dist/connections/MongoDBCollection/MongoDBDeleteMany/MongoDBDeleteMany.js +43 -0
- package/dist/connections/MongoDBCollection/MongoDBDeleteMany/schema.js +42 -0
- package/dist/connections/MongoDBCollection/MongoDBDeleteOne/MongoDBDeleteOne.js +39 -0
- package/dist/connections/MongoDBCollection/MongoDBDeleteOne/schema.js +42 -0
- package/dist/connections/MongoDBCollection/MongoDBFind/MongoDBFind.js +40 -0
- package/dist/connections/MongoDBCollection/MongoDBFind/schema.js +42 -0
- package/dist/connections/MongoDBCollection/MongoDBFindOne/MongoDBFindOne.js +39 -0
- package/dist/connections/MongoDBCollection/MongoDBFindOne/schema.js +42 -0
- package/dist/connections/MongoDBCollection/MongoDBInsertMany/MongoDBInsertMany.js +43 -0
- package/dist/connections/MongoDBCollection/MongoDBInsertMany/schema.js +48 -0
- package/dist/connections/MongoDBCollection/MongoDBInsertOne/MongoDBInsertOne.js +43 -0
- package/dist/connections/MongoDBCollection/MongoDBInsertOne/schema.js +42 -0
- package/dist/connections/MongoDBCollection/MongoDBUpdateMany/MongoDBUpdateMany.js +45 -0
- package/dist/connections/MongoDBCollection/MongoDBUpdateMany/schema.js +56 -0
- package/dist/connections/MongoDBCollection/MongoDBUpdateOne/MongoDBUpdateOne.js +39 -0
- package/dist/connections/MongoDBCollection/MongoDBUpdateOne/schema.js +56 -0
- package/dist/connections/MongoDBCollection/getCollection.js +31 -0
- package/dist/connections/MongoDBCollection/schema.js +69 -0
- package/dist/connections/MongoDBCollection/serialize.js +59 -0
- package/dist/connections.js +15 -0
- package/dist/types.js +23 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lowdefy/connection-mongodb",
|
|
3
|
+
"version": "0.0.0-experimental-20231123101256",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"description": "",
|
|
6
|
+
"homepage": "https://lowdefy.com",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"lowdefy",
|
|
9
|
+
"lowdefy connection",
|
|
10
|
+
"lowdefy plugin"
|
|
11
|
+
],
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/lowdefy/lowdefy/issues"
|
|
14
|
+
},
|
|
15
|
+
"contributors": [
|
|
16
|
+
{
|
|
17
|
+
"name": "Sam Tolmay",
|
|
18
|
+
"url": "https://github.com/SamTolmay"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "Gerrie van Wyk",
|
|
22
|
+
"url": "https://github.com/Gervwyk"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/lowdefy/lowdefy.git"
|
|
28
|
+
},
|
|
29
|
+
"type": "module",
|
|
30
|
+
"exports": {
|
|
31
|
+
"./auth/adapters": "./dist/auth/adapters.js",
|
|
32
|
+
"./connections": "./dist/connections.js",
|
|
33
|
+
"./types": "./dist/types.js"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist/*"
|
|
37
|
+
],
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@lowdefy/helpers": "0.0.0-experimental-20231123101256",
|
|
40
|
+
"@next-auth/mongodb-adapter": "1.1.3",
|
|
41
|
+
"mongodb": "4.17.1",
|
|
42
|
+
"saslprep": "1.0.3"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@lowdefy/ajv": "0.0.0-experimental-20231123101256",
|
|
46
|
+
"@shelf/jest-mongodb": "4.1.7",
|
|
47
|
+
"@swc/cli": "0.1.63",
|
|
48
|
+
"@swc/core": "1.3.99",
|
|
49
|
+
"@swc/jest": "0.2.29",
|
|
50
|
+
"jest": "28.1.3",
|
|
51
|
+
"jest-environment-node": "28.1.3",
|
|
52
|
+
"next": "13.5.4",
|
|
53
|
+
"next-auth": "4.24.5",
|
|
54
|
+
"react": "18.2.0",
|
|
55
|
+
"react-dom": "18.2.0"
|
|
56
|
+
},
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public"
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "swc src --out-dir dist --config-file ../../../../.swcrc --delete-dir-on-start --copy-files",
|
|
62
|
+
"clean": "rm -rf dist",
|
|
63
|
+
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
|
64
|
+
}
|
|
65
|
+
}
|