-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
API version 2. See https://docs.patch.io/#/changelog for changes (#79)
- Loading branch information
Jeremy Oustrich
authored
Oct 13, 2022
1 parent
64481e0
commit 3d54524
Showing
57 changed files
with
885 additions
and
373 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* Patch API V1 | ||
* Patch API V2 | ||
* The core API used to integrate with Patch's service | ||
* | ||
* Contact: [email protected] | ||
|
@@ -16,7 +16,8 @@ class ApiClient { | |
}; | ||
|
||
this.defaultHeaders = { | ||
'User-Agent': 'patch-node/1.24.2' | ||
'User-Agent': 'patch-node/2.0.0', | ||
'Patch-Version': 2 | ||
}; | ||
|
||
/** | ||
|
Oops, something went wrong.