@google-shopping/reports 0.8.1 → 0.10.0
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/README.md +3 -2
- package/build/protos/google/shopping/merchant/reports/v1alpha/reports.proto +1398 -0
- package/build/protos/protos.d.ts +4274 -22
- package/build/protos/protos.js +15635 -973
- package/build/protos/protos.json +2726 -40
- package/build/src/index.d.ts +3 -1
- package/build/src/index.js +4 -2
- package/build/src/index.js.map +1 -1
- package/build/src/v1alpha/gapic_metadata.json +37 -0
- package/build/src/v1alpha/index.d.ts +1 -0
- package/build/src/v1alpha/index.js +23 -0
- package/build/src/v1alpha/index.js.map +1 -0
- package/build/src/v1alpha/report_service_client.d.ts +235 -0
- package/build/src/v1alpha/report_service_client.js +420 -0
- package/build/src/v1alpha/report_service_client.js.map +1 -0
- package/build/src/v1alpha/report_service_client_config.json +43 -0
- package/build/src/v1alpha/report_service_proto_list.json +4 -0
- package/build/src/v1beta/report_service_client.d.ts +35 -35
- package/build/src/v1beta/report_service_client.js +31 -46
- package/build/src/v1beta/report_service_client.js.map +1 -1
- package/package.json +4 -4
- package/CHANGELOG.md +0 -74
package/README.md
CHANGED
@@ -44,7 +44,7 @@ Google APIs Client Libraries, in [Client Libraries Explained][explained].
|
|
44
44
|
1. [Select or create a Cloud Platform project][projects].
|
45
45
|
1. [Enable billing for your project][billing].
|
46
46
|
1. [Enable the Merchant API API][enable_api].
|
47
|
-
1. [Set up authentication
|
47
|
+
1. [Set up authentication][auth] so you can access the
|
48
48
|
API from your local workstation.
|
49
49
|
|
50
50
|
### Installing the client library
|
@@ -62,6 +62,7 @@ Samples are in the [`samples/`](https://github.com/googleapis/google-cloud-node/
|
|
62
62
|
|
63
63
|
| Sample | Source Code | Try it |
|
64
64
|
| --------------------------- | --------------------------------- | ------ |
|
65
|
+
| Report_service.search | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-shopping-merchant-reports/samples/generated/v1alpha/report_service.search.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/google-cloud-node&page=editor&open_in_editor=packages/google-shopping-merchant-reports/samples/generated/v1alpha/report_service.search.js,packages/google-shopping-merchant-reports/samples/README.md) |
|
65
66
|
| Report_service.search | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-shopping-merchant-reports/samples/generated/v1beta/report_service.search.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/google-cloud-node&page=editor&open_in_editor=packages/google-shopping-merchant-reports/samples/generated/v1beta/report_service.search.js,packages/google-shopping-merchant-reports/samples/README.md) |
|
66
67
|
| Quickstart | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-shopping-merchant-reports/samples/quickstart.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/google-cloud-node&page=editor&open_in_editor=packages/google-shopping-merchant-reports/samples/quickstart.js,packages/google-shopping-merchant-reports/samples/README.md) |
|
67
68
|
|
@@ -132,4 +133,4 @@ See [LICENSE](https://github.com/googleapis/google-cloud-node/blob/main/LICENSE)
|
|
132
133
|
[projects]: https://console.cloud.google.com/project
|
133
134
|
[billing]: https://support.google.com/cloud/answer/6293499#enable-billing
|
134
135
|
[enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=merchantapi.googleapis.com
|
135
|
-
[auth]: https://cloud.google.com/docs/authentication/
|
136
|
+
[auth]: https://cloud.google.com/docs/authentication/external/set-up-adc-local
|