@gitbeaker/rest
Advanced tools
Comparing version 38.1.1 to 38.2.0
@@ -98,3 +98,3 @@ 'use strict'; | ||
for (let i = 0; i < maxRetries; i += 1) { | ||
const response = await fetch(url, { ...opts, mode: "same-origin" }); | ||
const response = await fetch(url, { ...opts, mode: "cors" }); | ||
if (response.ok) | ||
@@ -101,0 +101,0 @@ return parseResponse(response, asStream); |
{ | ||
"name": "@gitbeaker/rest", | ||
"version": "38.1.1", | ||
"version": "38.2.0", | ||
"description": "Cross Platform implementation of the GitLab API", | ||
@@ -59,4 +59,4 @@ "license": "MIT", | ||
"dependencies": { | ||
"@gitbeaker/core": "^38.1.1", | ||
"@gitbeaker/requester-utils": "^38.1.1" | ||
"@gitbeaker/core": "^38.2.0", | ||
"@gitbeaker/requester-utils": "^38.2.0" | ||
}, | ||
@@ -70,3 +70,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "747a6a0e960524895b3fb852e5f51ca2d9f8d682" | ||
"gitHead": "fcf745552dee6c0134a0a615a63d73ff92209ca3" | ||
} |
@@ -99,7 +99,7 @@ <div align="center"> | ||
</th><td width=100%> | ||
Load <code>@gitbeaker/rest</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a> | ||
Load <code>@gitbeaker/rest</code> directly from <a href="https://esm.sh">esm.sh</a> | ||
```html | ||
<script type="module"> | ||
import { Gitlab } from 'https://cdn.skypack.dev/@gitbeaker/rest'; | ||
import { Gitlab } from 'https://esm.sh/@gitbeaker/rest'; | ||
</script> | ||
@@ -112,6 +112,6 @@ ``` | ||
</th><td width=100%> | ||
Load <code>@gitbeaker/rest</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a> | ||
Load <code>@gitbeaker/rest</code> directly from <a href="https://esm.sh">esm.sh</a> | ||
```ts | ||
import { Gitlab } from 'https://cdn.skypack.dev/@gitbeaker/rest?dts'; | ||
import { Gitlab } from 'https://esm.sh/@gitbeaker/rest?dts'; | ||
``` | ||
@@ -118,0 +118,0 @@ |
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
77178