UNPKG

@telefonica/confluence-sync

Version:

Creates/updates/deletes Confluence pages based on a list of objects containing the page contents. Supports nested pages and attachments upload

14 lines (13 loc) 430 B
"use strict"; // SPDX-FileCopyrightText: 2024 Telefónica Innovación Digital // SPDX-License-Identifier: Apache-2.0 Object.defineProperty(exports, "__esModule", { value: true }); exports.CompoundError = void 0; class CompoundError extends Error { errors; constructor(...errors) { super(errors.map((error) => error.message).join("\n")); this.errors = errors; } } exports.CompoundError = CompoundError;