@corsair-dev/addresszen 0.1.0 → 0.1.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 +34 -0
- package/package.json +9 -3
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# @corsair-dev/addresszen
|
|
2
|
+
|
|
3
|
+
Addresszen plugin for Corsair.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @corsair-dev/addresszen
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Endpoints
|
|
12
|
+
|
|
13
|
+
| Operation | Operation ID | Risk | Description |
|
|
14
|
+
|-----------|--------------|------|-------------|
|
|
15
|
+
| `autocomplete.addresses` | `addresszen.api.autocomplete.addresses` | `read` | Get address autocomplete suggestions for a partial address query |
|
|
16
|
+
| `key.availability` | `addresszen.api.key.availability` | `read` | Get public information on an API key, including whether it is currently usable |
|
|
17
|
+
| `resolve.addressUsa` | `addresszen.api.resolve.addressUsa` | `read` | Resolve an address autocompletion by its address ID and return the full address in US format |
|
|
18
|
+
| `verify.address` | `addresszen.api.verify.address` | `read` | Verify and standardize a US address using USPS CASS validation |
|
|
19
|
+
|
|
20
|
+
## Auth
|
|
21
|
+
|
|
22
|
+
Auth: API key. Corsair prompts your tenant for credentials on first use.
|
|
23
|
+
|
|
24
|
+
## Webhooks
|
|
25
|
+
|
|
26
|
+
No webhooks.
|
|
27
|
+
|
|
28
|
+
## Reference
|
|
29
|
+
|
|
30
|
+
Full docs, types, and examples: https://docs.corsair.dev/plugins/addresszen
|
|
31
|
+
|
|
32
|
+
## License
|
|
33
|
+
|
|
34
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corsair-dev/addresszen",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Addresszen plugin for Corsair",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,18 +25,24 @@
|
|
|
25
25
|
"tsup": "^8.0.1",
|
|
26
26
|
"typescript": "^5.9.3",
|
|
27
27
|
"zod": "^4.1.13",
|
|
28
|
-
"corsair": "0.1.
|
|
28
|
+
"corsair": "0.1.129"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
31
|
"corsair",
|
|
32
32
|
"addresszen",
|
|
33
33
|
"plugin"
|
|
34
34
|
],
|
|
35
|
-
"author": "",
|
|
35
|
+
"author": "Corsair (https://corsair.dev)",
|
|
36
36
|
"license": "Apache-2.0",
|
|
37
37
|
"files": [
|
|
38
38
|
"dist"
|
|
39
39
|
],
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/corsairdev/corsair.git",
|
|
43
|
+
"directory": "packages/addresszen"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://docs.corsair.dev/plugins/addresszen",
|
|
40
46
|
"scripts": {
|
|
41
47
|
"build": "rm -rf dist && tsc --build --force && tsup",
|
|
42
48
|
"typecheck": "tsc --noEmit",
|