UNPKG

@agility/cli

Version:

Agility CLI for working with your content. (Public Beta)

19 lines 1.31 kB
"use strict"; /** * Publisher Functions - Simple SDK Mirroring * * This module provides simple publisher functions that mirror the SDK patterns exactly. * These functions are lightweight wrappers around the Management SDK publishing methods. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.publishBatch = exports.publishContentList = exports.publishPage = exports.publishContentItem = void 0; // Simple publisher functions - mirror SDK patterns var content_item_publisher_1 = require("./content-item-publisher"); Object.defineProperty(exports, "publishContentItem", { enumerable: true, get: function () { return content_item_publisher_1.publishContentItem; } }); var page_publisher_1 = require("./page-publisher"); Object.defineProperty(exports, "publishPage", { enumerable: true, get: function () { return page_publisher_1.publishPage; } }); var content_list_publisher_1 = require("./content-list-publisher"); Object.defineProperty(exports, "publishContentList", { enumerable: true, get: function () { return content_list_publisher_1.publishContentList; } }); var batch_publisher_1 = require("./batch-publisher"); Object.defineProperty(exports, "publishBatch", { enumerable: true, get: function () { return batch_publisher_1.publishBatch; } }); //# sourceMappingURL=index.js.map