@google-cloud/dms 2.1.2 → 2.2.1
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/CHANGELOG.md +14 -0
- package/README.md +25 -7
- package/build/protos/google/cloud/clouddms/v1/clouddms.proto +1 -1
- package/build/protos/google/cloud/clouddms/v1/clouddms_resources.proto +1 -1
- package/build/protos/protos.d.ts +1494 -1
- package/build/protos/protos.js +3854 -1
- package/build/protos/protos.json +293 -1
- package/build/src/index.d.ts +1 -1
- package/build/src/index.js +1 -1
- package/build/src/v1/data_migration_service_client.d.ts +9 -9
- package/build/src/v1/data_migration_service_client.js +7 -5
- package/build/src/v1/data_migration_service_client.js.map +1 -1
- package/build/src/v1/index.js +1 -1
- package/package.json +12 -7
package/package.json
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@google-cloud/dms",
|
|
3
3
|
"description": "Cloud Database Migration API client for Node.js",
|
|
4
|
-
"version": "2.1
|
|
4
|
+
"version": "2.2.1",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Google LLC",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=12.0.0"
|
|
9
9
|
},
|
|
10
|
-
"repository":
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"directory": "packages/google-cloud-clouddms",
|
|
13
|
+
"url": "https://github.com/googleapis/google-cloud-node.git"
|
|
14
|
+
},
|
|
11
15
|
"main": "build/src/index.js",
|
|
12
16
|
"files": [
|
|
13
17
|
"build/src",
|
|
@@ -25,7 +29,7 @@
|
|
|
25
29
|
"Cloud Database Migration API"
|
|
26
30
|
],
|
|
27
31
|
"scripts": {
|
|
28
|
-
"samples-test": "
|
|
32
|
+
"samples-test": "npm run compile && cd samples/ && npm link ../ && npm i && npm test",
|
|
29
33
|
"samples-test-suite": "cd samples/ && npm link ../ && npm test && cd ../",
|
|
30
34
|
"clean": "gts clean",
|
|
31
35
|
"compile": "tsc -p . && cp -r protos build/",
|
|
@@ -36,7 +40,7 @@
|
|
|
36
40
|
"lint": "gts check",
|
|
37
41
|
"predocs-test": "npm run docs",
|
|
38
42
|
"prepare": "npm run compile-protos && npm run compile",
|
|
39
|
-
"system-test": "c8 mocha build/system-test",
|
|
43
|
+
"system-test": "npm run compile && c8 mocha build/system-test",
|
|
40
44
|
"test": "c8 mocha build/test",
|
|
41
45
|
"prelint": "cd samples; npm link ../; npm install",
|
|
42
46
|
"precompile": "gts clean"
|
|
@@ -58,10 +62,11 @@
|
|
|
58
62
|
"mocha": "^9.2.2",
|
|
59
63
|
"null-loader": "^4.0.0",
|
|
60
64
|
"pack-n-play": "^1.0.0-2",
|
|
61
|
-
"sinon": "^
|
|
65
|
+
"sinon": "^15.0.0",
|
|
62
66
|
"ts-loader": "^9.0.0",
|
|
63
67
|
"typescript": "^4.6.4",
|
|
64
68
|
"webpack": "^5.0.0",
|
|
65
|
-
"webpack-cli": "^
|
|
66
|
-
}
|
|
69
|
+
"webpack-cli": "^5.0.0"
|
|
70
|
+
},
|
|
71
|
+
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-cloud-clouddms"
|
|
67
72
|
}
|