https://github.com/shravan20/reconcilix-web-service
Seamless Identity Reconciliation
https://github.com/shravan20/reconcilix-web-service
Last synced: 6 months ago
JSON representation
Seamless Identity Reconciliation
- Host: GitHub
- URL: https://github.com/shravan20/reconcilix-web-service
- Owner: shravan20
- License: mit
- Created: 2023-06-10T16:44:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-03T15:06:43.000Z (over 1 year ago)
- Last Synced: 2025-02-09T19:17:34.833Z (8 months ago)
- Language: JavaScript
- Size: 11.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# reconcilix-web-service
Seamless Identity Reconciliation#### DB Models:
Contact:
```ts
{
id Int
phoneNumber String?
email String?
linkedId Int? // the ID of another Contact linked to this one
linkPrecedence "secondary"|"primary" // "primary" if it's the first Contact in the link
createdAt DateTime
updatedAt DateTime
deletedAt DateTime?
}
```###