@privy-io/api-base
Advanced tools
Comparing version 0.3.0 to 0.4.0-beta-20231019031018
import * as zod from 'zod'; | ||
import { ZodType, ZodCatch, z } from 'zod'; | ||
export { z } from 'zod'; | ||
@@ -47,3 +46,5 @@ declare enum PrivyErrorCode { | ||
/** You attempted to set a password on a wallet with an existing password */ | ||
WALLET_PASSWORD_EXISTS = "wallet_password_exists" | ||
WALLET_PASSWORD_EXISTS = "wallet_password_exists", | ||
/** The user attempted to complete an oauth flow with a different state than started. */ | ||
OAUTH_STATE_MISMATCH = "oauth_state_mismatch" | ||
} | ||
@@ -50,0 +51,0 @@ |
@@ -1,1 +0,1 @@ | ||
"use strict";var u=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var b=Object.getOwnPropertyNames;var U=Object.prototype.hasOwnProperty;var M=(p,e)=>{for(var s in e)u(p,s,{get:e[s],enumerable:!0})},k=(p,e,s,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let a of b(e))!U.call(p,a)&&a!==s&&u(p,a,{get:()=>e[a],enumerable:!(r=B(e,a))||r.enumerable});return p};var K=p=>k(u({},"__esModule",{value:!0}),p);var w={};M(w,{APIError:()=>m,AllowlistRejectedError:()=>N,ForbiddenError:()=>O,HttpError:()=>o,HttpMethod:()=>g,InternalServerError:()=>l,InvalidInputError:()=>d,LegacyInvalidInputError:()=>A,MimeType:()=>E,NotFoundError:()=>x,PrivyErrorCode:()=>c,Protocols:()=>f,Route:()=>i,StatusCode:()=>R,TooManyRequestsError:()=>I,UnauthorizedError:()=>h,UnsupportedMediaType:()=>P,z:()=>y.z});module.exports=K(w);var y=require("zod");var E=(e=>(e.APPLICATION_JSON="application/json",e))(E||{});var R=(t=>(t[t.OK=200]="OK",t[t.CREATED=201]="CREATED",t[t.NO_CONTENT=204]="NO_CONTENT",t[t.MOVED_PERMANENTLY=301]="MOVED_PERMANENTLY",t[t.MOVED_TEMPORARILY=302]="MOVED_TEMPORARILY",t[t.NOT_MODIFIED=304]="NOT_MODIFIED",t[t.BAD_REQUEST=400]="BAD_REQUEST",t[t.NOT_AUTHENTICATED=401]="NOT_AUTHENTICATED",t[t.FORBIDDEN=403]="FORBIDDEN",t[t.NOT_FOUND=404]="NOT_FOUND",t[t.METHOD_NOT_ALLOWED=405]="METHOD_NOT_ALLOWED",t[t.UNSUPPORTED_MEDIA_TYPE=415]="UNSUPPORTED_MEDIA_TYPE",t[t.UNPROCESSABLE_CONTENT=422]="UNPROCESSABLE_CONTENT",t[t.TOO_MANY_REQUESTS=429]="TOO_MANY_REQUESTS",t[t.INTERNAL_SERVER_ERROR=500]="INTERNAL_SERVER_ERROR",t[t.NOT_IMPLEMENTED=501]="NOT_IMPLEMENTED",t[t.BAD_GATEWAY=502]="BAD_GATEWAY",t[t.SERVICE_UNAVAILABLE=503]="SERVICE_UNAVAILABLE",t[t.GATEWAY_TIME_OUT=504]="GATEWAY_TIME_OUT",t[t.HTTP_VERSION_NOT_SUPPORTED=505]="HTTP_VERSION_NOT_SUPPORTED",t))(R||{});var _=require("zod");var c=(n=>(n.MISSING_OR_INVALID_PRIVY_APP_ID="missing_or_invalid_privy_app_id",n.MISSING_OR_INVALID_PRIVY_ACCOUNT_ID="missing_or_invalid_privy_account_id",n.MISSING_OR_INVALID_TOKEN="missing_or_invalid_token",n.INVALID_DATA="invalid_data",n.INVALID_CREDENTIALS="invalid_credentials",n.LINKED_TO_ANOTHER_USER="linked_to_another_user",n.ALLOWLIST_REJECTED="allowlist_rejected",n.CANNOT_UNLINK_EMBEDDED_WALLET="cannot_unlink_embedded_wallet",n.CANNOT_UNLINK_SOLE_ACCOUNT="cannot_unlink_sole_account",n.CANNOT_LINK_MORE_OF_TYPE="cannot_link_more_of_type",n.LINKED_ACCOUNT_NOT_FOUND="linked_account_not_found",n.TOO_MANY_REQUESTS="too_many_requests",n.INVALID_ORIGIN="invalid_origin",n.MISSING_ORIGIN="missing_origin",n.TOKEN_ALREADY_USED="token_already_used",n.ALREADY_LOGGED_OUT="already_logged_out",n.NOT_SUPPORTED="not_supported",n.USER_UNSUBSCRIBED="user_unsubscribed",n.MAX_APPS_REACHED="max_apps_reached",n.DEVICE_REVOKED="device_revoked",n.WALLET_PASSWORD_EXISTS="wallet_password_exists",n))(c||{});var m=_.z.object({error:_.z.string(),cause:_.z.string().optional(),code:_.z.nativeEnum(c).optional()});var i=class{#n;#p;#e;#r;#o;#a;#t;#s;constructor({name:e,method:s,path:r,expectedStatusCode:a=200,pathParamsSchema:T,pathQuerySchema:D,bodySchema:S,responseSchema:L}){this.#n=e,this.#p=s,this.#e=r,this.#r=a,this.#o=T,this.#a=D,this.#t=S,this.#s=L}get name(){return this.#n}get method(){return this.#p}get path(){return this.#e}get expectedStatusCode(){return this.#r}parsePathParamsOrThrow(e){return this.#o?.parse(e)}parsePathQueryOrThrow(e){return this.#a?.parse(e)}parseBodyOrThrow(e){return this.#t.parse(e)}parseResponseOrThrow(e,s){let r=this.#s[s];if(!r)throw new Error(`No schema found for status code ${s}`);return r.content["application/json"].schema.parse(e)}static toJSONResponseSchema(e,s){return{content:{"application/json":{schema:e}},description:s}}toSpec(){return{[this.method]:{path:this.#e,request:{body:{content:{"application/json":{schema:this.#t}}}},responses:{...this.#s,[400]:i.toJSONResponseSchema(m,"Invalid Input"),[500]:i.toJSONResponseSchema(m,"Server Error")}}}}constructPath({params:e}){let s=this.path;return e!==void 0?(Object.keys(e).forEach(r=>{let a=e[r];s=s.replace(`:${r}`,`${a}`)}),`${s}`):s}};var o=class extends Error{status;code;constructor(e,s,r){super(s),this.code=r,this.status=e}toString(){return`${this.constructor.name}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},d=class extends o{constructor(e,s){super(400,e,s)}},h=class extends o{constructor(e,s){super(401,e,s)}},N=class extends h{constructor(e){super(e||"User is not allowed to login to this app.","allowlist_rejected")}},O=class extends o{constructor(e,s){super(403,e,s)}},x=class extends o{constructor(e){super(404,e)}},P=class extends o{constructor(e){super(415,e)}},A=class extends o{constructor(e,s){super(422,e,s)}},I=class extends o{constructor(e){super(429,e||"Too many requests. Please wait to try again.","too_many_requests")}},l=class extends o{constructor(e){super(500,e||"Service unavailable.")}};var g=(T=>(T.GET="get",T.POST="post",T.PATCH="patch",T.DELETE="delete",T.PUT="put",T))(g||{});var f=(s=>(s.HTTP="http:",s.HTTPS="https:",s))(f||{});0&&(module.exports={APIError,AllowlistRejectedError,ForbiddenError,HttpError,HttpMethod,InternalServerError,InvalidInputError,LegacyInvalidInputError,MimeType,NotFoundError,PrivyErrorCode,Protocols,Route,StatusCode,TooManyRequestsError,UnauthorizedError,UnsupportedMediaType,z}); | ||
"use strict";var u=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var b=Object.prototype.hasOwnProperty;var U=(p,e)=>{for(var s in e)u(p,s,{get:e[s],enumerable:!0})},M=(p,e,s,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let a of B(e))!b.call(p,a)&&a!==s&&u(p,a,{get:()=>e[a],enumerable:!(r=L(e,a))||r.enumerable});return p};var k=p=>M(u({},"__esModule",{value:!0}),p);var K={};U(K,{APIError:()=>h,AllowlistRejectedError:()=>O,ForbiddenError:()=>d,HttpError:()=>o,HttpMethod:()=>l,InternalServerError:()=>I,InvalidInputError:()=>R,LegacyInvalidInputError:()=>P,MimeType:()=>E,NotFoundError:()=>N,PrivyErrorCode:()=>c,Protocols:()=>g,Route:()=>i,StatusCode:()=>y,TooManyRequestsError:()=>A,UnauthorizedError:()=>m,UnsupportedMediaType:()=>x});module.exports=k(K);var E=(e=>(e.APPLICATION_JSON="application/json",e))(E||{});var y=(t=>(t[t.OK=200]="OK",t[t.CREATED=201]="CREATED",t[t.NO_CONTENT=204]="NO_CONTENT",t[t.MOVED_PERMANENTLY=301]="MOVED_PERMANENTLY",t[t.MOVED_TEMPORARILY=302]="MOVED_TEMPORARILY",t[t.NOT_MODIFIED=304]="NOT_MODIFIED",t[t.BAD_REQUEST=400]="BAD_REQUEST",t[t.NOT_AUTHENTICATED=401]="NOT_AUTHENTICATED",t[t.FORBIDDEN=403]="FORBIDDEN",t[t.NOT_FOUND=404]="NOT_FOUND",t[t.METHOD_NOT_ALLOWED=405]="METHOD_NOT_ALLOWED",t[t.UNSUPPORTED_MEDIA_TYPE=415]="UNSUPPORTED_MEDIA_TYPE",t[t.UNPROCESSABLE_CONTENT=422]="UNPROCESSABLE_CONTENT",t[t.TOO_MANY_REQUESTS=429]="TOO_MANY_REQUESTS",t[t.INTERNAL_SERVER_ERROR=500]="INTERNAL_SERVER_ERROR",t[t.NOT_IMPLEMENTED=501]="NOT_IMPLEMENTED",t[t.BAD_GATEWAY=502]="BAD_GATEWAY",t[t.SERVICE_UNAVAILABLE=503]="SERVICE_UNAVAILABLE",t[t.GATEWAY_TIME_OUT=504]="GATEWAY_TIME_OUT",t[t.HTTP_VERSION_NOT_SUPPORTED=505]="HTTP_VERSION_NOT_SUPPORTED",t))(y||{});var _=require("zod");var c=(n=>(n.MISSING_OR_INVALID_PRIVY_APP_ID="missing_or_invalid_privy_app_id",n.MISSING_OR_INVALID_PRIVY_ACCOUNT_ID="missing_or_invalid_privy_account_id",n.MISSING_OR_INVALID_TOKEN="missing_or_invalid_token",n.INVALID_DATA="invalid_data",n.INVALID_CREDENTIALS="invalid_credentials",n.LINKED_TO_ANOTHER_USER="linked_to_another_user",n.ALLOWLIST_REJECTED="allowlist_rejected",n.CANNOT_UNLINK_EMBEDDED_WALLET="cannot_unlink_embedded_wallet",n.CANNOT_UNLINK_SOLE_ACCOUNT="cannot_unlink_sole_account",n.CANNOT_LINK_MORE_OF_TYPE="cannot_link_more_of_type",n.LINKED_ACCOUNT_NOT_FOUND="linked_account_not_found",n.TOO_MANY_REQUESTS="too_many_requests",n.INVALID_ORIGIN="invalid_origin",n.MISSING_ORIGIN="missing_origin",n.TOKEN_ALREADY_USED="token_already_used",n.ALREADY_LOGGED_OUT="already_logged_out",n.NOT_SUPPORTED="not_supported",n.USER_UNSUBSCRIBED="user_unsubscribed",n.MAX_APPS_REACHED="max_apps_reached",n.DEVICE_REVOKED="device_revoked",n.WALLET_PASSWORD_EXISTS="wallet_password_exists",n.OAUTH_STATE_MISMATCH="oauth_state_mismatch",n))(c||{});var h=_.z.object({error:_.z.string(),cause:_.z.string().optional(),code:_.z.nativeEnum(c).optional()});var i=class{#n;#p;#e;#r;#o;#a;#t;#s;constructor({name:e,method:s,path:r,expectedStatusCode:a=200,pathParamsSchema:T,pathQuerySchema:D,bodySchema:S,responseSchema:f}){this.#n=e,this.#p=s,this.#e=r,this.#r=a,this.#o=T,this.#a=D,this.#t=S,this.#s=f}get name(){return this.#n}get method(){return this.#p}get path(){return this.#e}get expectedStatusCode(){return this.#r}parsePathParamsOrThrow(e){return this.#o?.parse(e)}parsePathQueryOrThrow(e){return this.#a?.parse(e)}parseBodyOrThrow(e){return this.#t.parse(e)}parseResponseOrThrow(e,s){let r=this.#s[s];if(!r)throw new Error(`No schema found for status code ${s}`);return r.content["application/json"].schema.parse(e)}static toJSONResponseSchema(e,s){return{content:{"application/json":{schema:e}},description:s}}toSpec(){return{[this.method]:{path:this.#e,request:{body:{content:{"application/json":{schema:this.#t}}}},responses:{...this.#s,[400]:i.toJSONResponseSchema(h,"Invalid Input"),[500]:i.toJSONResponseSchema(h,"Server Error")}}}}constructPath({params:e}){let s=this.path;return e!==void 0?(Object.keys(e).forEach(r=>{let a=e[r];s=s.replace(`:${r}`,`${a}`)}),`${s}`):s}};var o=class extends Error{status;code;constructor(e,s,r){super(s),this.code=r,this.status=e}toString(){return`${this.constructor.name}: ${this.message}${this.cause?` [cause: ${this.cause}]`:""}`}},R=class extends o{constructor(e,s){super(400,e,s)}},m=class extends o{constructor(e,s){super(401,e,s)}},O=class extends m{constructor(e){super(e||"User is not allowed to login to this app.","allowlist_rejected")}},d=class extends o{constructor(e,s){super(403,e,s)}},N=class extends o{constructor(e){super(404,e)}},x=class extends o{constructor(e){super(415,e)}},P=class extends o{constructor(e,s){super(422,e,s)}},A=class extends o{constructor(e){super(429,e||"Too many requests. Please wait to try again.","too_many_requests")}},I=class extends o{constructor(e){super(500,e||"Service unavailable.")}};var l=(T=>(T.GET="get",T.POST="post",T.PATCH="patch",T.DELETE="delete",T.PUT="put",T))(l||{});var g=(s=>(s.HTTP="http:",s.HTTPS="https:",s))(g||{});0&&(module.exports={APIError,AllowlistRejectedError,ForbiddenError,HttpError,HttpMethod,InternalServerError,InvalidInputError,LegacyInvalidInputError,MimeType,NotFoundError,PrivyErrorCode,Protocols,Route,StatusCode,TooManyRequestsError,UnauthorizedError,UnsupportedMediaType}); |
{ | ||
"name": "@privy-io/api-base", | ||
"version": "0.3.0", | ||
"version": "0.4.0-beta-20231019031018", | ||
"engines": { | ||
@@ -18,7 +18,2 @@ "npm": ">=8.0.0 <10.0.0", | ||
}, | ||
"./zod": { | ||
"require": "./dist/index.js", | ||
"import": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"./constants": { | ||
@@ -65,2 +60,2 @@ "require": "./dist/index.js", | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
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
44528
516