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

@forge/bridge

Package Overview
Dependencies
Maintainers
8
Versions
143
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forge/bridge - npm Package Compare versions

Comparing version 0.0.0-experimental-906222c to 0.0.0-experimental-d3a39c9

2

CHANGELOG.md
# @forge/bridge
## 0.0.0-experimental-906222c
## 0.0.0-experimental-d3a39c9

@@ -5,0 +5,0 @@ ### Major Changes

import { InvokePayload } from '../types';
export declare const invoke: <T>(functionKey: string, payload?: InvokePayload | undefined) => Promise<T>;
export declare const resolver: {
get: (fullPath: string, options: RequestInit) => Promise<Response>;
post: (fullPath: string, options: RequestInit) => Promise<Response>;
put: (fullPath: string, options: RequestInit) => Promise<Response>;
patch: (fullPath: string, options: RequestInit) => Promise<Response>;
delete: (fullPath: string, options: RequestInit) => Promise<Response>;
get: (fullPath: string, options?: RequestInit | undefined) => Promise<Response>;
post: (fullPath: string, options?: RequestInit | undefined) => Promise<Response>;
put: (fullPath: string, options?: RequestInit | undefined) => Promise<Response>;
patch: (fullPath: string, options?: RequestInit | undefined) => Promise<Response>;
delete: (fullPath: string, options?: RequestInit | undefined) => Promise<Response>;
};
//# sourceMappingURL=invoke.d.ts.map

@@ -26,3 +26,3 @@ "use strict";

var query = {};
var items = qs.split('&');
var items = qs ? qs.split('&') : [];
items.forEach(function (item) {

@@ -44,4 +44,4 @@ var _a = item.split('='), key = _a[0], value = _a[1];

__meta: {
headers: options.headers,
body: options.body,
headers: options === null || options === void 0 ? void 0 : options.headers,
body: options === null || options === void 0 ? void 0 : options.body,
query: query,

@@ -48,0 +48,0 @@ method: method

{
"name": "@forge/bridge",
"version": "0.0.0-experimental-906222c",
"version": "0.0.0-experimental-d3a39c9",
"description": "Forge bridge API for custom UI apps",

@@ -5,0 +5,0 @@ "author": "Atlassian",

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