File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -49,4 +49,12 @@ export interface ContentCreate {
49
49
anonymous_export_view ?: ContentBodyCreate ;
50
50
atlas_doc_format ?: ContentBodyCreate ;
51
51
} ;
52
+ /**
53
+ * The new version for the created content.
54
+ * To get the current version number, use [Get content by ID](#api-content-id-get) and retrieve `version.number`.
55
+ */
56
+ version ?: {
57
+ /** The version comment. */
58
+ message ?: string ;
59
+ } ;
52
60
}
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ export interface ContentUpdate {
11
11
version : {
12
12
/** The version number. */
13
13
number : number ;
14
+ /** The version comment. */
15
+ message ?: string ;
14
16
} ;
15
17
/** The updated title of the content. If you are not changing this field, set this to the current `title`. */
16
18
title : string ;
You can’t perform that action at this time.
0 commit comments