Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,136 changes: 615 additions & 521 deletions build/Docframe.cs

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions build/Docframe.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6706,6 +6706,9 @@ export interface IProtoTable {

/** ProtoTable uuid */
uuid?: (string|null);

/** ProtoTable noDocumentStructure */
noDocumentStructure?: (IProtoBoxedBool|null);
}

/** Represents a ProtoTable. */
Expand Down Expand Up @@ -6744,6 +6747,9 @@ export class ProtoTable implements IProtoTable {
/** ProtoTable uuid. */
public uuid: string;

/** ProtoTable noDocumentStructure. */
public noDocumentStructure?: (IProtoBoxedBool|null);

/**
* Creates a new ProtoTable instance using the specified properties.
* @param [properties] Properties to set
Expand Down Expand Up @@ -6836,6 +6842,9 @@ export interface IProtoTableConfig {

/** ProtoTableConfig comChannelUUIDs */
comChannelUUIDs?: (string[]|null);

/** ProtoTableConfig noDocumentStructure */
noDocumentStructure?: (IProtoBoxedBool|null);
}

/** Represents a ProtoTableConfig. */
Expand All @@ -6859,6 +6868,9 @@ export class ProtoTableConfig implements IProtoTableConfig {
/** ProtoTableConfig comChannelUUIDs. */
public comChannelUUIDs: string[];

/** ProtoTableConfig noDocumentStructure. */
public noDocumentStructure?: (IProtoBoxedBool|null);

/**
* Creates a new ProtoTableConfig instance using the specified properties.
* @param [properties] Properties to set
Expand Down
56 changes: 56 additions & 0 deletions build/Docframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -18120,6 +18120,7 @@ $root.ProtoTable = (function() {
* @property {Array.<string>|null} [comChannelUUIDs] ProtoTable comChannelUUIDs
* @property {IProtoTableElementProperties|null} [elementProperties] ProtoTable elementProperties
* @property {string|null} [uuid] ProtoTable uuid
* @property {IProtoBoxedBool|null} [noDocumentStructure] ProtoTable noDocumentStructure
*/

/**
Expand Down Expand Up @@ -18211,6 +18212,14 @@ $root.ProtoTable = (function() {
*/
ProtoTable.prototype.uuid = "";

/**
* ProtoTable noDocumentStructure.
* @member {IProtoBoxedBool|null|undefined} noDocumentStructure
* @memberof ProtoTable
* @instance
*/
ProtoTable.prototype.noDocumentStructure = null;

/**
* Creates a new ProtoTable instance using the specified properties.
* @function create
Expand Down Expand Up @@ -18255,6 +18264,8 @@ $root.ProtoTable = (function() {
$root.ProtoTableElementProperties.encode(message.elementProperties, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim();
if (message.uuid != null && Object.hasOwnProperty.call(message, "uuid"))
writer.uint32(/* id 9, wireType 2 =*/74).string(message.uuid);
if (message.noDocumentStructure != null && Object.hasOwnProperty.call(message, "noDocumentStructure"))
$root.ProtoBoxedBool.encode(message.noDocumentStructure, writer.uint32(/* id 10, wireType 2 =*/82).fork()).ldelim();
return writer;
};

