File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,19 @@ export default {
9797 additionalProperties : false ,
9898 required : [ "uri" , "branch" ] ,
9999 } ,
100+ continue : {
101+ type : "object" ,
102+ description : "Configuration options for continuing a tutorial" ,
103+ properties : {
104+ commands : {
105+ $ref : "#/definitions/command_array" ,
106+ } ,
107+ vscodeCommands : {
108+ $ref : "#/definitions/vscode_command_array" ,
109+ } ,
110+ } ,
111+ additionalProperties : false ,
112+ } ,
100113 reset : {
101114 type : "object" ,
102115 description : "Configuration options for resetting a tutorial" ,
@@ -164,6 +177,11 @@ export default {
164177 description :
165178 "An event triggered on tutorial startup. Sends tutorialId" ,
166179 } ,
180+ continue : {
181+ type : "boolean" ,
182+ description :
183+ "An event triggered when continuing a tutorial. Sends tutorialId" ,
184+ } ,
167185 reset : {
168186 type : "boolean" ,
169187 description :
Original file line number Diff line number Diff line change @@ -116,6 +116,19 @@ export default {
116116 additionalProperties : false ,
117117 required : [ "uri" , "branch" ] ,
118118 } ,
119+ continue : {
120+ type : "object" ,
121+ description : "Configuration options for continuing a tutorial" ,
122+ properties : {
123+ commands : {
124+ $ref : "#/definitions/command_array" ,
125+ } ,
126+ vscodeCommands : {
127+ $ref : "#/definitions/vscode_command_array" ,
128+ } ,
129+ } ,
130+ additionalProperties : false ,
131+ } ,
119132 reset : {
120133 type : "object" ,
121134 description : "Configuration options for resetting a tutorial" ,
@@ -183,6 +196,11 @@ export default {
183196 description :
184197 "An event triggered on tutorial startup. Sends tutorialId" ,
185198 } ,
199+ continue : {
200+ type : "boolean" ,
201+ description :
202+ "An event triggered when continuing a tutorial. Sends tutorialId" ,
203+ } ,
186204 reset : {
187205 type : "boolean" ,
188206 description :
You can’t perform that action at this time.
0 commit comments