@mxpicture/gcp-functions-generator 1.2.47 → 1.2.49
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/exports.gen.json +4 -4
- package/package.json +21 -9
package/dist/exports.gen.json
CHANGED
|
@@ -1244,13 +1244,13 @@
|
|
|
1244
1244
|
},
|
|
1245
1245
|
{
|
|
1246
1246
|
"name": "GeneratorBase",
|
|
1247
|
-
"kind": "
|
|
1248
|
-
"source": "@mxpicture/gcp-functions-generator/
|
|
1247
|
+
"kind": "ClassDeclaration",
|
|
1248
|
+
"source": "@mxpicture/gcp-functions-generator/run"
|
|
1249
1249
|
},
|
|
1250
1250
|
{
|
|
1251
1251
|
"name": "GeneratorBase",
|
|
1252
|
-
"kind": "
|
|
1253
|
-
"source": "@mxpicture/gcp-functions-generator/
|
|
1252
|
+
"kind": "InterfaceDeclaration",
|
|
1253
|
+
"source": "@mxpicture/gcp-functions-generator/common"
|
|
1254
1254
|
},
|
|
1255
1255
|
{
|
|
1256
1256
|
"name": "GeneratorBaseFile",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mxpicture/gcp-functions-generator",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.49",
|
|
4
4
|
"description": "Tools for google cloud functions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "MXPicture",
|
|
@@ -10,11 +10,23 @@
|
|
|
10
10
|
"url": "git+https://github.com/MXPicture/npm-gcp-functions.git"
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
|
-
"./common":
|
|
13
|
+
"./common": {
|
|
14
|
+
"types": "./src/common/index.ts",
|
|
15
|
+
"default": "./dist/common/index.js"
|
|
16
|
+
},
|
|
14
17
|
"./package.json": "./package.json",
|
|
15
|
-
"./decorator":
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
"./decorator": {
|
|
19
|
+
"types": "./src/decorator/index.ts",
|
|
20
|
+
"default": "./dist/decorator/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./generator": {
|
|
23
|
+
"types": "./src/generator/index.ts",
|
|
24
|
+
"default": "./dist/generator/index.js"
|
|
25
|
+
},
|
|
26
|
+
"./run": {
|
|
27
|
+
"types": "./src/run/index.ts",
|
|
28
|
+
"default": "./dist/run/index.js"
|
|
29
|
+
}
|
|
18
30
|
},
|
|
19
31
|
"files": [
|
|
20
32
|
"dist"
|
|
@@ -36,10 +48,10 @@
|
|
|
36
48
|
},
|
|
37
49
|
"dependencies": {
|
|
38
50
|
"@google-cloud/scheduler": "^5.3.1",
|
|
39
|
-
"@mxpicture/build-api": "^0.3.
|
|
40
|
-
"@mxpicture/gcp-functions-backend": "^1.2.
|
|
41
|
-
"@mxpicture/gcp-functions-common": "^1.2.
|
|
42
|
-
"@mxpicture/gcp-functions-frontend": "^1.2.
|
|
51
|
+
"@mxpicture/build-api": "^0.3.57",
|
|
52
|
+
"@mxpicture/gcp-functions-backend": "^1.2.49",
|
|
53
|
+
"@mxpicture/gcp-functions-common": "^1.2.49",
|
|
54
|
+
"@mxpicture/gcp-functions-frontend": "^1.2.49",
|
|
43
55
|
"@types/micromatch": "^4.0.10",
|
|
44
56
|
"google-auth-library": "^10.6.2",
|
|
45
57
|
"googleapis": "^171.4.0",
|