Expand Down Expand Up @@ -18329,6 +18340,10 @@ $root.ProtoTable = (function() {
message.uuid = reader.string();
break;
}
case 10: {
message.noDocumentStructure = $root.ProtoBoxedBool.decode(reader, reader.uint32());
break;
}
default:
reader.skipType(tag & 7);
break;
Expand Down Expand Up @@ -18411,6 +18426,11 @@ $root.ProtoTable = (function() {
if (message.uuid != null && message.hasOwnProperty("uuid"))
if (!$util.isString(message.uuid))
return "uuid: string expected";
if (message.noDocumentStructure != null && message.hasOwnProperty("noDocumentStructure")) {
var error = $root.ProtoBoxedBool.verify(message.noDocumentStructure);
if (error)
return "noDocumentStructure." + error;
}
return null;
};

Expand Down Expand Up @@ -18472,6 +18492,11 @@ $root.ProtoTable = (function() {
}
if (object.uuid != null)
message.uuid = String(object.uuid);
if (object.noDocumentStructure != null) {
if (typeof object.noDocumentStructure !== "object")
throw TypeError(".ProtoTable.noDocumentStructure: object expected");
message.noDocumentStructure = $root.ProtoBoxedBool.fromObject(object.noDocumentStructure);
}
return message;
};

Expand Down Expand Up @@ -18500,6 +18525,7 @@ $root.ProtoTable = (function() {
object.subTotal = null;
object.elementProperties = null;
object.uuid = "";
object.noDocumentStructure = null;
}
if (message._children && message._children.length) {
object._children = [];
Expand All @@ -18525,6 +18551,8 @@ $root.ProtoTable = (function() {
object.elementProperties = $root.ProtoTableElementProperties.toObject(message.elementProperties, options);
if (message.uuid != null && message.hasOwnProperty("uuid"))
object.uuid = message.uuid;
if (message.noDocumentStructure != null && message.hasOwnProperty("noDocumentStructure"))
object.noDocumentStructure = $root.ProtoBoxedBool.toObject(message.noDocumentStructure, options);
return object;
};

Expand Down Expand Up @@ -18567,6 +18595,7 @@ $root.ProtoTableConfig = (function() {
* @property {IProtoTableSettings|null} [settings] ProtoTableConfig settings
* @property {string|null} [configName] ProtoTableConfig configName
* @property {Array.<string>|null} [comChannelUUIDs] ProtoTableConfig comChannelUUIDs
* @property {IProtoBoxedBool|null} [noDocumentStructure] ProtoTableConfig noDocumentStructure
*/

/**
Expand Down Expand Up @@ -18617,6 +18646,14 @@ $root.ProtoTableConfig = (function() {
*/
ProtoTableConfig.prototype.comChannelUUIDs = $util.emptyArray;

/**
* ProtoTableConfig noDocumentStructure.
* @member {IProtoBoxedBool|null|undefined} noDocumentStructure
* @memberof ProtoTableConfig
* @instance
*/
ProtoTableConfig.prototype.noDocumentStructure = null;

/**
* Creates a new ProtoTableConfig instance using the specified properties.
* @function create
Expand Down Expand Up @@ -18650,6 +18687,8 @@ $root.ProtoTableConfig = (function() {
if (message.comChannelUUIDs != null && message.comChannelUUIDs.length)
for (var i = 0; i < message.comChannelUUIDs.length; ++i)
writer.uint32(/* id 4, wireType 2 =*/34).string(message.comChannelUUIDs[i]);
if (message.noDocumentStructure != null && Object.hasOwnProperty.call(message, "noDocumentStructure"))
$root.ProtoBoxedBool.encode(message.noDocumentStructure, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
return writer;
};

Expand Down Expand Up @@ -18702,6 +18741,10 @@ $root.ProtoTableConfig = (function() {
message.comChannelUUIDs.push(reader.string());
break;
}
case 5: {
message.noDocumentStructure = $root.ProtoBoxedBool.decode(reader, reader.uint32());
break;
}
default:
reader.skipType(tag & 7);
break;
Expand Down Expand Up @@ -18757,6 +18800,11 @@ $root.ProtoTableConfig = (function() {
if (!$util.isString(message.comChannelUUIDs[i]))
return "comChannelUUIDs: string[] expected";
}
if (message.noDocumentStructure != null && message.hasOwnProperty("noDocumentStructure")) {
var error = $root.ProtoBoxedBool.verify(message.noDocumentStructure);
if (error)
return "noDocumentStructure." + error;
}
return null;
};

Expand Down Expand Up @@ -18791,6 +18839,11 @@ $root.ProtoTableConfig = (function() {
for (var i = 0; i < object.comChannelUUIDs.length; ++i)
message.comChannelUUIDs[i] = String(object.comChannelUUIDs[i]);
}
if (object.noDocumentStructure != null) {
if (typeof object.noDocumentStructure !== "object")
throw TypeError(".ProtoTableConfig.noDocumentStructure: object expected");
message.noDocumentStructure = $root.ProtoBoxedBool.fromObject(object.noDocumentStructure);
}
return message;
};

Expand All @@ -18813,6 +18866,7 @@ $root.ProtoTableConfig = (function() {
object.parent = null;
object.settings = null;
object.configName = "";
object.noDocumentStructure = null;
}
if (message.parent != null && message.hasOwnProperty("parent"))
object.parent = $root.ProtoDocumentElement.toObject(message.parent, options);
Expand All @@ -18825,6 +18879,8 @@ $root.ProtoTableConfig = (function() {
for (var j = 0; j < message.comChannelUUIDs.length; ++j)
object.comChannelUUIDs[j] = message.comChannelUUIDs[j];
}
if (message.noDocumentStructure != null && message.hasOwnProperty("noDocumentStructure"))
object.noDocumentStructure = $root.ProtoBoxedBool.toObject(message.noDocumentStructure, options);
return object;
};

Expand Down
3 changes: 3 additions & 0 deletions build/docframe.proto
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,7 @@ Node subTotal = 6;
repeated string comChannelUUIDs = 7;
ProtoTableElementProperties elementProperties = 8;
string uuid = 9;
ProtoBoxedBool noDocumentStructure = 10;
}

message ProtoTableConfig {
Expand All @@ -592,6 +593,8 @@ ProtoDocumentElement parent = 1;
ProtoTableSettings settings = 2;
string configName = 3;
repeated string comChannelUUIDs = 4;

ProtoBoxedBool noDocumentStructure = 5;
}

message ProtoTableSettings {
Expand Down
Loading