@google-cloud/datastore
Advanced tools
Comparing version 4.1.0 to 4.1.1
@@ -7,2 +7,10 @@ # Changelog | ||
### [4.1.1](https://www.github.com/googleapis/nodejs-datastore/compare/v4.1.0...v4.1.1) (2019-06-11) | ||
### Bug Fixes | ||
* added legacy samples back, until we can update external references ([#428](https://www.github.com/googleapis/nodejs-datastore/issues/428)) ([c282ff7](https://www.github.com/googleapis/nodejs-datastore/commit/c282ff7)) | ||
* **docs:** link to up-to-date googleapis.dev doc site ([#431](https://www.github.com/googleapis/nodejs-datastore/issues/431)) ([58d41a5](https://www.github.com/googleapis/nodejs-datastore/commit/58d41a5)) | ||
## [4.1.0](https://www.github.com/googleapis/nodejs-datastore/compare/v4.0.0...v4.1.0) (2019-06-05) | ||
@@ -9,0 +17,0 @@ |
{ | ||
"name": "@google-cloud/datastore", | ||
"description": "Cloud Datastore Client Library for Node.js", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"license": "Apache-2.0", | ||
@@ -44,3 +44,3 @@ "author": "Google Inc.", | ||
"proto:datastore": "mkdir -p proto && pbjs -t static-module -w commonjs -p node_modules/google-proto-files google/datastore/v1/datastore.proto | pbts -i long -o proto/datastore.d.ts -", | ||
"docs-test": "linkinator docs -r --skip www.googleapis.com", | ||
"docs-test": "linkinator docs -r --skip https://github.com/googleapis/nodejs-datastore/blob/master/samples/.+", | ||
"predocs-test": "npm run docs" | ||
@@ -47,0 +47,0 @@ }, |
@@ -60,15 +60,12 @@ [//]: # "This README.md file is auto-generated, all changes to this file will be lost." | ||
async function quickStart() { | ||
// Your Google Cloud Platform project ID | ||
const projectId = 'YOUR_PROJECT_ID'; | ||
// Creates a client | ||
const datastore = new Datastore(); | ||
// Creates a client | ||
const datastore = new Datastore({ | ||
projectId: projectId, | ||
}); | ||
async function quickstart() { | ||
// The kind for the new entity | ||
const kind = 'Task'; | ||
// The name/ID for the new entity | ||
const name = 'sampletask1'; | ||
// The Cloud Datastore key for the new entity | ||
@@ -89,3 +86,3 @@ const taskKey = datastore.key([kind, name]); | ||
} | ||
quickStart().catch(console.error); | ||
quickstart(); | ||
@@ -103,6 +100,9 @@ ``` | ||
| --------------------------- | --------------------------------- | ------ | | ||
| Add Task | [source code](https://github.com/googleapis/nodejs-datastore/blob/master/samples/addTask.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-datastore&page=editor&open_in_editor=samples/addTask.js,samples/README.md) | | ||
| Concepts | [source code](https://github.com/googleapis/nodejs-datastore/blob/master/samples/concepts.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-datastore&page=editor&open_in_editor=samples/concepts.js,samples/README.md) | | ||
| Quickstart | [source code](https://github.com/googleapis/nodejs-datastore/blob/master/samples/quickstart.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-datastore&page=editor&open_in_editor=samples/quickstart.js,samples/README.md) | | ||
| Tasks | [source code](https://github.com/googleapis/nodejs-datastore/blob/master/samples/tasks.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-datastore&page=editor&open_in_editor=samples/tasks.js,samples/README.md) | | ||
| Add Task | [source code](https://github.com/googleapis/nodejs-datastore/blob/master/samples/tasks.add.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-datastore&page=editor&open_in_editor=samples/tasks.add.js,samples/README.md) | | ||
| Delete Task | [source code](https://github.com/googleapis/nodejs-datastore/blob/master/samples/tasks.delete.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-datastore&page=editor&open_in_editor=samples/tasks.delete.js,samples/README.md) | | ||
| Legacy Samples | [source code](https://github.com/googleapis/nodejs-datastore/blob/master/samples/tasks.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-datastore&page=editor&open_in_editor=samples/tasks.js,samples/README.md) | | ||
| List Tasks | [source code](https://github.com/googleapis/nodejs-datastore/blob/master/samples/tasks.list.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-datastore&page=editor&open_in_editor=samples/tasks.list.js,samples/README.md) | | ||
| Update Task | [source code](https://github.com/googleapis/nodejs-datastore/blob/master/samples/tasks.markdone.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-datastore&page=editor&open_in_editor=samples/tasks.markdone.js,samples/README.md) | | ||
@@ -143,3 +143,3 @@ | ||
[client-docs]: https://cloud.google.com/nodejs/docs/reference/datastore/latest/ | ||
[client-docs]: https://googleapis.dev/nodejs/datastore/latest/ | ||
[product-docs]: https://cloud.google.com/datastore | ||
@@ -146,0 +146,0 @@ [shell_img]: https://gstatic.com/cloudssh/images/open-btn.png |
991417