Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

auth-api-types

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auth-api-types - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

41

dist/index.d.ts

@@ -73,3 +73,3 @@ /**

/** @description Client was successfully created */
200: {
201: {
content: {

@@ -82,2 +82,19 @@ "application/json": components["schemas"]["ClientPostResponse"];

};
"/security-tokens": {
post: {
requestBody: {
content: {
"application/json": components["schemas"]["SecurityTokensPost"];
};
};
responses: {
/** @description Security tokens were successfully created */
201: {
content: {
"application/json": components["schemas"]["SecurityTokenResponse"];
};
};
};
};
};
}

@@ -117,3 +134,17 @@ export type webhooks = Record<string, never>;

};
TokenResponse: components["schemas"]["ClientTokenResponse"] | components["schemas"]["UserTokenResponse"];
SecurityToken: {
body?: {
[key: string]: unknown;
};
securityTokenId?: string;
expiresIn?: string | number;
clientId?: string;
};
SecurityTokenResponse: {
/** @enum {string} */
type: "security-token";
accessToken: string;
securityToken: components["schemas"]["SecurityToken"];
};
TokenResponse: components["schemas"]["ClientTokenResponse"] | components["schemas"]["UserTokenResponse"] | components["schemas"]["SecurityTokenResponse"];
CodeGrantType: {

@@ -136,2 +167,8 @@ /** @enum {string} */

};
SecurityTokensPost: {
body: {
[key: string]: unknown;
};
expiresIn: string | number;
};
};

@@ -138,0 +175,0 @@ responses: never;

2

package.json
{
"name": "auth-api-types",
"version": "1.0.1",
"version": "1.0.2",
"description": "",

@@ -5,0 +5,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc