-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from v-empower/adding-api-calls
Initial commit
- Loading branch information
Showing
17 changed files
with
1,044 additions
and
120 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "react-native-meet-hour-sdk", | ||
"description": "Meet Hour SDK wrapper for React Native.", | ||
"version": "3.0.17", | ||
"description": "Meet Hour SDK for React Native.", | ||
"version": "3.0.18", | ||
"author": "MeetHour, LLC <[email protected]>", | ||
"contributors": [], | ||
"homepage": "https://github.com/v-empower/react-native-meet-hour-sdk", | ||
|
@@ -31,6 +31,7 @@ | |
"test": "jest", | ||
"typescript": "tsc --noEmit", | ||
"lint": "eslint \"**/*.{js,ts,tsx}\"", | ||
"lint-fix": "eslint \"**/*.{js,ts,tsx}\" --fix", | ||
"prepare": "bob build", | ||
"release": "release-it", | ||
"pods": "pod-install --quiet", | ||
|
@@ -144,5 +145,7 @@ | |
] | ||
] | ||
}, | ||
"dependencies": {} | ||
"dependencies": { | ||
"axios": "^1.2.2" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export const GRANT_TYPE = 'password'; | ||
export const GRANT_REFRESH_TYPE = 'refresh_token'; | ||
export const API_BASE_URL = 'api.meethour.io'; | ||
export const API_VERSION = 'v1.1'; |
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
Oops, something went wrong.