nekos.life
Advanced tools
Comparing version 2.0.5 to 2.0.6
@@ -20,3 +20,2 @@ { | ||
"girlSolo": "/img/solo", | ||
"smallBoobs": "/img/smallboobs", | ||
"pussyWankGif": "/img/pwankg", | ||
@@ -41,4 +40,3 @@ "pussyArt": "/img/pussy_jpg", | ||
"cumArts": "/img/cum_jpg", | ||
"blowJob": "/img/blowjob", | ||
"pussyGif": "/img/pussy" | ||
"blowJob": "/img/blowjob" | ||
}, | ||
@@ -69,4 +67,8 @@ "sfw": { | ||
"woof": "/img/woof", | ||
"spoiler": "/spoiler" | ||
"spoiler": "/spoiler", | ||
"wallpaper": "/img/wallpaper", | ||
"goose": "/img/goose", | ||
"gecg": "/img/gecg", | ||
"avatar": "/img/avatar" | ||
} | ||
} |
{ | ||
"name": "nekos.life", | ||
"version": "2.0.5", | ||
"version": "2.0.6", | ||
"description": "JS wrapper for https://nekos.life", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -36,11 +36,14 @@ [![npm](https://img.shields.io/npm/v/nekos.life.svg)](https://www.npmjs.com/package/nekos.life) | ||
| `cuddle` | Get a URL of a cuddle image/gif | | ||
| `kemonomimi` | Get a URL of a kemonomimi image/gif | | ||
| `holo` | Get a URL of a Holo image/gif | | ||
| `woof` | Get a URL of a dog image/gif | | ||
| `wallpaper` | Get a URL of a wallpaper | | ||
| `goose` | Get a URL of a goose image | | ||
| `gecg` | Get a URL of a gecg (genetically engineered catgirl) image | | ||
| `avatar` | Get a URL of an avatar image | | ||
| `why` | Get `text` of a question | | ||
| `catText`| Get `text` of a cat emoji | | ||
| `OwOify` | Get OwOified `text` of a string | | ||
| `chat` | Sends the text and replies with a `text` as a response | | ||
| `8Ball` | Sends the text and replies with a `text` as a response to the magic 8Ball and an image as well.| | ||
| `fact` | Gets the text and replies with a `text` that is a random fact | | ||
| `kemonomimi` | Get a URL of a kemonomimi image/gif | | ||
| `holo` | Get a URL of a Holo image/gif | | ||
| `woof` | Get a URL of a dog image/gif | | ||
| `spoiler` | Creates an individual spoiler per letter for Discord | | ||
@@ -69,3 +72,2 @@ | ||
| `girlSolo` | Gets a NSFW URL of a solo girl image | | ||
| `smallBoobs` | Gets a NSFW URL of an/a image/gif small boobs | | ||
| `pussyWankGif` | Gets a NSFW URL of a gif of pussy masterbation | | ||
@@ -91,3 +93,2 @@ | `pussyArt` | Gets a NSFW URL of an/a image/gif of pussy art | | ||
| `blowJob` | Gets a NSFW URL of an/a image/gif blowjob | | ||
| `pussyGif` | Gets a NSFW URL of a gif of pussy | | ||
@@ -100,3 +101,3 @@ All of the endpoints but the ones marked with `text`, except Chat/8Ball/Fact in the description will return JSON: `{ url: <theURL>}`. | ||
`sfw.fact` will return JSON `{response: <fact string>}` | ||
`sfw.fact` will return JSON `{fact: <fact string>}` | ||
`sfw.8Ball` will return JSON `{response: <8Ball response string>, url: <URL to a matching 8Ball image>}` | ||
@@ -196,2 +197,2 @@ | ||
{ url: 'https://cdn.nekos.life/lewd/lewd_neko_058.jpeg' } | ||
``` | ||
``` |
@@ -23,3 +23,2 @@ //List all the functions | ||
OwOify(opts: NekoClient.NekoQueryParams):Promise<NekoClient.NekoOwOResult>; | ||
chat(opts: NekoClient.NekoChatParams):Promise<NekoClient.NekoChatResults>; | ||
"8Ball"(opts: NekoClient.NekoQueryParams):Promise<NekoClient.NekoChatResults>; | ||
@@ -30,2 +29,6 @@ fact():Promise<NekoClient.NekoFactResult>; | ||
spoiler(opts: NekoClient.NekoQueryParams):Promise<NekoClient.NekoOwOResult>; | ||
avatar():Promise<NekoClient.NekoRequestResults>; | ||
gecg():Promise<NekoClient.NekoRequestResults>; | ||
goose():Promise<NekoClient.NekoRequestResults>; | ||
wallpaper():Promise<NekoClient.NekoRequestResults>; | ||
} | ||
@@ -50,3 +53,2 @@ nsfw: { | ||
girlSolo():Promise<NekoClient.NekoRequestResults>; | ||
smallBoobs():Promise<NekoClient.NekoRequestResults>; | ||
pussyWankGif():Promise<NekoClient.NekoRequestResults>; | ||
@@ -72,3 +74,2 @@ pussyArt():Promise<NekoClient.NekoRequestResults>; | ||
blowJob():Promise<NekoClient.NekoRequestResults>; | ||
pussyGif():Promise<NekoClient.NekoRequestResults>; | ||
} | ||
@@ -85,5 +86,2 @@ } | ||
} | ||
export interface NekoChatParams extends NekoQueryParams { | ||
owo?: boolean; | ||
} | ||
export interface NekoRequestResults { | ||
@@ -90,0 +88,0 @@ url: string; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
194