@dra2020/baseclient 1.0.168 → 1.0.170
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/baseclient.js +0 -3
- package/dist/baseclient.js.map +1 -1
- package/dist/ot-js/otsession.d.ts +2 -0
- package/lib/geo/geo.ts +0 -3
- package/lib/ot-js/otsession.ts +2 -0
- package/package.json +1 -1
|
@@ -93,6 +93,7 @@ export interface SessionProps {
|
|
|
93
93
|
published?: string;
|
|
94
94
|
locked?: boolean;
|
|
95
95
|
official: boolean;
|
|
96
|
+
template?: boolean;
|
|
96
97
|
loadFailed: boolean;
|
|
97
98
|
accessMap: AccessMap;
|
|
98
99
|
revisions: RevisionList;
|
|
@@ -115,6 +116,7 @@ export interface SessionUpdateProps {
|
|
|
115
116
|
deleted?: boolean;
|
|
116
117
|
published?: boolean;
|
|
117
118
|
official?: boolean;
|
|
119
|
+
template?: boolean;
|
|
118
120
|
locked?: boolean;
|
|
119
121
|
name?: string;
|
|
120
122
|
description?: string;
|
package/lib/geo/geo.ts
CHANGED
|
@@ -594,9 +594,6 @@ export class GeoMultiCollection
|
|
|
594
594
|
{
|
|
595
595
|
// New style, use splice on packed topologies
|
|
596
596
|
let filterout = this.someHidden() ? this.hidden : null; // splice function requires NULL for empty
|
|
597
|
-
// DEBUGGING
|
|
598
|
-
filterout = null;
|
|
599
|
-
// DEBUGGING
|
|
600
597
|
let topoarray = Object.values(this.entries).filter((e: GeoEntry) => this._length(e) > 0)
|
|
601
598
|
.map((e: GeoEntry) => { return { topology: this._topo(e), filterout } });
|
|
602
599
|
this.all.topo = topoarray.length == 0 ? null : topoarray.length == 1 ? topoarray[0].topology : Poly.topoSplice(topoarray);
|
package/lib/ot-js/otsession.ts
CHANGED
|
@@ -121,6 +121,7 @@ export interface SessionProps
|
|
|
121
121
|
published?: string;
|
|
122
122
|
locked?: boolean;
|
|
123
123
|
official: boolean;
|
|
124
|
+
template?: boolean;
|
|
124
125
|
loadFailed: boolean;
|
|
125
126
|
accessMap: AccessMap;
|
|
126
127
|
revisions: RevisionList;
|
|
@@ -143,6 +144,7 @@ export interface SessionUpdateProps
|
|
|
143
144
|
deleted?: boolean;
|
|
144
145
|
published?: boolean;
|
|
145
146
|
official?: boolean;
|
|
147
|
+
template?: boolean;
|
|
146
148
|
locked?: boolean;
|
|
147
149
|
name?: string;
|
|
148
150
|
description?: string;
|