Compare commits

..

No commits in common. "881c82bd12f5552d5cacbed9854915211c093383" and "ab8bdbbe3341fc4657654f0387811c9caffb68b1" have entirely different histories.

3 changed files with 5 additions and 6 deletions

5
package-lock.json generated
View File

@ -1,13 +1,12 @@
{ {
"name": "sati", "name": "sati",
"version": "0.3.2", "version": "1.0.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "sati", "name": "sati",
"version": "0.3.2", "version": "1.0.0",
"license": "MIT",
"dependencies": { "dependencies": {
"@types/node": "^20.1.1", "@types/node": "^20.1.1",
"@types/ws": "^8.5.4", "@types/ws": "^8.5.4",

View File

@ -1,6 +1,6 @@
{ {
"name": "sati", "name": "sati",
"version": "0.3.2", "version": "0.3.1",
"description": "next generation anti-captcha", "description": "next generation anti-captcha",
"license": "MIT", "license": "MIT",
"repository": { "repository": {
@ -37,7 +37,7 @@
"types": "./dist/src/index.d.ts", "types": "./dist/src/index.d.ts",
"exports": { "exports": {
".": { ".": {
"import": "./dist/sati.node.esm.mjs", "import": "./dist/sati.node.esm.js",
"require": "./dist/sati.node.cjs.js", "require": "./dist/sati.node.cjs.js",
"types": "./dist/src/index.d.ts" "types": "./dist/src/index.d.ts"
}, },

View File

@ -25,7 +25,7 @@ export type tasks = {
params: { params: {
siteKey: string, siteKey: string,
pageUrl: string, pageUrl: string,
data?: Record<string, string> data: Record<string, string>
serviceUrl?: string, serviceUrl?: string,
proxy?: string proxy?: string
}, },