final deprecation PR

This commit is contained in:
Luke Hagar
2024-01-19 11:53:36 -06:00
parent 35e508deb0
commit 89af380d22
4 changed files with 11 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
# plex-api-oauth # plex-api-oauth
# THIS PACKAGE IS DEPRECATED IN FAVOR OF https://github.com/LukeHagar/plexjs
An NPM Module designed to make Plex Media Server and plex.tv API calls easier to implement in JavaScript and React projects An NPM Module designed to make Plex Media Server and plex.tv API calls easier to implement in JavaScript and React projects
<img src="https://img.shields.io/lgtm/grade/javascript/github/LukeHagar/plex-api-oauth" /> <img src="https://img.shields.io/npm/dw/plex-api-oauth" /> <img src="https://img.shields.io/lgtm/grade/javascript/github/LukeHagar/plex-api-oauth" /> <img src="https://img.shields.io/npm/dw/plex-api-oauth" />
@@ -8,8 +10,6 @@ https://www.npmjs.com/package/plex-api-oauth
This is a JavaScript Module written to take the OAuth Module written by @Dmbob https://github.com/Dmbob/plex-oauth and incorporate it into a front end friend frame work to make development of Plex API Based applications better This is a JavaScript Module written to take the OAuth Module written by @Dmbob https://github.com/Dmbob/plex-oauth and incorporate it into a front end friend frame work to make development of Plex API Based applications better
# Interactive API Explorer: https://lukehagar.com/projects/plex-api-oauth
## How to Use ## How to Use
Examples Assume React Syntax Examples Assume React Syntax

View File

@@ -1,6 +1,6 @@
{ {
"name": "plex-api-oauth", "name": "plex-api-oauth",
"version": "1.2.9", "version": "1.3.0",
"description": "An NPM Module designed to make Plex Media Server and plex.tv API calls easier to implement in JavaScript projects", "description": "An NPM Module designed to make Plex Media Server and plex.tv API calls easier to implement in JavaScript projects",
"main": "./src/index.js", "main": "./src/index.js",
"keywords": [ "keywords": [

View File

@@ -3,6 +3,10 @@ import { v4 } from "uuid";
import axios from "axios"; import axios from "axios";
import qs from "qs"; import qs from "qs";
console.log(
"THIS PACKAGE IS DEPRECATED. USE `@lukehagar/plexjs` https://github.com/LukeHagar/plexjs INSTEAD"
);
export function CreatePlexClientInformation({ export function CreatePlexClientInformation({
clientIdentifier = v4(), clientIdentifier = v4(),
product = FnBrowserDetect(), product = FnBrowserDetect(),

View File

@@ -1,3 +1,7 @@
console.log(
"THIS PACKAGE IS DEPRECATED. USE `@lukehagar/plexjs` https://github.com/LukeHagar/plexjs INSTEAD"
);
export { export {
CreatePlexClientInformation, CreatePlexClientInformation,
PlexLogin, PlexLogin,