@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
12 lines (11 loc) • 445 B
JavaScript
;
// SPDX-FileCopyrightText: 2024 Telefónica Innovación Digital
// SPDX-License-Identifier: Apache-2.0
Object.defineProperty(exports, "__esModule", { value: true });
exports.RootPageForbiddenException = void 0;
class RootPageForbiddenException extends Error {
constructor(options) {
super("rootPageId option is not allowed in ID mode", options);
}
}
exports.RootPageForbiddenException = RootPageForbiddenException;