@budibase/backend-core 3.2.7 → 3.2.11
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/index.js +80 -50934
- package/dist/index.js.map +4 -4
- package/dist/index.js.meta.json +1 -1
- package/dist/package.json +16 -9
- package/package.json +16 -9
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/backend-core",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.11",
|
|
4
4
|
"description": "Budibase backend core libraries used in server and worker",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -24,22 +24,26 @@
|
|
|
24
24
|
"build": "tsc -p tsconfig.build.json --paths null && node ./scripts/build.js",
|
|
25
25
|
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
|
|
26
26
|
"check:types": "tsc -p tsconfig.json --noEmit --paths null --target es2020",
|
|
27
|
+
"check:dependencies": "node ../../scripts/depcheck.js",
|
|
27
28
|
"test": "bash scripts/test.sh",
|
|
28
29
|
"test:watch": "jest --watchAll"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
32
|
"@budibase/nano": "10.1.5",
|
|
32
33
|
"@budibase/pouchdb-replication-stream": "1.2.11",
|
|
33
|
-
"@budibase/shared-core": "3.2.
|
|
34
|
-
"@budibase/types": "3.2.
|
|
34
|
+
"@budibase/shared-core": "3.2.11",
|
|
35
|
+
"@budibase/types": "3.2.11",
|
|
36
|
+
"@techpass/passport-openidconnect": "0.3.3",
|
|
35
37
|
"aws-cloudfront-sign": "3.0.2",
|
|
36
|
-
"aws-sdk": "2.
|
|
38
|
+
"aws-sdk": "2.1692.0",
|
|
37
39
|
"bcrypt": "5.1.0",
|
|
38
40
|
"bcryptjs": "2.4.3",
|
|
39
41
|
"bull": "4.10.1",
|
|
40
42
|
"correlation-id": "4.0.0",
|
|
41
|
-
"dd-trace": "5.
|
|
43
|
+
"dd-trace": "5.23.0",
|
|
42
44
|
"dotenv": "16.0.1",
|
|
45
|
+
"google-auth-library": "^8.0.1",
|
|
46
|
+
"google-spreadsheet": "npm:@budibase/google-spreadsheet@4.1.5",
|
|
43
47
|
"ioredis": "5.3.2",
|
|
44
48
|
"joi": "17.6.0",
|
|
45
49
|
"jsonwebtoken": "9.0.2",
|
|
@@ -54,8 +58,8 @@
|
|
|
54
58
|
"pino": "8.11.0",
|
|
55
59
|
"pino-http": "8.3.3",
|
|
56
60
|
"posthog-node": "4.0.1",
|
|
57
|
-
"pouchdb": "
|
|
58
|
-
"pouchdb-find": "
|
|
61
|
+
"pouchdb": "9.0.0",
|
|
62
|
+
"pouchdb-find": "9.0.0",
|
|
59
63
|
"redlock": "4.2.0",
|
|
60
64
|
"rotating-file-stream": "3.1.0",
|
|
61
65
|
"sanitize-s3-objectkey": "0.0.1",
|
|
@@ -64,6 +68,7 @@
|
|
|
64
68
|
"uuid": "^8.3.2"
|
|
65
69
|
},
|
|
66
70
|
"devDependencies": {
|
|
71
|
+
"@jest/types": "^29.6.3",
|
|
67
72
|
"@shopify/jest-koa-mocks": "5.1.1",
|
|
68
73
|
"@swc/core": "1.3.71",
|
|
69
74
|
"@swc/jest": "0.2.27",
|
|
@@ -71,8 +76,9 @@
|
|
|
71
76
|
"@types/cookies": "0.7.8",
|
|
72
77
|
"@types/jest": "29.5.5",
|
|
73
78
|
"@types/lodash": "4.14.200",
|
|
79
|
+
"@types/node": "^22.9.0",
|
|
74
80
|
"@types/node-fetch": "2.6.4",
|
|
75
|
-
"@types/pouchdb": "6.4.
|
|
81
|
+
"@types/pouchdb": "6.4.2",
|
|
76
82
|
"@types/redlock": "4.0.7",
|
|
77
83
|
"@types/semver": "7.3.7",
|
|
78
84
|
"@types/tar-fs": "2.0.1",
|
|
@@ -81,6 +87,7 @@
|
|
|
81
87
|
"ioredis-mock": "8.9.0",
|
|
82
88
|
"jest": "29.7.0",
|
|
83
89
|
"jest-serial-runner": "1.2.1",
|
|
90
|
+
"nock": "^13.5.6",
|
|
84
91
|
"pino-pretty": "10.0.0",
|
|
85
92
|
"pouchdb-adapter-memory": "7.2.2",
|
|
86
93
|
"testcontainers": "^10.7.2",
|
|
@@ -102,5 +109,5 @@
|
|
|
102
109
|
}
|
|
103
110
|
}
|
|
104
111
|
},
|
|
105
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "08870e9d4f826eb91577c623d9e609178dfe70c7"
|
|
106
113
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/backend-core",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.11",
|
|
4
4
|
"description": "Budibase backend core libraries used in server and worker",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -24,22 +24,26 @@
|
|
|
24
24
|
"build": "tsc -p tsconfig.build.json --paths null && node ./scripts/build.js",
|
|
25
25
|
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
|
|
26
26
|
"check:types": "tsc -p tsconfig.json --noEmit --paths null --target es2020",
|
|
27
|
+
"check:dependencies": "node ../../scripts/depcheck.js",
|
|
27
28
|
"test": "bash scripts/test.sh",
|
|
28
29
|
"test:watch": "jest --watchAll"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
32
|
"@budibase/nano": "10.1.5",
|
|
32
33
|
"@budibase/pouchdb-replication-stream": "1.2.11",
|
|
33
|
-
"@budibase/shared-core": "3.2.
|
|
34
|
-
"@budibase/types": "3.2.
|
|
34
|
+
"@budibase/shared-core": "3.2.11",
|
|
35
|
+
"@budibase/types": "3.2.11",
|
|
36
|
+
"@techpass/passport-openidconnect": "0.3.3",
|
|
35
37
|
"aws-cloudfront-sign": "3.0.2",
|
|
36
|
-
"aws-sdk": "2.
|
|
38
|
+
"aws-sdk": "2.1692.0",
|
|
37
39
|
"bcrypt": "5.1.0",
|
|
38
40
|
"bcryptjs": "2.4.3",
|
|
39
41
|
"bull": "4.10.1",
|
|
40
42
|
"correlation-id": "4.0.0",
|
|
41
|
-
"dd-trace": "5.
|
|
43
|
+
"dd-trace": "5.23.0",
|
|
42
44
|
"dotenv": "16.0.1",
|
|
45
|
+
"google-auth-library": "^8.0.1",
|
|
46
|
+
"google-spreadsheet": "npm:@budibase/google-spreadsheet@4.1.5",
|
|
43
47
|
"ioredis": "5.3.2",
|
|
44
48
|
"joi": "17.6.0",
|
|
45
49
|
"jsonwebtoken": "9.0.2",
|
|
@@ -54,8 +58,8 @@
|
|
|
54
58
|
"pino": "8.11.0",
|
|
55
59
|
"pino-http": "8.3.3",
|
|
56
60
|
"posthog-node": "4.0.1",
|
|
57
|
-
"pouchdb": "
|
|
58
|
-
"pouchdb-find": "
|
|
61
|
+
"pouchdb": "9.0.0",
|
|
62
|
+
"pouchdb-find": "9.0.0",
|
|
59
63
|
"redlock": "4.2.0",
|
|
60
64
|
"rotating-file-stream": "3.1.0",
|
|
61
65
|
"sanitize-s3-objectkey": "0.0.1",
|
|
@@ -64,6 +68,7 @@
|
|
|
64
68
|
"uuid": "^8.3.2"
|
|
65
69
|
},
|
|
66
70
|
"devDependencies": {
|
|
71
|
+
"@jest/types": "^29.6.3",
|
|
67
72
|
"@shopify/jest-koa-mocks": "5.1.1",
|
|
68
73
|
"@swc/core": "1.3.71",
|
|
69
74
|
"@swc/jest": "0.2.27",
|
|
@@ -71,8 +76,9 @@
|
|
|
71
76
|
"@types/cookies": "0.7.8",
|
|
72
77
|
"@types/jest": "29.5.5",
|
|
73
78
|
"@types/lodash": "4.14.200",
|
|
79
|
+
"@types/node": "^22.9.0",
|
|
74
80
|
"@types/node-fetch": "2.6.4",
|
|
75
|
-
"@types/pouchdb": "6.4.
|
|
81
|
+
"@types/pouchdb": "6.4.2",
|
|
76
82
|
"@types/redlock": "4.0.7",
|
|
77
83
|
"@types/semver": "7.3.7",
|
|
78
84
|
"@types/tar-fs": "2.0.1",
|
|
@@ -81,6 +87,7 @@
|
|
|
81
87
|
"ioredis-mock": "8.9.0",
|
|
82
88
|
"jest": "29.7.0",
|
|
83
89
|
"jest-serial-runner": "1.2.1",
|
|
90
|
+
"nock": "^13.5.6",
|
|
84
91
|
"pino-pretty": "10.0.0",
|
|
85
92
|
"pouchdb-adapter-memory": "7.2.2",
|
|
86
93
|
"testcontainers": "^10.7.2",
|
|
@@ -102,5 +109,5 @@
|
|
|
102
109
|
}
|
|
103
110
|
}
|
|
104
111
|
},
|
|
105
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "08870e9d4f826eb91577c623d9e609178dfe70c7"
|
|
106
113
|
}
|