@tesla-insurance/vinless-quote 9.9.9
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 +18 -0
- package/index.js +6 -0
- package/package.json +11 -0
- package/test/smoke.js +2 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @tesla-insurance/vinless-quote
|
|
2
|
+
|
|
3
|
+
VIN-less insurance quote pipeline for vehicle and driver descriptors
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
Early internal release. Public API surface is being finalized — documentation and
|
|
8
|
+
full implementation land in the next release.
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install @tesla-insurance/vinless-quote
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
|
|
18
|
+
MIT
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tesla-insurance/vinless-quote",
|
|
3
|
+
"version": "9.9.9",
|
|
4
|
+
"description": "VIN-less insurance quote pipeline for vehicle and driver descriptors",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": { "test": "node test/smoke.js" },
|
|
7
|
+
"files": ["index.js", "README.md", "test"],
|
|
8
|
+
"keywords": ["insurance", "quote", "vinless", "vehicle", "driver", "pricing", "enterprise"],
|
|
9
|
+
"engines": { "node": ">=14" },
|
|
10
|
+
"license": "MIT"
|
|
11
|
+
}
|
package/test/smoke.js
ADDED