New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@frontegg/rest-api

Package Overview
Dependencies
Maintainers
3
Versions
648
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@frontegg/rest-api - npm Package Compare versions

Comparing version 7.35.0-alpha.0 to 7.35.0-alpha.1

8

ContextHolder/index.d.ts

@@ -1,2 +0,2 @@

import { SessionContext, ContextOptions, RedirectOptions, RequestSource } from '../interfaces';
import { ContextOptions, RedirectOptions, RequestSource, SessionContext } from '../interfaces';
import { IUserProfile } from '../users/interfaces';

@@ -21,2 +21,4 @@ /**

private basename;
private cdnUrl;
private assetsUrl;
private constructor();

@@ -137,2 +139,6 @@ static default(): ContextHolder;

getAppName: () => string | null;
setCdnUrl: (cdnUrl: string | null) => void;
getCdnUrl: () => string | null;
setAssetsUrl: (assets: string | null) => void;
getAssetsUrl: () => string | null;
}

@@ -139,0 +145,0 @@ /**

@@ -17,2 +17,4 @@ /**

this.basename = null;
this.cdnUrl = null;
this.assetsUrl = null;
this.setContext = context => {

@@ -73,2 +75,14 @@ this.context = context;

};
this.setCdnUrl = cdnUrl => {
this.cdnUrl = cdnUrl;
};
this.getCdnUrl = () => {
return this.cdnUrl;
};
this.setAssetsUrl = assets => {
this.assetsUrl = assets;
};
this.getAssetsUrl = () => {
return this.assetsUrl;
};
}

@@ -75,0 +89,0 @@ static default() {

2

index.js

@@ -1,2 +0,2 @@

/** @license Frontegg v7.35.0-alpha.0
/** @license Frontegg v7.35.0-alpha.1
*

@@ -3,0 +3,0 @@ * This source code is licensed under the MIT license found in the

@@ -23,2 +23,4 @@ "use strict";

this.basename = null;
this.cdnUrl = null;
this.assetsUrl = null;
this.setContext = context => {

@@ -79,2 +81,14 @@ this.context = context;

};
this.setCdnUrl = cdnUrl => {
this.cdnUrl = cdnUrl;
};
this.getCdnUrl = () => {
return this.cdnUrl;
};
this.setAssetsUrl = assets => {
this.assetsUrl = assets;
};
this.getAssetsUrl = () => {
return this.assetsUrl;
};
}

@@ -81,0 +95,0 @@ static default() {

@@ -1,2 +0,2 @@

/** @license Frontegg v7.35.0-alpha.0
/** @license Frontegg v7.35.0-alpha.1
*

@@ -3,0 +3,0 @@ * This source code is licensed under the MIT license found in the

{
"name": "@frontegg/rest-api",
"version": "7.35.0-alpha.0",
"version": "7.35.0-alpha.1",
"main": "./node/index.js",

@@ -5,0 +5,0 @@ "license": "MIT",

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