@forge/api
Advanced tools
Comparing version 0.1.5 to 0.1.6-next.0
# @forge/api | ||
## 0.1.6-next.0 | ||
### Patch Changes | ||
- cedd68a: Stopped http polyfill passing through all arguments to fetch bridge method | ||
## 0.1.5 | ||
@@ -4,0 +10,0 @@ |
import { RequestInit, Response } from 'node-fetch'; | ||
export declare type APIResponse = Pick<Response, 'json' | 'text' | 'arrayBuffer' | 'ok' | 'status' | 'statusText'>; | ||
export declare type FetchMethod = (url: string, init?: RequestInit) => Promise<APIResponse>; | ||
export declare type FetchOptions = RequestInit; | ||
export interface FetchMethods { | ||
@@ -5,0 +6,0 @@ requestJira: FetchMethod; |
{ | ||
"name": "@forge/api", | ||
"version": "0.1.5", | ||
"version": "0.1.6-next.0", | ||
"description": "Forge API methods", | ||
@@ -15,5 +15,5 @@ "author": "Atlassian", | ||
"scripts": { | ||
"prebuild": "rm -rf out", | ||
"build": "tsc", | ||
"prepublishOnly": "npm run build" | ||
"build": "npm run clean && npm run compile", | ||
"clean": "rm -rf ./out && rm -f tsconfig.tsbuildinfo", | ||
"compile": "tsc -b -v" | ||
}, | ||
@@ -20,0 +20,0 @@ "engines": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4892
50