@dra2020/baseclient 1.0.121 → 1.0.122
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.
|
@@ -87,6 +87,7 @@ export interface SessionProps {
|
|
|
87
87
|
requestCount: number;
|
|
88
88
|
deleted: boolean;
|
|
89
89
|
published?: string;
|
|
90
|
+
locked?: boolean;
|
|
90
91
|
official: boolean;
|
|
91
92
|
loadFailed: boolean;
|
|
92
93
|
accessMap: AccessMap;
|
|
@@ -110,6 +111,7 @@ export interface SessionUpdateProps {
|
|
|
110
111
|
deleted?: boolean;
|
|
111
112
|
published?: boolean;
|
|
112
113
|
official?: boolean;
|
|
114
|
+
locked?: boolean;
|
|
113
115
|
name?: string;
|
|
114
116
|
description?: string;
|
|
115
117
|
labelupdate?: LabelUpdate;
|
package/lib/ot-js/otsession.ts
CHANGED
|
@@ -115,6 +115,7 @@ export interface SessionProps
|
|
|
115
115
|
requestCount: number;
|
|
116
116
|
deleted: boolean;
|
|
117
117
|
published?: string;
|
|
118
|
+
locked?: boolean;
|
|
118
119
|
official: boolean;
|
|
119
120
|
loadFailed: boolean;
|
|
120
121
|
accessMap: AccessMap;
|
|
@@ -138,6 +139,7 @@ export interface SessionUpdateProps
|
|
|
138
139
|
deleted?: boolean;
|
|
139
140
|
published?: boolean;
|
|
140
141
|
official?: boolean;
|
|
142
|
+
locked?: boolean;
|
|
141
143
|
name?: string;
|
|
142
144
|
description?: string;
|
|
143
145
|
labelupdate?: LabelUpdate;
|