@dra2020/baseclient 1.0.120 → 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.
|
@@ -73,6 +73,7 @@ export interface SessionUserList {
|
|
|
73
73
|
export interface SessionProps {
|
|
74
74
|
id: string;
|
|
75
75
|
baseid?: string;
|
|
76
|
+
rid?: string;
|
|
76
77
|
name: string;
|
|
77
78
|
type: string;
|
|
78
79
|
description: string;
|
|
@@ -86,6 +87,7 @@ export interface SessionProps {
|
|
|
86
87
|
requestCount: number;
|
|
87
88
|
deleted: boolean;
|
|
88
89
|
published?: string;
|
|
90
|
+
locked?: boolean;
|
|
89
91
|
official: boolean;
|
|
90
92
|
loadFailed: boolean;
|
|
91
93
|
accessMap: AccessMap;
|
|
@@ -109,6 +111,7 @@ export interface SessionUpdateProps {
|
|
|
109
111
|
deleted?: boolean;
|
|
110
112
|
published?: boolean;
|
|
111
113
|
official?: boolean;
|
|
114
|
+
locked?: boolean;
|
|
112
115
|
name?: string;
|
|
113
116
|
description?: string;
|
|
114
117
|
labelupdate?: LabelUpdate;
|
package/lib/ot-js/otsession.ts
CHANGED
|
@@ -100,7 +100,8 @@ export interface SessionUserList
|
|
|
100
100
|
export interface SessionProps
|
|
101
101
|
{
|
|
102
102
|
id: string;
|
|
103
|
-
baseid?: string;
|
|
103
|
+
baseid?: string; // For owner, actual sid if id is frozen version
|
|
104
|
+
rid?: string; // Revision ID for frozen version
|
|
104
105
|
name: string;
|
|
105
106
|
type: string;
|
|
106
107
|
description: string;
|
|
@@ -114,6 +115,7 @@ export interface SessionProps
|
|
|
114
115
|
requestCount: number;
|
|
115
116
|
deleted: boolean;
|
|
116
117
|
published?: string;
|
|
118
|
+
locked?: boolean;
|
|
117
119
|
official: boolean;
|
|
118
120
|
loadFailed: boolean;
|
|
119
121
|
accessMap: AccessMap;
|
|
@@ -137,6 +139,7 @@ export interface SessionUpdateProps
|
|
|
137
139
|
deleted?: boolean;
|
|
138
140
|
published?: boolean;
|
|
139
141
|
official?: boolean;
|
|
142
|
+
locked?: boolean;
|
|
140
143
|
name?: string;
|
|
141
144
|
description?: string;
|
|
142
145
|
labelupdate?: LabelUpdate;
|