@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
13 lines (12 loc) • 565 B
JavaScript
;
// SPDX-FileCopyrightText: 2025 Telefónica Innovación Digital
// SPDX-License-Identifier: Apache-2.0
Object.defineProperty(exports, "__esModule", { value: true });
exports.PagesWithoutIdException = void 0;
const Pages_1 = require("../support/Pages");
class PagesWithoutIdException extends Error {
constructor(pagesWithoutId, options) {
super(`You are using ID mode and there are pages without id: ${(0, Pages_1.getPagesTitlesCommaSeparated)(pagesWithoutId)}`, options);
}
}
exports.PagesWithoutIdException = PagesWithoutIdException;