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

@domoinc/ryuu-proxy

Package Overview
Dependencies
Maintainers
17
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@domoinc/ryuu-proxy - npm Package Compare versions

Comparing version 1.0.2 to 1.1.0

8

dist/lib/Transport/index.js

@@ -56,4 +56,8 @@ "use strict";

Transport.prototype.isValidRequest = function (url) {
var pattern = /^\/(data|domo)\/(v\d)?.+/;
return pattern.test(url);
var domoPattern = /^\/domo\/(users|avatars)\/v\d/;
var dataPattern = /^\/data\/v\d\/.+/;
var dqlPattern = /^\/dql\/v\d\/.+/;
return (domoPattern.test(url)
|| dataPattern.test(url)
|| dqlPattern.test(url));
};

@@ -60,0 +64,0 @@ Transport.prototype.build = function (req) {

{
"name": "@domoinc/ryuu-proxy",
"version": "1.0.2",
"version": "1.1.0",
"description": "a middleware that provides a proxy for local domo app development",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

Sorry, the diff of this file is not supported yet

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