Socket
Socket
Sign inDemoInstall

@exodus/airgap-beacon-types

Package Overview
Dependencies
0
Maintainers
86
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.0-exodus.0 to 4.0.0-exodus.1

32

dist/cjs/types/ConnectionContext.d.ts

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

/// <reference types="chrome" />
import { Origin } from '..';

@@ -10,5 +9,34 @@ /**

extras?: {
sender: chrome.runtime.MessageSender;
sender: {
/** The ID of the extension or app that opened the connection, if any. */
id?: string | undefined;
/** The tabs.Tab which opened the connection, if any. This property will only be present when the connection was opened from a tab (including content scripts), and only if the receiver is an extension, not an app. */
tab: any;
/** The name of the native application that opened the connection, if any.
* @since Chrome 74
*/
nativeApplication?: string | undefined;
/**
* The frame that opened the connection. 0 for top-level frames, positive for child frames. This will only be set when tab is set.
* @since Chrome 41.
*/
frameId?: number | undefined;
/**
* The URL of the page or frame that opened the connection. If the sender is in an iframe, it will be iframe's URL not the URL of the page which hosts it.
* @since Chrome 28.
*/
url?: string | undefined;
/**
* The TLS channel ID of the page or frame that opened the connection, if requested by the extension or app, and if available.
* @since Chrome 32.
*/
tlsChannelId?: string | undefined;
/**
* The origin of the page or frame that opened the connection. It can vary from the url property (e.g., about:blank) or can be opaque (e.g., sandboxed iframes). This is useful for identifying if the origin can be trusted if we can't immediately tell from the URL.
* @since Chrome 80.
*/
origin?: string | undefined;
};
sendResponse(response?: unknown): void;
};
}

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

/// <reference types="chrome" />
import { Origin } from '..';

@@ -10,5 +9,34 @@ /**

extras?: {
sender: chrome.runtime.MessageSender;
sender: {
/** The ID of the extension or app that opened the connection, if any. */
id?: string | undefined;
/** The tabs.Tab which opened the connection, if any. This property will only be present when the connection was opened from a tab (including content scripts), and only if the receiver is an extension, not an app. */
tab: any;
/** The name of the native application that opened the connection, if any.
* @since Chrome 74
*/
nativeApplication?: string | undefined;
/**
* The frame that opened the connection. 0 for top-level frames, positive for child frames. This will only be set when tab is set.
* @since Chrome 41.
*/
frameId?: number | undefined;
/**
* The URL of the page or frame that opened the connection. If the sender is in an iframe, it will be iframe's URL not the URL of the page which hosts it.
* @since Chrome 28.
*/
url?: string | undefined;
/**
* The TLS channel ID of the page or frame that opened the connection, if requested by the extension or app, and if available.
* @since Chrome 32.
*/
tlsChannelId?: string | undefined;
/**
* The origin of the page or frame that opened the connection. It can vary from the url property (e.g., about:blank) or can be opaque (e.g., sandboxed iframes). This is useful for identifying if the origin can be trusted if we can't immediately tell from the URL.
* @since Chrome 80.
*/
origin?: string | undefined;
};
sendResponse(response?: unknown): void;
};
}

3

package.json
{
"name": "@exodus/airgap-beacon-types",
"version": "4.0.0-exodus.0",
"version": "4.0.0-exodus.1",
"description": "> TODO: description",

@@ -37,4 +37,3 @@ "author": "Andreas Gassmann <a.gassmann@papers.ch>",

"dependencies": {
"@types/chrome": "0.0.163"
}
}
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc