You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The destination space was not found. This can happen for multiple reasons:
49
39
- If you haven't yet, you should create your space manually.
50
40
- If your destination space is in another organization, and your user from the source space does not have access to it, you'll need to specify separate sourceManagementToken and destinationManagementToken
51
41
52
42
Full error details below.
53
43
`)
54
-
throwerr
55
-
})
44
+
throwerr
45
+
})
46
+
}
47
+
},
48
+
{
49
+
title: 'Fetching content types data',
50
+
task: (ctx)=>{
51
+
returnpagedGet(ctx.space,'getContentTypes')
52
+
.then(extractItems)
53
+
.then((items)=>{
54
+
ctx.data.contentTypes=items
55
+
})
56
+
},
57
+
skip: ()=>skipContentModel
58
+
},
59
+
{
60
+
title: 'Fetching editor interfaces data',
61
+
task: (ctx)=>{
62
+
returngetEditorInterfaces(ctx.data.contentTypes)
63
+
.then((editorInterfaces)=>{
64
+
ctx.data.editorInterfaces=editorInterfaces
65
+
})
66
+
},
67
+
skip: (ctx)=>skipContentModel||(ctx.data.contentTypes.length===0&&'Skipped since no content types downloaded')
0 commit comments