@google-shopping/reports 0.11.0 → 0.13.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 +6 -4
- package/build/protos/google/shopping/merchant/reports/v1/reports.proto +1258 -0
- package/build/protos/protos.d.ts +3261 -0
- package/build/protos/protos.js +11017 -0
- package/build/protos/protos.json +2119 -0
- package/build/src/index.d.ts +6 -4
- package/build/src/index.js +5 -3
- package/build/src/index.js.map +1 -1
- package/build/src/v1/gapic_metadata.json +37 -0
- package/build/src/v1/index.d.ts +1 -0
- package/build/src/v1/index.js +23 -0
- package/build/src/v1/index.js.map +1 -0
- package/build/src/v1/report_service_client.d.ts +238 -0
- package/build/src/v1/report_service_client.js +422 -0
- package/build/src/v1/report_service_client.js.map +1 -0
- package/build/src/v1/report_service_client_config.json +43 -0
- package/build/src/v1/report_service_proto_list.json +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# [Merchant API: Node.js Client](https://github.com/googleapis/google-cloud-node/tree/main/packages/google-shopping-merchant-reports)
|
|
6
6
|
|
|
7
|
-
[](https://cloud.google.com/terms/launch-stages)
|
|
8
8
|
[](https://www.npmjs.org/package/@google-shopping/reports)
|
|
9
9
|
|
|
10
10
|
|
|
@@ -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/v1/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/v1/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/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) |
|
|
66
67
|
| 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) |
|
|
67
68
|
| 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) |
|
|
@@ -98,13 +99,14 @@ This library follows [Semantic Versioning](http://semver.org/).
|
|
|
98
99
|
|
|
99
100
|
|
|
100
101
|
|
|
102
|
+
This library is considered to be **stable**. The code surface will not change in backwards-incompatible ways
|
|
103
|
+
unless absolutely necessary (e.g. because of critical security issues) or with
|
|
104
|
+
an extensive deprecation period. Issues and requests against **stable** libraries
|
|
105
|
+
are addressed with the highest priority.
|
|
101
106
|
|
|
102
107
|
|
|
103
108
|
|
|
104
109
|
|
|
105
|
-
This library is considered to be in **preview**. This means it is still a
|
|
106
|
-
work-in-progress and under active development. Any release is subject to
|
|
107
|
-
backwards-incompatible changes at any time.
|
|
108
110
|
|
|
109
111
|
|
|
110
112
|
More Information: [Google Cloud Platform Launch Stages][launch_stages]
|