Skip to content

Commit

Permalink
Rebuild with updated transitory dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Smock <[email protected]>
  • Loading branch information
tsmock committed Aug 13, 2024
1 parent a078236 commit a68ef99
Show file tree
Hide file tree
Showing 4 changed files with 205 additions and 93 deletions.
19 changes: 12 additions & 7 deletions actions/josm_build/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67627,7 +67627,7 @@ exports.buildCreatePoller = buildCreatePoller;
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.DEFAULT_RETRY_POLICY_COUNT = exports.SDK_VERSION = void 0;
exports.SDK_VERSION = "1.16.2";
exports.SDK_VERSION = "1.16.3";
exports.DEFAULT_RETRY_POLICY_COUNT = 3;
//# sourceMappingURL=constants.js.map

Expand Down Expand Up @@ -69904,15 +69904,21 @@ class RestError extends Error {
this.name = "RestError";
this.code = options.code;
this.statusCode = options.statusCode;
this.request = options.request;
this.response = options.response;
// The request and response may contain sensitive information in the headers or body.
// To help prevent this sensitive information being accidentally logged, the request and response
// properties are marked as non-enumerable here. This prevents them showing up in the output of
// JSON.stringify and console.log.
Object.defineProperty(this, "request", { value: options.request, enumerable: false });
Object.defineProperty(this, "response", { value: options.response, enumerable: false });
Object.setPrototypeOf(this, RestError.prototype);
}
/**
* Logging method for util.inspect in Node
*/
[inspect_js_1.custom]() {
return `RestError: ${this.message} \n ${errorSanitizer.sanitize(this)}`;
// Extract non-enumerable properties and add them back. This is OK since in this output the request and
// response get sanitized.
return `RestError: ${this.message} \n ${errorSanitizer.sanitize(Object.assign(Object.assign({}, this), { request: this.request, response: this.response }))}`;
}
}
exports.RestError = RestError;
Expand Down Expand Up @@ -71703,7 +71709,8 @@ exports.XML_CHARKEY = "_";
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.parseXML = exports.stringifyXML = void 0;
exports.stringifyXML = stringifyXML;
exports.parseXML = parseXML;
const fast_xml_parser_1 = __nccwpck_require__(626);
const xml_common_js_1 = __nccwpck_require__(618);
function getCommonOptions(options) {
Expand Down Expand Up @@ -71735,7 +71742,6 @@ function stringifyXML(obj, opts = {}) {
const xmlData = j2x.build(node);
return `<?xml version="1.0" encoding="UTF-8" standalone="yes"?>${xmlData}`.replace(/\n/g, "");
}
exports.stringifyXML = stringifyXML;
/**
* Converts given XML string into JSON
* @param str - String containing the XML content to be parsed into JSON
Expand Down Expand Up @@ -71765,7 +71771,6 @@ async function parseXML(str, opts = {}) {
}
return parsedXml;
}
exports.parseXML = parseXML;
//# sourceMappingURL=xml.js.map

/***/ }),
Expand Down
19 changes: 12 additions & 7 deletions actions/josm_plugin_dependencies/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71899,7 +71899,7 @@ exports.buildCreatePoller = buildCreatePoller;
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.DEFAULT_RETRY_POLICY_COUNT = exports.SDK_VERSION = void 0;
exports.SDK_VERSION = "1.16.2";
exports.SDK_VERSION = "1.16.3";
exports.DEFAULT_RETRY_POLICY_COUNT = 3;
//# sourceMappingURL=constants.js.map

Expand Down Expand Up @@ -74176,15 +74176,21 @@ class RestError extends Error {
this.name = "RestError";
this.code = options.code;
this.statusCode = options.statusCode;
this.request = options.request;
this.response = options.response;
// The request and response may contain sensitive information in the headers or body.
// To help prevent this sensitive information being accidentally logged, the request and response
// properties are marked as non-enumerable here. This prevents them showing up in the output of
// JSON.stringify and console.log.
Object.defineProperty(this, "request", { value: options.request, enumerable: false });
Object.defineProperty(this, "response", { value: options.response, enumerable: false });
Object.setPrototypeOf(this, RestError.prototype);
}
/**
* Logging method for util.inspect in Node
*/
[inspect_js_1.custom]() {
return `RestError: ${this.message} \n ${errorSanitizer.sanitize(this)}`;
// Extract non-enumerable properties and add them back. This is OK since in this output the request and
// response get sanitized.
return `RestError: ${this.message} \n ${errorSanitizer.sanitize(Object.assign(Object.assign({}, this), { request: this.request, response: this.response }))}`;
}
}
exports.RestError = RestError;
Expand Down Expand Up @@ -75975,7 +75981,8 @@ exports.XML_CHARKEY = "_";
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.parseXML = exports.stringifyXML = void 0;
exports.stringifyXML = stringifyXML;
exports.parseXML = parseXML;
const fast_xml_parser_1 = __nccwpck_require__(626);
const xml_common_js_1 = __nccwpck_require__(618);
function getCommonOptions(options) {
Expand Down Expand Up @@ -76007,7 +76014,6 @@ function stringifyXML(obj, opts = {}) {
const xmlData = j2x.build(node);
return `<?xml version="1.0" encoding="UTF-8" standalone="yes"?>${xmlData}`.replace(/\n/g, "");
}
exports.stringifyXML = stringifyXML;
/**
* Converts given XML string into JSON
* @param str - String containing the XML content to be parsed into JSON
Expand Down Expand Up @@ -76037,7 +76043,6 @@ async function parseXML(str, opts = {}) {
}
return parsedXml;
}
exports.parseXML = parseXML;
//# sourceMappingURL=xml.js.map

/***/ }),
Expand Down
2 changes: 1 addition & 1 deletion actions/josm_plugin_dependencies/dist/index.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit a68ef99

Please sign in to comment.