@eddye68/studio-client
Version:
The AWS service Studio client
73 lines (72 loc) • 2.24 kB
JavaScript
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/model/wfl/wflobject.ts
var wflobject_exports = {};
__export(wflobject_exports, {
WflObject: () => WflObject
});
module.exports = __toCommonJS(wflobject_exports);
var WflObject = class {
constructor(params) {
this.__classname__ = "Object";
this.MetaData = null;
this.Relations = null;
this.Pages = null;
this.Files = null;
this.Messages = null;
this.Elements = null;
this.Targets = null;
this.Renditions = null;
this.MessageList = null;
this.ObjectLabels = null;
this.InDesignArticles = null;
this.Placements = null;
this.Operations = null;
this.MetaData = params.Metadata ?? null;
this.Relations = params.Relations ?? null;
;
this.Pages = params.Pages ?? null;
;
this.Files = params.Files ?? null;
;
this.Messages = params.Messages ?? null;
;
this.Elements = params.Elements ?? null;
;
this.Targets = params.Targets ?? null;
;
this.Renditions = params.Renditions ?? null;
;
this.MessageList = params.MessageList ?? null;
;
this.ObjectLabels = params.ObjectLabels ?? null;
;
this.InDesignArticles = params.InDesignArticles ?? null;
;
this.Placements = params.Placements ?? null;
;
this.Operations = params.Operations ?? null;
;
}
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
WflObject
});
//# sourceMappingURL=wflobject.js.map