- recompile project to have updated dist with all library updates from dependabot
This commit is contained in:
+64
-54
@@ -3831,7 +3831,7 @@ function _objectWithoutProperties(source, excluded) {
|
|||||||
return target;
|
return target;
|
||||||
}
|
}
|
||||||
|
|
||||||
const VERSION = "3.2.4";
|
const VERSION = "3.2.5";
|
||||||
|
|
||||||
class Octokit {
|
class Octokit {
|
||||||
constructor(options = {}) {
|
constructor(options = {}) {
|
||||||
@@ -4335,7 +4335,7 @@ function withDefaults(oldDefaults, newDefaults) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const VERSION = "6.0.10";
|
const VERSION = "6.0.11";
|
||||||
|
|
||||||
const userAgent = `octokit-endpoint.js/${VERSION} ${universalUserAgent.getUserAgent()}`; // DEFAULTS has all properties set that EndpointOptions has, except url.
|
const userAgent = `octokit-endpoint.js/${VERSION} ${universalUserAgent.getUserAgent()}`; // DEFAULTS has all properties set that EndpointOptions has, except url.
|
||||||
// So we use RequestParameters and add method as additional required property.
|
// So we use RequestParameters and add method as additional required property.
|
||||||
@@ -4372,7 +4372,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|||||||
var request = __nccwpck_require__(6234);
|
var request = __nccwpck_require__(6234);
|
||||||
var universalUserAgent = __nccwpck_require__(5030);
|
var universalUserAgent = __nccwpck_require__(5030);
|
||||||
|
|
||||||
const VERSION = "4.5.8";
|
const VERSION = "4.6.0";
|
||||||
|
|
||||||
class GraphqlError extends Error {
|
class GraphqlError extends Error {
|
||||||
constructor(request, response) {
|
constructor(request, response) {
|
||||||
@@ -4485,7 +4485,7 @@ exports.withCustomRequest = withCustomRequest;
|
|||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
|
|
||||||
const VERSION = "2.8.0";
|
const VERSION = "2.9.1";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Some “list” response that can be paginated have a different response structure
|
* Some “list” response that can be paginated have a different response structure
|
||||||
@@ -4625,7 +4625,7 @@ exports.paginateRest = paginateRest;
|
|||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
|
|
||||||
const VERSION = "1.0.2";
|
const VERSION = "1.0.3";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param octokit Octokit instance
|
* @param octokit Octokit instance
|
||||||
@@ -4907,15 +4907,24 @@ const Endpoints = {
|
|||||||
getTemplate: ["GET /gitignore/templates/{name}"]
|
getTemplate: ["GET /gitignore/templates/{name}"]
|
||||||
},
|
},
|
||||||
interactions: {
|
interactions: {
|
||||||
|
getRestrictionsForAuthenticatedUser: ["GET /user/interaction-limits"],
|
||||||
getRestrictionsForOrg: ["GET /orgs/{org}/interaction-limits"],
|
getRestrictionsForOrg: ["GET /orgs/{org}/interaction-limits"],
|
||||||
getRestrictionsForRepo: ["GET /repos/{owner}/{repo}/interaction-limits"],
|
getRestrictionsForRepo: ["GET /repos/{owner}/{repo}/interaction-limits"],
|
||||||
getRestrictionsForYourPublicRepos: ["GET /user/interaction-limits"],
|
getRestrictionsForYourPublicRepos: ["GET /user/interaction-limits", {}, {
|
||||||
|
renamed: ["interactions", "getRestrictionsForAuthenticatedUser"]
|
||||||
|
}],
|
||||||
|
removeRestrictionsForAuthenticatedUser: ["DELETE /user/interaction-limits"],
|
||||||
removeRestrictionsForOrg: ["DELETE /orgs/{org}/interaction-limits"],
|
removeRestrictionsForOrg: ["DELETE /orgs/{org}/interaction-limits"],
|
||||||
removeRestrictionsForRepo: ["DELETE /repos/{owner}/{repo}/interaction-limits"],
|
removeRestrictionsForRepo: ["DELETE /repos/{owner}/{repo}/interaction-limits"],
|
||||||
removeRestrictionsForYourPublicRepos: ["DELETE /user/interaction-limits"],
|
removeRestrictionsForYourPublicRepos: ["DELETE /user/interaction-limits", {}, {
|
||||||
|
renamed: ["interactions", "removeRestrictionsForAuthenticatedUser"]
|
||||||
|
}],
|
||||||
|
setRestrictionsForAuthenticatedUser: ["PUT /user/interaction-limits"],
|
||||||
setRestrictionsForOrg: ["PUT /orgs/{org}/interaction-limits"],
|
setRestrictionsForOrg: ["PUT /orgs/{org}/interaction-limits"],
|
||||||
setRestrictionsForRepo: ["PUT /repos/{owner}/{repo}/interaction-limits"],
|
setRestrictionsForRepo: ["PUT /repos/{owner}/{repo}/interaction-limits"],
|
||||||
setRestrictionsForYourPublicRepos: ["PUT /user/interaction-limits"]
|
setRestrictionsForYourPublicRepos: ["PUT /user/interaction-limits", {}, {
|
||||||
|
renamed: ["interactions", "setRestrictionsForAuthenticatedUser"]
|
||||||
|
}]
|
||||||
},
|
},
|
||||||
issues: {
|
issues: {
|
||||||
addAssignees: ["POST /repos/{owner}/{repo}/issues/{issue_number}/assignees"],
|
addAssignees: ["POST /repos/{owner}/{repo}/issues/{issue_number}/assignees"],
|
||||||
@@ -5695,7 +5704,7 @@ const Endpoints = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const VERSION = "4.8.0";
|
const VERSION = "4.10.3";
|
||||||
|
|
||||||
function endpointsToMethods(octokit, endpointsMap) {
|
function endpointsToMethods(octokit, endpointsMap) {
|
||||||
const newMethods = {};
|
const newMethods = {};
|
||||||
@@ -5879,7 +5888,7 @@ var isPlainObject = __nccwpck_require__(3287);
|
|||||||
var nodeFetch = _interopDefault(__nccwpck_require__(467));
|
var nodeFetch = _interopDefault(__nccwpck_require__(467));
|
||||||
var requestError = __nccwpck_require__(537);
|
var requestError = __nccwpck_require__(537);
|
||||||
|
|
||||||
const VERSION = "5.4.12";
|
const VERSION = "5.4.14";
|
||||||
|
|
||||||
function getBufferResponse(response) {
|
function getBufferResponse(response) {
|
||||||
return response.arrayBuffer();
|
return response.arrayBuffer();
|
||||||
@@ -6032,7 +6041,7 @@ var pluginRequestLog = __nccwpck_require__(8883);
|
|||||||
var pluginPaginateRest = __nccwpck_require__(4193);
|
var pluginPaginateRest = __nccwpck_require__(4193);
|
||||||
var pluginRestEndpointMethods = __nccwpck_require__(3044);
|
var pluginRestEndpointMethods = __nccwpck_require__(3044);
|
||||||
|
|
||||||
const VERSION = "18.0.14";
|
const VERSION = "18.1.1";
|
||||||
|
|
||||||
const Octokit = core.Octokit.plugin(pluginRequestLog.requestLog, pluginRestEndpointMethods.restEndpointMethods, pluginPaginateRest.paginateRest).defaults({
|
const Octokit = core.Octokit.plugin(pluginRequestLog.requestLog, pluginRestEndpointMethods.restEndpointMethods, pluginPaginateRest.paginateRest).defaults({
|
||||||
userAgent: `octokit-rest.js/${VERSION}`
|
userAgent: `octokit-rest.js/${VERSION}`
|
||||||
@@ -6111,51 +6120,51 @@ module.exports.Collection = Hook.Collection
|
|||||||
/***/ 5549:
|
/***/ 5549:
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
module.exports = addHook
|
module.exports = addHook;
|
||||||
|
|
||||||
function addHook (state, kind, name, hook) {
|
function addHook(state, kind, name, hook) {
|
||||||
var orig = hook
|
var orig = hook;
|
||||||
if (!state.registry[name]) {
|
if (!state.registry[name]) {
|
||||||
state.registry[name] = []
|
state.registry[name] = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (kind === 'before') {
|
if (kind === "before") {
|
||||||
hook = function (method, options) {
|
hook = function (method, options) {
|
||||||
return Promise.resolve()
|
return Promise.resolve()
|
||||||
.then(orig.bind(null, options))
|
.then(orig.bind(null, options))
|
||||||
.then(method.bind(null, options))
|
.then(method.bind(null, options));
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (kind === 'after') {
|
if (kind === "after") {
|
||||||
hook = function (method, options) {
|
hook = function (method, options) {
|
||||||
var result
|
var result;
|
||||||
return Promise.resolve()
|
return Promise.resolve()
|
||||||
.then(method.bind(null, options))
|
.then(method.bind(null, options))
|
||||||
.then(function (result_) {
|
.then(function (result_) {
|
||||||
result = result_
|
result = result_;
|
||||||
return orig(result, options)
|
return orig(result, options);
|
||||||
})
|
})
|
||||||
.then(function () {
|
.then(function () {
|
||||||
return result
|
return result;
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (kind === 'error') {
|
if (kind === "error") {
|
||||||
hook = function (method, options) {
|
hook = function (method, options) {
|
||||||
return Promise.resolve()
|
return Promise.resolve()
|
||||||
.then(method.bind(null, options))
|
.then(method.bind(null, options))
|
||||||
.catch(function (error) {
|
.catch(function (error) {
|
||||||
return orig(error, options)
|
return orig(error, options);
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
state.registry[name].push({
|
state.registry[name].push({
|
||||||
hook: hook,
|
hook: hook,
|
||||||
orig: orig
|
orig: orig,
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -6164,33 +6173,32 @@ function addHook (state, kind, name, hook) {
|
|||||||
/***/ 4670:
|
/***/ 4670:
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
module.exports = register
|
module.exports = register;
|
||||||
|
|
||||||
function register (state, name, method, options) {
|
function register(state, name, method, options) {
|
||||||
if (typeof method !== 'function') {
|
if (typeof method !== "function") {
|
||||||
throw new Error('method for before hook must be a function')
|
throw new Error("method for before hook must be a function");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!options) {
|
if (!options) {
|
||||||
options = {}
|
options = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Array.isArray(name)) {
|
if (Array.isArray(name)) {
|
||||||
return name.reverse().reduce(function (callback, name) {
|
return name.reverse().reduce(function (callback, name) {
|
||||||
return register.bind(null, state, name, callback, options)
|
return register.bind(null, state, name, callback, options);
|
||||||
}, method)()
|
}, method)();
|
||||||
}
|
}
|
||||||
|
|
||||||
return Promise.resolve()
|
return Promise.resolve().then(function () {
|
||||||
.then(function () {
|
if (!state.registry[name]) {
|
||||||
if (!state.registry[name]) {
|
return method(options);
|
||||||
return method(options)
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return (state.registry[name]).reduce(function (method, registered) {
|
return state.registry[name].reduce(function (method, registered) {
|
||||||
return registered.hook.bind(null, method, options)
|
return registered.hook.bind(null, method, options);
|
||||||
}, method)()
|
}, method)();
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -6199,22 +6207,24 @@ function register (state, name, method, options) {
|
|||||||
/***/ 6819:
|
/***/ 6819:
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
module.exports = removeHook
|
module.exports = removeHook;
|
||||||
|
|
||||||
function removeHook (state, name, method) {
|
function removeHook(state, name, method) {
|
||||||
if (!state.registry[name]) {
|
if (!state.registry[name]) {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var index = state.registry[name]
|
var index = state.registry[name]
|
||||||
.map(function (registered) { return registered.orig })
|
.map(function (registered) {
|
||||||
.indexOf(method)
|
return registered.orig;
|
||||||
|
})
|
||||||
|
.indexOf(method);
|
||||||
|
|
||||||
if (index === -1) {
|
if (index === -1) {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
state.registry[name].splice(index, 1)
|
state.registry[name].splice(index, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user