@google-ads/datamanager-util 0.4.0 → 0.4.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/README.md +36 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Google Data Manager API Utility Library for Node.js
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@google-ads/datamanager-util)
|
|
4
|
+
[](https://github.com/googleads/data-manager-node/blob/main/LICENSE)
|
|
5
|
+
|
|
6
|
+
A Node.js companion utility library for the
|
|
7
|
+
[Google Data Manager API](https://developers.google.com/data-manager/api).
|
|
8
|
+
|
|
9
|
+
This library provides helper utilities to normalize, hash (SHA-256), and encode
|
|
10
|
+
user identifiers (such as email addresses, phone numbers, and physical
|
|
11
|
+
addresses) to meet Data Manager API ingestion requirements.
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```shell
|
|
16
|
+
npm install @google-ads/datamanager-util
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage and Code Samples
|
|
20
|
+
|
|
21
|
+
For complete, runnable examples demonstrating how to use this utility library
|
|
22
|
+
with the `@google-ads/datamanager` client library, see the
|
|
23
|
+
[code samples on GitHub](https://github.com/googleads/data-manager-node/tree/main/samples).
|
|
24
|
+
|
|
25
|
+
## Documentation & Resources
|
|
26
|
+
|
|
27
|
+
- [Google Data Manager API Documentation](https://developers.google.com/data-manager/api)
|
|
28
|
+
- [Node.js Quickstart Guide](https://developers.google.com/data-manager/api/devguides/quickstart/install-library#node.js)
|
|
29
|
+
- [GitHub Repository](https://github.com/googleads/data-manager-node)
|
|
30
|
+
- [Issue Tracker](https://github.com/googleads/data-manager-node/issues)
|
|
31
|
+
|
|
32
|
+
## License
|
|
33
|
+
|
|
34
|
+
Apache 2.0 - See
|
|
35
|
+
[LICENSE](https://github.com/googleads/data-manager-node/blob/main/LICENSE) for
|
|
36
|
+
more information.
|