storyblok-backup 0.5.0 → 0.6.0

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.
package/.env.example CHANGED
@@ -1,3 +1,3 @@
1
- STORYBLOK_OAUTH_TOKEN=a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z6
2
- STORYBLOK_SPACE_ID=123456
1
+ STORYBLOK_OAUTH_TOKEN=a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z6
2
+ STORYBLOK_SPACE_ID=123456
3
3
  STORYBLOK_REGION=eu
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  A npx CLI tool to create a full backup of a space of the [Storyblok CMS](https://www.storyblok.com).
7
7
 
8
- A restore tool to restore (create or update) resources is also included.
8
+ A limited restore tool to restore (create or update) single resources is also included. A full restore-tool is available in a separate package: [netgen/storyblok-restore](https://github.com/netgen/storyblok-restore)
9
9
 
10
10
  The backup script will fetch the following resources of a Storyblok space using the Management API and archive them in a zip file:
11
11
 
@@ -38,6 +38,8 @@ The restore script is able to individually restore the resources from the backup
38
38
  - Workflow stage changes: No update possible.
39
39
  - Access Tokens: Creating access tokens from backup makes no sense, since it will result in a new token-string.
40
40
 
41
+ For a much more feature-rich full restore-tool see [netgen/storyblok-restore](https://github.com/netgen/storyblok-restore).
42
+
41
43
  ## Table of contents
42
44
 
43
45
  - [Installation](#installation)
@@ -161,7 +163,7 @@ This will create the folder `./my-dir/backup`, fetch all resources (incl. the or
161
163
 
162
164
  #### Continuous backup integration examples
163
165
 
164
- You can use this script to create periodic backups of Storyblok spaces using GitHub Actions and artifacts, or commit each content change to a git repository usint Storyblok's webhooks.
166
+ You can use this script to create periodic backups of Storyblok spaces using GitHub Actions and artifacts, or commit each content change to a git repository using Storyblok's webhooks.
165
167
 
166
168
  ##### Example for a GitHub workflow for a complete backup as an artifact
167
169
 
@@ -226,7 +228,7 @@ Also keep in mind, that there is a limit on artifact storage and runner minutes
226
228
 
227
229
  ##### Example for a GitHub workflow for an incremental git-commit-based backup
228
230
 
229
- The following workflow should run via webhook on every relevant change (e.g.publish) in Storyblok. It creates a new current backup (excl. asset files) and commits them to the current repository in the `backup` folder. This enables an incremental git-commit-based backup of all Storyblok-content.
231
+ The following workflow should run via webhook on every relevant change (e.g.publish) in Storyblok. It creates a new current backup (excl. asset files and resources of types access-tokens, activities and workflow-stage-changes) and commits them to the current repository in the `backup` folder. This enables an incremental git-commit-based backup of all Storyblok-content.
230
232
 
231
233
  ```yaml
232
234
  name: Incremental Repository Backup
@@ -257,7 +259,7 @@ jobs:
257
259
  env:
258
260
  STORYBLOK_OAUTH_TOKEN: ${{ secrets.STORYBLOK_OAUTH_TOKEN }}
259
261
  STORYBLOK_SPACE_ID: ${{ secrets.STORYBLOK_SPACE_ID }}
260
- run: npx storyblok-backup
262
+ run: npx storyblok-backup --omit-types "access-tokens,activities,workflow-stage-changes"
261
263
 
262
264
  - name: Copy files into repository
263
265
  run: |
@@ -282,9 +284,11 @@ A webhook to the URL `https://api.github.com/repos/{owner}/{repo}/dispatches` mu
282
284
 
283
285
  ### Restore
284
286
 
287
+ (NOTE: The included restore functionality is limited to restoring only single documents, and not full spaces. For a much more feature-rich full restore-tool see [netgen/storyblok-restore](https://github.com/netgen/storyblok-restore).)
288
+
285
289
  Make sure to install the package first (see [Installation](#installation)).
286
290
 
287
- Call `npx storyblok-restore` with the following options:
291
+ Call `npx storyblok-backup-restore` with the following options:
288
292
 
289
293
  #### Restore options
290
294
 
@@ -339,7 +343,7 @@ Call `npx storyblok-restore` with the following options:
339
343
  #### Minimal restore example
340
344
 
341
345
  ```shell
342
- npx storyblok-restore --token 1234567890abcdef --space 12345 --type story --file ./.output/backup/123456789.json
346
+ npx storyblok-backup-restore --token 1234567890abcdef --space 12345 --type story --file ./.output/backup/123456789.json
343
347
  ```
344
348
 
345
349
  This will restore the story from the stated file by updating it.
@@ -347,7 +351,7 @@ This will restore the story from the stated file by updating it.
347
351
  #### Maximal restore example
348
352
 
349
353
  ```shell
350
- npx storyblok-restore \
354
+ npx storyblok-backup-restore \
351
355
  --token 1234567890abcdef \
352
356
  --space 12345 \
353
357
  --region ap \
@@ -8,7 +8,7 @@ import dotenvx from '@dotenvx/dotenvx'
8
8
 
9
9
  const startTime = performance.now()
10
10
 
11
- dotenvx.config({ quiet: true })
11
+ dotenvx.config({ quiet: true, ignore: ['MISSING_ENV_FILE'] })
12
12
 
13
13
  const resourceTypes = [
14
14
  'story',
@@ -37,7 +37,7 @@ const args = minimist(process.argv.slice(2))
37
37
 
38
38
  if ('help' in args) {
39
39
  console.log(`USAGE
40
- $ npx storyblok-restore
40
+ $ npx storyblok-backup-restore
41
41
 
42
42
  OPTIONS
43
43
  --token <token> (required) Personal OAuth access token created
@@ -69,10 +69,10 @@ OPTIONS
69
69
  --help Show this help
70
70
 
71
71
  MINIMAL EXAMPLE
72
- $ npx storyblok-restore --token 1234567890abcdef --space 12345 --type story --file ./.output/backup/123456789.json
72
+ $ npx storyblok-backup-restore --token 1234567890abcdef --space 12345 --type story --file ./.output/backup/123456789.json
73
73
 
74
74
  MAXIMAL EXAMPLE
75
- $ npx storyblok-restore \\
75
+ $ npx storyblok-backup-restore \\
76
76
  --token 1234567890abcdef \\
77
77
  --space 12345 \\
78
78
  --region ap \\
@@ -11,7 +11,7 @@ import dotenvx from '@dotenvx/dotenvx'
11
11
 
12
12
  const startTime = performance.now()
13
13
 
14
- dotenvx.config({ quiet: true })
14
+ dotenvx.config({ quiet: true, ignore: ['MISSING_ENV_FILE'] })
15
15
 
16
16
  let resourceTypes = [
17
17
  'stories',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storyblok-backup",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "npx CLI tool to create a full backup of a Storyblok space and restore single resources from it.",
5
5
  "scripts": {
6
6
  "upgrade": "npx npm-check-updates -i -u && pnpm install",
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "bin": {
15
15
  "storyblok-backup": "bin/storyblok-backup.mjs",
16
- "storyblok-restore": "bin/storyblok-restore.mjs"
16
+ "storyblok-backup-restore": "bin/storyblok-backup-restore.mjs"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
@@ -1,34 +0,0 @@
1
- {
2
- "name": "feature",
3
- "display_name": null,
4
- "description": null,
5
- "created_at": "2024-07-13T20:18:27.194Z",
6
- "updated_at": "2024-07-13T22:32:08.433Z",
7
- "id": 6045521,
8
- "schema": {
9
- "name": {
10
- "type": "text"
11
- }
12
- },
13
- "image": null,
14
- "preview_field": null,
15
- "is_root": false,
16
- "preview_tmpl": null,
17
- "is_nestable": true,
18
- "all_presets": [],
19
- "preset_id": null,
20
- "real_name": "feature",
21
- "component_group_uuid": "6695906b-b6d3-4149-b237-3c1305dff08d",
22
- "color": null,
23
- "icon": null,
24
- "internal_tags_list": [
25
- {
26
- "id": 47100,
27
- "name": "component-tag2"
28
- }
29
- ],
30
- "internal_tag_ids": [
31
- "47100"
32
- ],
33
- "content_type_asset_preview": null
34
- }
@@ -1,27 +0,0 @@
1
- {
2
- "name": "grid",
3
- "display_name": null,
4
- "description": null,
5
- "created_at": "2024-07-13T20:18:27.179Z",
6
- "updated_at": "2024-07-13T20:18:27.179Z",
7
- "id": 6045520,
8
- "schema": {
9
- "columns": {
10
- "type": "bloks"
11
- }
12
- },
13
- "image": null,
14
- "preview_field": null,
15
- "is_root": false,
16
- "preview_tmpl": null,
17
- "is_nestable": true,
18
- "all_presets": [],
19
- "preset_id": null,
20
- "real_name": "grid",
21
- "component_group_uuid": null,
22
- "color": null,
23
- "icon": null,
24
- "internal_tags_list": [],
25
- "internal_tag_ids": [],
26
- "content_type_asset_preview": null
27
- }
@@ -1,80 +0,0 @@
1
- {
2
- "name": "page",
3
- "display_name": null,
4
- "description": null,
5
- "created_at": "2024-07-13T20:18:27.146Z",
6
- "updated_at": "2024-10-25T08:47:01.171Z",
7
- "id": 6045518,
8
- "schema": {
9
- "body": {
10
- "type": "bloks"
11
- },
12
- "test": {
13
- "type": "option",
14
- "pos": 1,
15
- "use_uuid": true,
16
- "source": "internal",
17
- "exclude_empty_option": true,
18
- "datasource_slug": "test"
19
- },
20
- "reference": {
21
- "type": "option",
22
- "pos": 2,
23
- "use_uuid": true,
24
- "source": "internal_stories",
25
- "entry_appearance": "card"
26
- },
27
- "image": {
28
- "type": "asset",
29
- "pos": 3,
30
- "filetypes": [
31
- "images"
32
- ]
33
- },
34
- "link": {
35
- "type": "multilink",
36
- "pos": 4
37
- },
38
- "richtext": {
39
- "type": "richtext",
40
- "pos": 5
41
- },
42
- "multi_option": {
43
- "type": "options",
44
- "pos": 6,
45
- "source": "internal_stories"
46
- },
47
- "references": {
48
- "type": "options",
49
- "pos": 7,
50
- "is_reference_type": true,
51
- "source": "internal_stories",
52
- "entry_appearance": "card",
53
- "allow_advanced_search": true
54
- }
55
- },
56
- "image": "",
57
- "preview_field": null,
58
- "is_root": true,
59
- "preview_tmpl": null,
60
- "is_nestable": false,
61
- "all_presets": [
62
- {
63
- "id": 2331470,
64
- "name": "my-preset",
65
- "component_id": 6045518,
66
- "image": "",
67
- "icon": "",
68
- "color": "",
69
- "description": ""
70
- }
71
- ],
72
- "preset_id": null,
73
- "real_name": "page",
74
- "component_group_uuid": null,
75
- "color": null,
76
- "icon": null,
77
- "internal_tags_list": [],
78
- "internal_tag_ids": [],
79
- "content_type_asset_preview": null
80
- }
@@ -1,27 +0,0 @@
1
- {
2
- "name": "teaser",
3
- "display_name": null,
4
- "description": null,
5
- "created_at": "2024-07-13T20:18:27.163Z",
6
- "updated_at": "2024-07-13T20:18:27.163Z",
7
- "id": 6045519,
8
- "schema": {
9
- "headline": {
10
- "type": "text"
11
- }
12
- },
13
- "image": null,
14
- "preview_field": null,
15
- "is_root": false,
16
- "preview_tmpl": null,
17
- "is_nestable": true,
18
- "all_presets": [],
19
- "preset_id": null,
20
- "real_name": "teaser",
21
- "component_group_uuid": null,
22
- "color": null,
23
- "icon": null,
24
- "internal_tags_list": [],
25
- "internal_tag_ids": [],
26
- "content_type_asset_preview": null
27
- }
@@ -1,23 +0,0 @@
1
- {
2
- "name": "test",
3
- "display_name": null,
4
- "description": null,
5
- "created_at": "2024-10-25T08:14:10.889Z",
6
- "updated_at": "2024-10-25T08:14:10.889Z",
7
- "id": 6473083,
8
- "schema": {},
9
- "image": null,
10
- "preview_field": null,
11
- "is_root": false,
12
- "preview_tmpl": null,
13
- "is_nestable": true,
14
- "all_presets": [],
15
- "preset_id": null,
16
- "real_name": "test",
17
- "component_group_uuid": null,
18
- "color": null,
19
- "icon": null,
20
- "internal_tags_list": [],
21
- "internal_tag_ids": [],
22
- "content_type_asset_preview": null
23
- }
@@ -1,118 +0,0 @@
1
- {
2
- "name": "Home",
3
- "parent_id": 0,
4
- "group_id": "62c244df-afed-400c-9c3d-dc17cc528501",
5
- "alternates": [],
6
- "created_at": "2024-07-13T20:18:27.228Z",
7
- "deleted_at": null,
8
- "sort_by_date": null,
9
- "tag_list": [],
10
- "updated_at": "2024-10-25T09:11:52.910Z",
11
- "published_at": "2024-08-15T10:11:20.942Z",
12
- "id": 522674929,
13
- "uuid": "892a6960-a311-4b19-9d73-e458e582cc50",
14
- "is_folder": false,
15
- "content": {
16
- "_uid": "8127698d-346f-491f-8e51-3969724156fb",
17
- "body": [
18
- {
19
- "_uid": "10868157-a135-443b-b1b6-9069e5b3ad47",
20
- "headline": "Hello world!",
21
- "component": "teaser"
22
- },
23
- {
24
- "_uid": "624a8c0b-b1a4-47e5-82c1-9b17c1510b22",
25
- "columns": [
26
- {
27
- "_uid": "69aefccd-6f0a-4dee-af41-337e9cf31bae",
28
- "name": "Feature 1",
29
- "component": "feature"
30
- },
31
- {
32
- "_uid": "ebe62594-559c-429f-af41-9fa000b0532b",
33
- "name": "Feature 2",
34
- "component": "feature"
35
- },
36
- {
37
- "_uid": "82d5149c-8cf5-462b-89c0-2481a2265b46",
38
- "name": "Feature 3",
39
- "component": "feature"
40
- }
41
- ],
42
- "component": "grid"
43
- }
44
- ],
45
- "link": {
46
- "id": "",
47
- "url": "",
48
- "linktype": "story",
49
- "fieldtype": "multilink",
50
- "cached_url": ""
51
- },
52
- "test": "value",
53
- "image": {
54
- "id": null,
55
- "alt": null,
56
- "name": "",
57
- "focus": null,
58
- "title": null,
59
- "source": null,
60
- "filename": "",
61
- "copyright": null,
62
- "fieldtype": "asset",
63
- "meta_data": {}
64
- },
65
- "richtext": {
66
- "type": "doc",
67
- "content": [
68
- {
69
- "type": "paragraph"
70
- }
71
- ]
72
- },
73
- "component": "page",
74
- "reference": "ca1552f4-ebf6-4e86-adb3-9c525c35f25a",
75
- "references": [],
76
- "multi_option": []
77
- },
78
- "published": true,
79
- "slug": "home",
80
- "path": null,
81
- "full_slug": "home",
82
- "default_root": null,
83
- "disble_fe_editor": false,
84
- "disable_fe_editor": false,
85
- "parent": null,
86
- "is_startpage": false,
87
- "unpublished_changes": true,
88
- "meta_data": null,
89
- "imported_at": null,
90
- "pinned": false,
91
- "breadcrumbs": [],
92
- "publish_at": null,
93
- "expire_at": null,
94
- "first_published_at": "2024-08-15T10:11:20.942Z",
95
- "last_author": {
96
- "id": 197040,
97
- "userid": "g.buttinger@adwerba.at",
98
- "friendly_name": "Gerald Buttinger"
99
- },
100
- "last_author_id": 197040,
101
- "user_ids": [],
102
- "space_role_ids": [],
103
- "translated_slugs": [],
104
- "localized_paths": [],
105
- "position": 0,
106
- "translated_stories": [],
107
- "can_not_view": false,
108
- "is_scheduled": null,
109
- "scheduled_dates": null,
110
- "ideas": [],
111
- "stage": {
112
- "workflow_id": 68154,
113
- "workflow_stage_id": 578771,
114
- "story_id": 522674929,
115
- "created_at": "2024-10-25T08:04:09.640Z"
116
- },
117
- "favourite_for_user_ids": []
118
- }
@@ -1,96 +0,0 @@
1
- {
2
- "name": "no-reference",
3
- "parent_id": 0,
4
- "group_id": "89a05781-266e-4562-bf71-8342c9201d10",
5
- "alternates": [],
6
- "created_at": "2024-10-25T08:30:40.619Z",
7
- "deleted_at": null,
8
- "sort_by_date": null,
9
- "tag_list": [],
10
- "updated_at": "2024-10-25T08:32:48.717Z",
11
- "published_at": null,
12
- "id": 569104997,
13
- "uuid": "f43c7c9f-22c2-4bd9-a3e4-3f3a204e4cad",
14
- "is_folder": false,
15
- "content": {
16
- "_uid": "8127698d-346f-491f-8e51-3969724156fb",
17
- "body": [
18
- {
19
- "_uid": "10868157-a135-443b-b1b6-9069e5b3ad47",
20
- "headline": "Hello world!",
21
- "component": "teaser"
22
- },
23
- {
24
- "_uid": "624a8c0b-b1a4-47e5-82c1-9b17c1510b22",
25
- "columns": [
26
- {
27
- "_uid": "69aefccd-6f0a-4dee-af41-337e9cf31bae",
28
- "name": "Feature 1",
29
- "component": "feature"
30
- },
31
- {
32
- "_uid": "ebe62594-559c-429f-af41-9fa000b0532b",
33
- "name": "Feature 2",
34
- "component": "feature"
35
- },
36
- {
37
- "_uid": "82d5149c-8cf5-462b-89c0-2481a2265b46",
38
- "name": "Feature 3",
39
- "component": "feature"
40
- }
41
- ],
42
- "component": "grid"
43
- }
44
- ],
45
- "test": "value",
46
- "image": {
47
- "id": null,
48
- "alt": null,
49
- "name": "",
50
- "focus": null,
51
- "title": null,
52
- "source": null,
53
- "filename": "",
54
- "copyright": null,
55
- "fieldtype": "asset",
56
- "meta_data": {}
57
- },
58
- "component": "page",
59
- "reference": "892a6960-a311-4b19-9d73-e458e582cc50"
60
- },
61
- "published": false,
62
- "slug": "no-reference",
63
- "path": null,
64
- "full_slug": "no-reference",
65
- "default_root": null,
66
- "disble_fe_editor": false,
67
- "disable_fe_editor": false,
68
- "parent": null,
69
- "is_startpage": false,
70
- "unpublished_changes": true,
71
- "meta_data": null,
72
- "imported_at": null,
73
- "pinned": false,
74
- "breadcrumbs": [],
75
- "publish_at": null,
76
- "expire_at": null,
77
- "first_published_at": null,
78
- "last_author": {
79
- "id": 197040,
80
- "userid": "g.buttinger@adwerba.at",
81
- "friendly_name": "Gerald Buttinger"
82
- },
83
- "last_author_id": 197040,
84
- "user_ids": [],
85
- "space_role_ids": [],
86
- "translated_slugs": [],
87
- "localized_paths": [],
88
- "position": 0,
89
- "translated_stories": [],
90
- "can_not_view": false,
91
- "is_scheduled": null,
92
- "scheduled_dates": null,
93
- "ideas": [],
94
- "stage": null,
95
- "favourite_for_user_ids": []
96
- }
@@ -1,86 +0,0 @@
1
- {
2
- "name": "link-reference",
3
- "parent_id": null,
4
- "group_id": "069e3728-e8b8-44fa-942d-6d59e50a247e",
5
- "alternates": [],
6
- "created_at": "2024-10-25T08:43:50.186Z",
7
- "deleted_at": null,
8
- "sort_by_date": null,
9
- "tag_list": [],
10
- "updated_at": "2024-10-25T09:11:52.617Z",
11
- "published_at": null,
12
- "id": 569109297,
13
- "uuid": "701448d9-6c5f-4e5f-ad68-a536cb5561fc",
14
- "is_folder": false,
15
- "content": {
16
- "_uid": "586a5908-0b7c-43e0-bac9-890a15314720",
17
- "body": [],
18
- "link": {
19
- "id": "ca1552f4-ebf6-4e86-adb3-9c525c35f25a",
20
- "url": "",
21
- "linktype": "story",
22
- "fieldtype": "multilink",
23
- "cached_url": "test"
24
- },
25
- "test": "",
26
- "image": {
27
- "id": null,
28
- "alt": null,
29
- "name": "",
30
- "focus": null,
31
- "title": null,
32
- "source": null,
33
- "filename": "",
34
- "copyright": null,
35
- "fieldtype": "asset",
36
- "meta_data": {}
37
- },
38
- "richtext": {
39
- "type": "doc",
40
- "content": [
41
- {
42
- "type": "paragraph"
43
- }
44
- ]
45
- },
46
- "component": "page",
47
- "reference": "",
48
- "references": [],
49
- "multi_option": []
50
- },
51
- "published": false,
52
- "slug": "link-reference",
53
- "path": null,
54
- "full_slug": "link-reference",
55
- "default_root": null,
56
- "disble_fe_editor": false,
57
- "disable_fe_editor": false,
58
- "parent": null,
59
- "is_startpage": false,
60
- "unpublished_changes": true,
61
- "meta_data": null,
62
- "imported_at": null,
63
- "pinned": false,
64
- "breadcrumbs": [],
65
- "publish_at": null,
66
- "expire_at": null,
67
- "first_published_at": null,
68
- "last_author": {
69
- "id": 197040,
70
- "userid": "g.buttinger@adwerba.at",
71
- "friendly_name": "Gerald Buttinger"
72
- },
73
- "last_author_id": 197040,
74
- "user_ids": [],
75
- "space_role_ids": [],
76
- "translated_slugs": [],
77
- "localized_paths": [],
78
- "position": -10,
79
- "translated_stories": [],
80
- "can_not_view": false,
81
- "is_scheduled": null,
82
- "scheduled_dates": null,
83
- "ideas": [],
84
- "stage": null,
85
- "favourite_for_user_ids": []
86
- }
@@ -1,112 +0,0 @@
1
- {
2
- "name": "rt-link-reference",
3
- "parent_id": null,
4
- "group_id": "90d55567-6544-4cb2-9710-a9cc0270175c",
5
- "alternates": [],
6
- "created_at": "2024-10-25T08:44:29.764Z",
7
- "deleted_at": null,
8
- "sort_by_date": null,
9
- "tag_list": [],
10
- "updated_at": "2024-10-25T09:11:51.787Z",
11
- "published_at": null,
12
- "id": 569110113,
13
- "uuid": "1a86dc79-002d-4877-8c8b-63c1f77253dd",
14
- "is_folder": false,
15
- "content": {
16
- "_uid": "c5feedec-d0d0-4c2e-bab4-8240cd03b965",
17
- "body": [],
18
- "link": {
19
- "id": "",
20
- "url": "",
21
- "linktype": "story",
22
- "fieldtype": "multilink",
23
- "cached_url": ""
24
- },
25
- "test": "",
26
- "image": {
27
- "id": null,
28
- "alt": null,
29
- "name": "",
30
- "focus": null,
31
- "title": null,
32
- "source": null,
33
- "filename": "",
34
- "copyright": null,
35
- "fieldtype": "asset",
36
- "meta_data": {}
37
- },
38
- "richtext": {
39
- "type": "doc",
40
- "content": [
41
- {
42
- "type": "paragraph",
43
- "content": [
44
- {
45
- "text": "Lorem ",
46
- "type": "text"
47
- },
48
- {
49
- "text": "Link",
50
- "type": "text",
51
- "marks": [
52
- {
53
- "type": "link",
54
- "attrs": {
55
- "href": "/test",
56
- "uuid": "ca1552f4-ebf6-4e86-adb3-9c525c35f25a",
57
- "anchor": null,
58
- "target": "_self",
59
- "linktype": "story"
60
- }
61
- }
62
- ]
63
- },
64
- {
65
- "text": " Ipsum",
66
- "type": "text"
67
- }
68
- ]
69
- }
70
- ]
71
- },
72
- "component": "page",
73
- "reference": "",
74
- "references": [],
75
- "multi_option": []
76
- },
77
- "published": false,
78
- "slug": "rt-link-reference",
79
- "path": null,
80
- "full_slug": "rt-link-reference",
81
- "default_root": null,
82
- "disble_fe_editor": false,
83
- "disable_fe_editor": false,
84
- "parent": null,
85
- "is_startpage": false,
86
- "unpublished_changes": true,
87
- "meta_data": null,
88
- "imported_at": null,
89
- "pinned": false,
90
- "breadcrumbs": [],
91
- "publish_at": null,
92
- "expire_at": null,
93
- "first_published_at": null,
94
- "last_author": {
95
- "id": 197040,
96
- "userid": "g.buttinger@adwerba.at",
97
- "friendly_name": "Gerald Buttinger"
98
- },
99
- "last_author_id": 197040,
100
- "user_ids": [],
101
- "space_role_ids": [],
102
- "translated_slugs": [],
103
- "localized_paths": [],
104
- "position": -20,
105
- "translated_stories": [],
106
- "can_not_view": false,
107
- "is_scheduled": null,
108
- "scheduled_dates": null,
109
- "ideas": [],
110
- "stage": null,
111
- "favourite_for_user_ids": []
112
- }
@@ -1,89 +0,0 @@
1
- {
2
- "name": "multi-option-reference",
3
- "parent_id": null,
4
- "group_id": "599ea0f6-5730-4e16-afaf-71b8961882e5",
5
- "alternates": [],
6
- "created_at": "2024-10-25T08:45:41.725Z",
7
- "deleted_at": null,
8
- "sort_by_date": null,
9
- "tag_list": [],
10
- "updated_at": "2024-10-25T09:11:50.895Z",
11
- "published_at": null,
12
- "id": 569112436,
13
- "uuid": "24269166-44a0-4df4-8097-611999fddc9d",
14
- "is_folder": false,
15
- "content": {
16
- "_uid": "09c3f02c-11cf-4965-8767-10b86ad1d3e9",
17
- "body": [],
18
- "link": {
19
- "id": "",
20
- "url": "",
21
- "linktype": "story",
22
- "fieldtype": "multilink",
23
- "cached_url": ""
24
- },
25
- "test": "",
26
- "image": {
27
- "id": null,
28
- "alt": null,
29
- "name": "",
30
- "focus": null,
31
- "title": null,
32
- "source": null,
33
- "filename": "",
34
- "copyright": null,
35
- "fieldtype": "asset",
36
- "meta_data": {}
37
- },
38
- "richtext": {
39
- "type": "doc",
40
- "content": [
41
- {
42
- "type": "paragraph"
43
- }
44
- ]
45
- },
46
- "component": "page",
47
- "reference": "",
48
- "references": [],
49
- "multi_option": [
50
- "892a6960-a311-4b19-9d73-e458e582cc50",
51
- "ca1552f4-ebf6-4e86-adb3-9c525c35f25a"
52
- ]
53
- },
54
- "published": false,
55
- "slug": "multi-option-reference",
56
- "path": null,
57
- "full_slug": "multi-option-reference",
58
- "default_root": null,
59
- "disble_fe_editor": false,
60
- "disable_fe_editor": false,
61
- "parent": null,
62
- "is_startpage": false,
63
- "unpublished_changes": true,
64
- "meta_data": null,
65
- "imported_at": null,
66
- "pinned": false,
67
- "breadcrumbs": [],
68
- "publish_at": null,
69
- "expire_at": null,
70
- "first_published_at": null,
71
- "last_author": {
72
- "id": 197040,
73
- "userid": "g.buttinger@adwerba.at",
74
- "friendly_name": "Gerald Buttinger"
75
- },
76
- "last_author_id": 197040,
77
- "user_ids": [],
78
- "space_role_ids": [],
79
- "translated_slugs": [],
80
- "localized_paths": [],
81
- "position": -30,
82
- "translated_stories": [],
83
- "can_not_view": false,
84
- "is_scheduled": null,
85
- "scheduled_dates": null,
86
- "ideas": [],
87
- "stage": null,
88
- "favourite_for_user_ids": []
89
- }
@@ -1,89 +0,0 @@
1
- {
2
- "name": "multi-reference",
3
- "parent_id": null,
4
- "group_id": "84361fa6-02f7-4688-bf4f-9007a07f23d2",
5
- "alternates": [],
6
- "created_at": "2024-10-25T08:46:40.758Z",
7
- "deleted_at": null,
8
- "sort_by_date": null,
9
- "tag_list": [],
10
- "updated_at": "2024-10-25T09:11:50.576Z",
11
- "published_at": null,
12
- "id": 569114646,
13
- "uuid": "550036eb-c45a-4abb-bf8b-45a0831f4d4c",
14
- "is_folder": false,
15
- "content": {
16
- "_uid": "d36b7e99-ef42-43e1-b231-a4b525a09e84",
17
- "body": [],
18
- "link": {
19
- "id": "",
20
- "url": "",
21
- "linktype": "story",
22
- "fieldtype": "multilink",
23
- "cached_url": ""
24
- },
25
- "test": "",
26
- "image": {
27
- "id": null,
28
- "alt": null,
29
- "name": "",
30
- "focus": null,
31
- "title": null,
32
- "source": null,
33
- "filename": "",
34
- "copyright": null,
35
- "fieldtype": "asset",
36
- "meta_data": {}
37
- },
38
- "richtext": {
39
- "type": "doc",
40
- "content": [
41
- {
42
- "type": "paragraph"
43
- }
44
- ]
45
- },
46
- "component": "page",
47
- "reference": "",
48
- "references": [
49
- "892a6960-a311-4b19-9d73-e458e582cc50",
50
- "ca1552f4-ebf6-4e86-adb3-9c525c35f25a"
51
- ],
52
- "multi_option": []
53
- },
54
- "published": false,
55
- "slug": "multi-reference",
56
- "path": null,
57
- "full_slug": "multi-reference",
58
- "default_root": null,
59
- "disble_fe_editor": false,
60
- "disable_fe_editor": false,
61
- "parent": null,
62
- "is_startpage": false,
63
- "unpublished_changes": true,
64
- "meta_data": null,
65
- "imported_at": null,
66
- "pinned": false,
67
- "breadcrumbs": [],
68
- "publish_at": null,
69
- "expire_at": null,
70
- "first_published_at": null,
71
- "last_author": {
72
- "id": 197040,
73
- "userid": "g.buttinger@adwerba.at",
74
- "friendly_name": "Gerald Buttinger"
75
- },
76
- "last_author_id": 197040,
77
- "user_ids": [],
78
- "space_role_ids": [],
79
- "translated_slugs": [],
80
- "localized_paths": [],
81
- "position": -40,
82
- "translated_stories": [],
83
- "can_not_view": false,
84
- "is_scheduled": null,
85
- "scheduled_dates": null,
86
- "ideas": [],
87
- "stage": null,
88
- "favourite_for_user_ids": []
89
- }
@@ -1,75 +0,0 @@
1
- {
2
- "name": "test",
3
- "parent_id": null,
4
- "group_id": "0648e5ed-2faf-4bef-9a43-9af9c9e332a9",
5
- "alternates": [],
6
- "created_at": "2024-10-25T09:11:49.659Z",
7
- "deleted_at": null,
8
- "sort_by_date": null,
9
- "tag_list": [],
10
- "updated_at": "2024-10-25T09:11:49.659Z",
11
- "published_at": null,
12
- "id": 569128208,
13
- "uuid": "ca1552f4-ebf6-4e86-adb3-9c525c35f25a",
14
- "is_folder": false,
15
- "content": {
16
- "_uid": "aec95dde-80c3-46ac-a5b9-46b4b90ff6c8",
17
- "body": [],
18
- "test": "",
19
- "image": {
20
- "id": 16640624,
21
- "alt": "",
22
- "name": "",
23
- "focus": "",
24
- "title": "",
25
- "source": "",
26
- "filename": "https://a.storyblok.com/f/296932/232x244/945a3b296d/test.png",
27
- "copyright": "",
28
- "fieldtype": "asset",
29
- "meta_data": {
30
- "alt": "",
31
- "title": "",
32
- "source": "",
33
- "copyright": ""
34
- },
35
- "is_external_url": false
36
- },
37
- "component": "page",
38
- "reference": ""
39
- },
40
- "published": false,
41
- "slug": "test",
42
- "path": null,
43
- "full_slug": "test",
44
- "default_root": null,
45
- "disble_fe_editor": false,
46
- "disable_fe_editor": false,
47
- "parent": null,
48
- "is_startpage": false,
49
- "unpublished_changes": false,
50
- "meta_data": null,
51
- "imported_at": null,
52
- "pinned": false,
53
- "breadcrumbs": [],
54
- "publish_at": null,
55
- "expire_at": null,
56
- "first_published_at": "2024-08-15T10:09:33.782Z",
57
- "last_author": {
58
- "id": 197040,
59
- "userid": "g.buttinger@adwerba.at",
60
- "friendly_name": "Gerald Buttinger"
61
- },
62
- "last_author_id": 197040,
63
- "user_ids": [],
64
- "space_role_ids": [],
65
- "translated_slugs": [],
66
- "localized_paths": [],
67
- "position": 0,
68
- "translated_stories": [],
69
- "can_not_view": false,
70
- "is_scheduled": null,
71
- "scheduled_dates": null,
72
- "ideas": [],
73
- "stage": null,
74
- "favourite_for_user_ids": []
75
- }