@google-analytics/data 4.12.1 → 5.0.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/CHANGELOG.md +16 -0
- package/README.md +2 -2
- package/build/protos/google/analytics/data/v1alpha/analytics_data_api.proto +1 -1
- package/build/protos/google/analytics/data/v1alpha/data.proto +1 -1
- package/build/protos/google/analytics/data/v1beta/analytics_data_api.proto +1 -1
- package/build/protos/google/analytics/data/v1beta/data.proto +1 -1
- package/build/protos/protos.json +0 -3
- package/build/src/v1alpha/alpha_analytics_data_client.d.ts +2 -1
- package/build/src/v1alpha/alpha_analytics_data_client.js +252 -80
- package/build/src/v1alpha/alpha_analytics_data_proto_list.json +4 -0
- package/build/src/v1alpha/gapic_metadata.json +175 -0
- package/build/src/v1beta/beta_analytics_data_client.d.ts +2 -1
- package/build/src/v1beta/beta_analytics_data_client.js +201 -63
- package/build/src/v1beta/beta_analytics_data_proto_list.json +4 -0
- package/build/src/v1beta/gapic_metadata.json +137 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.0.0](https://github.com/googleapis/google-cloud-node/compare/data-v4.12.1...data-v5.0.0) (2025-03-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* upgrade to Node 18 ([#6096](https://github.com/googleapis/google-cloud-node/issues/6096))
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* [Many APIs] add request/response debug logging to gapics, update templates to gax 5 ([54a73fe](https://github.com/googleapis/google-cloud-node/commit/54a73fe74eab0675c006f24d5f1e4574c44d829b))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Miscellaneous Chores
|
|
16
|
+
|
|
17
|
+
* Upgrade to Node 18 ([#6096](https://github.com/googleapis/google-cloud-node/issues/6096)) ([eadae64](https://github.com/googleapis/google-cloud-node/commit/eadae64d54e07aa2c65097ea52e65008d4e87436))
|
|
18
|
+
|
|
3
19
|
## [4.12.1](https://github.com/googleapis/google-cloud-node/compare/data-v4.12.0...data-v4.12.1) (2025-02-12)
|
|
4
20
|
|
|
5
21
|
|
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ Google APIs Client Libraries, in [Client Libraries Explained][explained].
|
|
|
43
43
|
|
|
44
44
|
1. [Select or create a Cloud Platform project][projects].
|
|
45
45
|
1. [Enable the Google Analytics Data API][enable_api].
|
|
46
|
-
1. [Set up authentication][auth] so you can access the
|
|
46
|
+
1. [Set up authentication with a service account][auth] so you can access the
|
|
47
47
|
API from your local workstation.
|
|
48
48
|
|
|
49
49
|
### Installing the client library
|
|
@@ -203,4 +203,4 @@ See [LICENSE](https://github.com/googleapis/google-cloud-node/blob/main/LICENSE)
|
|
|
203
203
|
[projects]: https://console.cloud.google.com/project
|
|
204
204
|
[billing]: https://support.google.com/cloud/answer/6293499#enable-billing
|
|
205
205
|
[enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=analyticsdata.googleapis.com
|
|
206
|
-
[auth]: https://cloud.google.com/docs/authentication/
|
|
206
|
+
[auth]: https://cloud.google.com/docs/authentication/getting-started
|
package/build/protos/protos.json
CHANGED
|
@@ -17,6 +17,7 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
17
17
|
private _defaults;
|
|
18
18
|
private _universeDomain;
|
|
19
19
|
private _servicePath;
|
|
20
|
+
private _log;
|
|
20
21
|
auth: gax.GoogleAuth;
|
|
21
22
|
descriptors: Descriptors;
|
|
22
23
|
warn: (code: string, message: string, warnType?: string) => void;
|
|
@@ -52,7 +53,7 @@ export declare class AlphaAnalyticsDataClient {
|
|
|
52
53
|
* Developer's Console, e.g. 'grape-spaceship-123'. We will also check
|
|
53
54
|
* the environment variable GCLOUD_PROJECT for your project ID. If your
|
|
54
55
|
* app is running in an environment which supports
|
|
55
|
-
* {@link https://
|
|
56
|
+
* {@link https://cloud.google.com/docs/authentication/application-default-credentials Application Default Credentials},
|
|
56
57
|
* your project ID will be detected automatically.
|
|
57
58
|
* @param {string} [options.apiEndpoint] - The domain name of the
|
|
58
59
|
* API remote host.
|