https://github.com/copyleftdev/healthharbor_dental_ts_client
https://github.com/copyleftdev/healthharbor_dental_ts_client
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.5%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: copyleftdev
- Language: TypeScript
- Default Branch: main
- Size: 24.4 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
Health Harbor Dental Client
This project provides an unofficial TypeScript client library for interacting with the Health Harbor Dental API. It is designed to help developers integrate Health Harbor Dental services into their applications with ease.
Features
- Easy-to-use methods for fetching and creating dental inquiries.
- Integrated TypeScript typings for excellent developer experience and type safety.
- Configurable and ready for extension.
Getting Started
Prerequisites
- Node.js (v12 or later)
- npm (v6 or later) or yarn
Installation
To use this library in your project, run:
bash
npm install healthharbor_dental_client
or with yarn:
bash
yarn add healthharbor_dental_client
Usage
Here's a quick example to get you started:
```typescript import { HealthHarborDentalClient } from './client';
async function main() { const client = new HealthHarborDentalClient({ baseURL: 'https://api.healthharbor.com', authToken: 'yourauthtoken_here' });
try { const inquiries = await client.getInquiries(); console.log(inquiries);
const newInquiryResponse = await client.createInquiry({
patientName: "John Doe",
dob: "1980-01-01",
memberId: "123456789",
npi: "987654321",
taxId: "123456789",
insurance: "CIGNA"
});
console.log(newInquiryResponse);
} catch (error) { console.error('Error:', error); } }
main(); ```
Development
To set up a local development environment for this library, follow these steps:
- Clone the repository:
bash git clone https://github.com/copyleftdev/healthharbor_dental_ts_client.git - Navigate to the project directory:
bash cd healthharbor_dental_client - Install dependencies:
bash npm install - Build the project:
bash npm run build
Testing
Run the automated tests for this project with:
bash
npm test
Owner
- Name: Donald Johnson
- Login: copyleftdev
- Kind: user
- Location: Los Angeles
- Repositories: 39
- Profile: https://github.com/copyleftdev
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: over 1 year ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- actions/checkout v2 composite
- actions/setup-node v2 composite
- actions/upload-artifact v2 composite
- 142 dependencies
- @typescript-eslint/eslint-plugin ^7.8.0 development
- @typescript-eslint/parser ^7.8.0 development
- eslint ^8.57.0 development
- @types/axios ^0.14.0
- @types/node ^20.12.11
- axios ^1.6.8
- reflect-metadata ^0.2.2
- typedi ^0.10.0
- typescript ^5.4.5