@rinse-dental/open-dental 2.5.6 → 2.5.7

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 CHANGED
@@ -1,8 +1,10 @@
1
1
 
2
2
 
3
- # Unofficial Open Dental node sdk.
4
3
 
5
- // Init
4
+ ## Unofficial Open Dental node sdk.
5
+
6
+ ```
7
+ //Init
6
8
 
7
9
  const { OpenDental } = require('@rinse-dental/open-dental');
8
10
 
@@ -13,6 +15,7 @@ OpenDental.initialize(
13
15
 
14
16
 
15
17
  //Example
18
+
16
19
  const patients = OpenDental.Patients();
17
20
  const getPatients = getPatients({
18
21
  LName: "Smith",
@@ -27,4 +30,6 @@ const postPatient = patients.createPatient({
27
30
  ...additionalData,
28
31
  });
29
32
 
30
- return postPatient; //Returns patient object
33
+ return postPatient; //Returns patient object
34
+
35
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rinse-dental/open-dental",
3
- "version": "2.5.6",
3
+ "version": "2.5.7",
4
4
  "description": "A TypeScript library for easily accessing Open Dental APIs.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/deploy_notes.txt DELETED
@@ -1,25 +0,0 @@
1
- npm run build
2
-
3
- git add .
4
- git commit -m "notes"
5
-
6
- npm version patch //patch, minor, major
7
- npm pack
8
- git push origin main
9
- git tag //confirm tag
10
- git push origin vX.Y.Z
11
- gh release create vX.Y.Z --title "Release vX.Y.Z" --notes ""
12
-
13
- gh release create v1.0.4 --title "Release v1.0.4" --notes "addition of patplan, insplan, familymodule apis"
14
-
15
- if the tag doesn't exist locally:
16
- git tag vX.Y.Z
17
- git push origin vX.Y.Z
18
- gh release create vX.Y.Z --title "Release vX.Y.Z" --notes ""
19
-
20
-
21
-
22
-
23
-
24
- npm install /Users/casey/Dev/rinse-dental/open-dental/rinse-dental-open-dental-0.1.2.tgz
25
- "@rinse-dental/open-dental":"^0.1.2",