ghost 4.21.0 → 4.22.3

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.
Files changed (97) hide show
  1. package/.eslintrc.js +6 -0
  2. package/Gruntfile.js +2 -0
  3. package/content/themes/casper/assets/built/screen.css +1 -1
  4. package/content/themes/casper/assets/built/screen.css.map +1 -1
  5. package/content/themes/casper/assets/css/screen.css +263 -50
  6. package/content/themes/casper/default.hbs +12 -3
  7. package/content/themes/casper/index.hbs +25 -23
  8. package/content/themes/casper/package.json +91 -2
  9. package/content/themes/casper/partials/post-card.hbs +1 -1
  10. package/content/themes/casper/post.hbs +18 -14
  11. package/content/themes/casper/yarn.lock +245 -192
  12. package/core/boot.js +8 -0
  13. package/core/bridge.js +14 -0
  14. package/core/built/assets/{chunk.3.065ee3c3bdf674bd81a4.js → chunk.3.324fd0cc598c73650219.js} +59 -59
  15. package/core/built/assets/{ghost-dark-1328db4a7dd128305646305a8731bcfe.css → ghost-dark-39fb496d051565531062d7e047d1c0b1.css} +1 -1
  16. package/core/built/assets/{ghost.min-5abc69c04ad1d5301a857e01009b9c05.css → ghost.min-4207edfc1ae0a3f9f6505ca00d20b0c0.css} +1 -1
  17. package/core/built/assets/{ghost.min-6c546c322127ae6d1d1b0ddbf34be75b.js → ghost.min-7da921f6c6cac3fe10da1ba104575440.js} +1775 -1897
  18. package/core/built/assets/{vendor.min-c6ef90bfd7eff256e10b85583bfe9a74.js → vendor.min-413f887176a041e6dbf88214ca9a7481.js} +6849 -6688
  19. package/core/frontend/helpers/asset.js +9 -1
  20. package/core/frontend/helpers/ghost_head.js +13 -1
  21. package/core/frontend/services/card-assets/index.js +16 -0
  22. package/core/frontend/services/card-assets/service.js +109 -0
  23. package/core/frontend/services/theme-engine/config/defaults.json +4 -1
  24. package/core/frontend/services/theme-engine/config/index.js +1 -1
  25. package/core/frontend/src/cards/css/bookmark.css +83 -0
  26. package/core/frontend/src/cards/css/button.css +30 -0
  27. package/core/frontend/src/cards/css/callout.css +12 -0
  28. package/core/frontend/src/cards/css/gallery.css +36 -0
  29. package/core/frontend/src/cards/css/nft.css +85 -0
  30. package/core/frontend/src/cards/js/gallery.js +8 -0
  31. package/core/frontend/web/middleware/serve-public-file.js +10 -1
  32. package/core/frontend/web/routes.js +0 -1
  33. package/core/frontend/web/site.js +13 -9
  34. package/core/server/adapters/storage/LocalFilesStorage.js +17 -0
  35. package/core/server/adapters/storage/LocalImagesStorage.js +51 -0
  36. package/core/server/adapters/storage/LocalMediaStorage.js +24 -0
  37. package/core/server/adapters/storage/{LocalFileStorage.js → LocalStorageBase.js} +64 -51
  38. package/core/server/adapters/storage/index.js +1 -1
  39. package/core/server/adapters/storage/utils.js +2 -2
  40. package/core/server/api/canary/files.js +19 -0
  41. package/core/server/api/canary/index.js +8 -0
  42. package/core/server/api/canary/media.js +42 -0
  43. package/core/server/api/canary/oembed.js +3 -0
  44. package/core/server/api/canary/redirects.js +1 -6
  45. package/core/server/api/canary/utils/serializers/input/index.js +4 -0
  46. package/core/server/api/canary/utils/serializers/input/media.js +8 -0
  47. package/core/server/api/canary/utils/serializers/input/pages.js +8 -0
  48. package/core/server/api/canary/utils/serializers/output/config.js +21 -14
  49. package/core/server/api/canary/utils/serializers/output/files.js +27 -0
  50. package/core/server/api/canary/utils/serializers/output/index.js +8 -0
  51. package/core/server/api/canary/utils/serializers/output/media.js +37 -0
  52. package/core/server/api/canary/utils/validators/input/files.js +7 -0
  53. package/core/server/api/canary/utils/validators/input/index.js +8 -0
  54. package/core/server/api/canary/utils/validators/input/media.js +11 -0
  55. package/core/server/api/v2/redirects.js +1 -6
  56. package/core/server/api/v3/members.js +5 -1
  57. package/core/server/api/v3/redirects.js +1 -6
  58. package/core/server/data/migrations/utils.js +55 -16
  59. package/core/server/data/migrations/versions/4.22/01-add-is-launch-complete-setting.js +8 -0
  60. package/core/server/data/migrations/versions/4.22/02-update-launch-complete-setting-from-user-data.js +39 -0
  61. package/core/server/data/schema/default-settings.json +8 -0
  62. package/core/server/frontend/ghost.min.css +1 -1
  63. package/core/server/lib/image/blog-icon.js +2 -4
  64. package/core/server/lib/image/image-size.js +1 -1
  65. package/core/server/services/limits.js +3 -6
  66. package/core/server/services/mega/template.js +62 -1
  67. package/core/server/services/nft-oembed.js +71 -0
  68. package/core/server/services/oembed.js +145 -110
  69. package/core/server/services/offers/service.js +1 -31
  70. package/core/server/services/public-config/config.js +2 -1
  71. package/core/server/services/redirects/api.js +270 -0
  72. package/core/server/services/redirects/index.js +27 -12
  73. package/core/server/services/stripe/index.js +4 -2
  74. package/core/server/services/themes/ThemeStorage.js +5 -5
  75. package/core/server/services/url/Resource.js +1 -1
  76. package/core/server/services/url/Resources.js +28 -21
  77. package/core/server/services/url/UrlService.js +66 -8
  78. package/core/server/services/url/Urls.js +7 -2
  79. package/core/server/services/url/index.js +8 -1
  80. package/core/server/web/admin/views/default-prod.html +4 -4
  81. package/core/server/web/admin/views/default.html +4 -4
  82. package/core/server/web/api/canary/admin/routes.js +28 -4
  83. package/core/server/web/api/middleware/cors.js +7 -7
  84. package/core/server/web/api/middleware/upload.js +117 -10
  85. package/core/server/web/members/app.js +1 -1
  86. package/core/server/web/shared/middlewares/index.js +0 -4
  87. package/core/shared/config/defaults.json +5 -1
  88. package/core/shared/config/helpers.js +4 -0
  89. package/core/shared/config/overrides.json +8 -0
  90. package/core/shared/labs.js +12 -3
  91. package/package.json +28 -27
  92. package/urls.json +597 -0
  93. package/yarn.lock +972 -941
  94. package/core/built/assets/img/themes/Editorial-a25a4a34c04dedd858bd5e05ef388b1c.jpg +0 -0
  95. package/core/built/assets/img/themes/Massively-06edf00108429f7fb8e65f190fba34fe.jpg +0 -0
  96. package/core/server/services/redirects/settings.js +0 -234
  97. package/core/server/web/shared/middlewares/custom-redirects.js +0 -128
package/urls.json ADDED
@@ -0,0 +1,597 @@
1
+ {
2
+ "618b9c362ca142fcb133ed92": {
3
+ "url": "/integrations/",
4
+ "generatorId": 0,
5
+ "resource": {
6
+ "_events": {},
7
+ "_eventsCount": 2,
8
+ "data": {
9
+ "id": "618b9c362ca142fcb133ed92",
10
+ "uuid": "1014c0fe-ffe4-4f7f-86fe-58c959c7aa18",
11
+ "slug": "integrations",
12
+ "comment_id": "618b9c362ca142fcb133ed92",
13
+ "feature_image": "https://static.ghost.org/v4.0.0/images/app-integrations.png",
14
+ "featured": false,
15
+ "type": "post",
16
+ "visibility": "public",
17
+ "email_recipient_filter": "none",
18
+ "created_at": "2021-11-10T10:17:26.000Z",
19
+ "created_by": "1",
20
+ "updated_at": "2021-11-10T10:17:26.000Z",
21
+ "updated_by": "1",
22
+ "published_at": "2021-11-10T10:17:26.000Z",
23
+ "published_by": "1",
24
+ "canonical_url": null,
25
+ "tags": [
26
+ {
27
+ "post_id": "618b9c362ca142fcb133ed92",
28
+ "visibility": "public",
29
+ "id": "618b9c352ca142fcb133ed2c",
30
+ "slug": "getting-started"
31
+ }
32
+ ],
33
+ "authors": [
34
+ {
35
+ "post_id": "618b9c362ca142fcb133ed92",
36
+ "id": "5951f5fca366002ebd5dbef7",
37
+ "slug": "ghost"
38
+ }
39
+ ],
40
+ "author": "5951f5fca366002ebd5dbef7",
41
+ "primary_author": {
42
+ "post_id": "618b9c362ca142fcb133ed92",
43
+ "id": "5951f5fca366002ebd5dbef7",
44
+ "slug": "ghost"
45
+ },
46
+ "primary_tag": {
47
+ "post_id": "618b9c362ca142fcb133ed92",
48
+ "visibility": "public",
49
+ "id": "618b9c352ca142fcb133ed2c",
50
+ "slug": "getting-started"
51
+ }
52
+ },
53
+ "config": {
54
+ "type": "posts",
55
+ "reserved": true
56
+ }
57
+ }
58
+ },
59
+ "618b9c372ca142fcb133ed94": {
60
+ "url": "/grow/",
61
+ "generatorId": 0,
62
+ "resource": {
63
+ "_events": {},
64
+ "_eventsCount": 2,
65
+ "data": {
66
+ "id": "618b9c372ca142fcb133ed94",
67
+ "uuid": "760cd9f7-4972-4899-980f-dde8c4dbb238",
68
+ "slug": "grow",
69
+ "comment_id": "618b9c372ca142fcb133ed94",
70
+ "feature_image": "https://static.ghost.org/v4.0.0/images/admin-settings.png",
71
+ "featured": false,
72
+ "type": "post",
73
+ "visibility": "public",
74
+ "email_recipient_filter": "none",
75
+ "created_at": "2021-11-10T10:17:27.000Z",
76
+ "created_by": "1",
77
+ "updated_at": "2021-11-10T10:17:27.000Z",
78
+ "updated_by": "1",
79
+ "published_at": "2021-11-10T10:17:27.000Z",
80
+ "published_by": "1",
81
+ "canonical_url": null,
82
+ "tags": [
83
+ {
84
+ "post_id": "618b9c372ca142fcb133ed94",
85
+ "visibility": "public",
86
+ "id": "618b9c352ca142fcb133ed2c",
87
+ "slug": "getting-started"
88
+ }
89
+ ],
90
+ "authors": [
91
+ {
92
+ "post_id": "618b9c372ca142fcb133ed94",
93
+ "id": "5951f5fca366002ebd5dbef7",
94
+ "slug": "ghost"
95
+ }
96
+ ],
97
+ "author": "5951f5fca366002ebd5dbef7",
98
+ "primary_author": {
99
+ "post_id": "618b9c372ca142fcb133ed94",
100
+ "id": "5951f5fca366002ebd5dbef7",
101
+ "slug": "ghost"
102
+ },
103
+ "primary_tag": {
104
+ "post_id": "618b9c372ca142fcb133ed94",
105
+ "visibility": "public",
106
+ "id": "618b9c352ca142fcb133ed2c",
107
+ "slug": "getting-started"
108
+ }
109
+ },
110
+ "config": {
111
+ "type": "posts",
112
+ "reserved": true
113
+ }
114
+ }
115
+ },
116
+ "618b9c372ca142fcb133ed96": {
117
+ "url": "/sell/",
118
+ "generatorId": 0,
119
+ "resource": {
120
+ "_events": {},
121
+ "_eventsCount": 2,
122
+ "data": {
123
+ "id": "618b9c372ca142fcb133ed96",
124
+ "uuid": "85982fdf-4788-463c-8da0-41996425f23d",
125
+ "slug": "sell",
126
+ "comment_id": "618b9c372ca142fcb133ed96",
127
+ "feature_image": "https://static.ghost.org/v4.0.0/images/organizing-your-content.png",
128
+ "featured": false,
129
+ "type": "post",
130
+ "visibility": "paid",
131
+ "email_recipient_filter": "none",
132
+ "created_at": "2021-11-10T10:17:27.000Z",
133
+ "created_by": "1",
134
+ "updated_at": "2021-11-10T10:17:27.000Z",
135
+ "updated_by": "1",
136
+ "published_at": "2021-11-10T10:17:28.000Z",
137
+ "published_by": "1",
138
+ "canonical_url": null,
139
+ "tags": [
140
+ {
141
+ "post_id": "618b9c372ca142fcb133ed96",
142
+ "visibility": "public",
143
+ "id": "618b9c352ca142fcb133ed2c",
144
+ "slug": "getting-started"
145
+ }
146
+ ],
147
+ "authors": [
148
+ {
149
+ "post_id": "618b9c372ca142fcb133ed96",
150
+ "id": "5951f5fca366002ebd5dbef7",
151
+ "slug": "ghost"
152
+ }
153
+ ],
154
+ "author": "5951f5fca366002ebd5dbef7",
155
+ "primary_author": {
156
+ "post_id": "618b9c372ca142fcb133ed96",
157
+ "id": "5951f5fca366002ebd5dbef7",
158
+ "slug": "ghost"
159
+ },
160
+ "primary_tag": {
161
+ "post_id": "618b9c372ca142fcb133ed96",
162
+ "visibility": "public",
163
+ "id": "618b9c352ca142fcb133ed2c",
164
+ "slug": "getting-started"
165
+ }
166
+ },
167
+ "config": {
168
+ "type": "posts",
169
+ "reserved": true
170
+ }
171
+ }
172
+ },
173
+ "618b9c372ca142fcb133ed98": {
174
+ "url": "/portal/",
175
+ "generatorId": 0,
176
+ "resource": {
177
+ "_events": {},
178
+ "_eventsCount": 2,
179
+ "data": {
180
+ "id": "618b9c372ca142fcb133ed98",
181
+ "uuid": "564c2a9e-0248-4a55-916a-8ac7c49a412c",
182
+ "slug": "portal",
183
+ "comment_id": "618b9c372ca142fcb133ed98",
184
+ "feature_image": "https://static.ghost.org/v4.0.0/images/creating-a-custom-theme.png",
185
+ "featured": false,
186
+ "type": "post",
187
+ "visibility": "public",
188
+ "email_recipient_filter": "none",
189
+ "created_at": "2021-11-10T10:17:27.000Z",
190
+ "created_by": "1",
191
+ "updated_at": "2021-11-10T10:17:27.000Z",
192
+ "updated_by": "1",
193
+ "published_at": "2021-11-10T10:17:29.000Z",
194
+ "published_by": "1",
195
+ "canonical_url": null,
196
+ "tags": [
197
+ {
198
+ "post_id": "618b9c372ca142fcb133ed98",
199
+ "visibility": "public",
200
+ "id": "618b9c352ca142fcb133ed2c",
201
+ "slug": "getting-started"
202
+ }
203
+ ],
204
+ "authors": [
205
+ {
206
+ "post_id": "618b9c372ca142fcb133ed98",
207
+ "id": "5951f5fca366002ebd5dbef7",
208
+ "slug": "ghost"
209
+ }
210
+ ],
211
+ "author": "5951f5fca366002ebd5dbef7",
212
+ "primary_author": {
213
+ "post_id": "618b9c372ca142fcb133ed98",
214
+ "id": "5951f5fca366002ebd5dbef7",
215
+ "slug": "ghost"
216
+ },
217
+ "primary_tag": {
218
+ "post_id": "618b9c372ca142fcb133ed98",
219
+ "visibility": "public",
220
+ "id": "618b9c352ca142fcb133ed2c",
221
+ "slug": "getting-started"
222
+ }
223
+ },
224
+ "config": {
225
+ "type": "posts",
226
+ "reserved": true
227
+ }
228
+ }
229
+ },
230
+ "618b9c372ca142fcb133ed9a": {
231
+ "url": "/write/",
232
+ "generatorId": 0,
233
+ "resource": {
234
+ "_events": {},
235
+ "_eventsCount": 2,
236
+ "data": {
237
+ "id": "618b9c372ca142fcb133ed9a",
238
+ "uuid": "71fc2d7c-dbe1-4a56-adb9-f74c8cadbfc6",
239
+ "slug": "write",
240
+ "comment_id": "618b9c372ca142fcb133ed9a",
241
+ "feature_image": "https://static.ghost.org/v4.0.0/images/writing-posts-with-ghost.png",
242
+ "featured": false,
243
+ "type": "post",
244
+ "visibility": "public",
245
+ "email_recipient_filter": "none",
246
+ "created_at": "2021-11-10T10:17:27.000Z",
247
+ "created_by": "1",
248
+ "updated_at": "2021-11-10T10:17:27.000Z",
249
+ "updated_by": "1",
250
+ "published_at": "2021-11-10T10:17:30.000Z",
251
+ "published_by": "1",
252
+ "canonical_url": null,
253
+ "tags": [
254
+ {
255
+ "post_id": "618b9c372ca142fcb133ed9a",
256
+ "visibility": "public",
257
+ "id": "618b9c352ca142fcb133ed2c",
258
+ "slug": "getting-started"
259
+ }
260
+ ],
261
+ "authors": [
262
+ {
263
+ "post_id": "618b9c372ca142fcb133ed9a",
264
+ "id": "5951f5fca366002ebd5dbef7",
265
+ "slug": "ghost"
266
+ }
267
+ ],
268
+ "author": "5951f5fca366002ebd5dbef7",
269
+ "primary_author": {
270
+ "post_id": "618b9c372ca142fcb133ed9a",
271
+ "id": "5951f5fca366002ebd5dbef7",
272
+ "slug": "ghost"
273
+ },
274
+ "primary_tag": {
275
+ "post_id": "618b9c372ca142fcb133ed9a",
276
+ "visibility": "public",
277
+ "id": "618b9c352ca142fcb133ed2c",
278
+ "slug": "getting-started"
279
+ }
280
+ },
281
+ "config": {
282
+ "type": "posts",
283
+ "reserved": true
284
+ }
285
+ }
286
+ },
287
+ "618b9c372ca142fcb133ed9c": {
288
+ "url": "/design/",
289
+ "generatorId": 0,
290
+ "resource": {
291
+ "_events": {},
292
+ "_eventsCount": 2,
293
+ "data": {
294
+ "id": "618b9c372ca142fcb133ed9c",
295
+ "uuid": "cdd30e29-aace-41b9-8d0a-67f4697db701",
296
+ "slug": "design",
297
+ "comment_id": "618b9c372ca142fcb133ed9c",
298
+ "feature_image": "https://static.ghost.org/v4.0.0/images/publishing-options.png",
299
+ "featured": false,
300
+ "type": "post",
301
+ "visibility": "public",
302
+ "email_recipient_filter": "none",
303
+ "created_at": "2021-11-10T10:17:27.000Z",
304
+ "created_by": "1",
305
+ "updated_at": "2021-11-10T10:17:27.000Z",
306
+ "updated_by": "1",
307
+ "published_at": "2021-11-10T10:17:31.000Z",
308
+ "published_by": "1",
309
+ "canonical_url": null,
310
+ "tags": [
311
+ {
312
+ "post_id": "618b9c372ca142fcb133ed9c",
313
+ "visibility": "public",
314
+ "id": "618b9c352ca142fcb133ed2c",
315
+ "slug": "getting-started"
316
+ }
317
+ ],
318
+ "authors": [
319
+ {
320
+ "post_id": "618b9c372ca142fcb133ed9c",
321
+ "id": "5951f5fca366002ebd5dbef7",
322
+ "slug": "ghost"
323
+ }
324
+ ],
325
+ "author": "5951f5fca366002ebd5dbef7",
326
+ "primary_author": {
327
+ "post_id": "618b9c372ca142fcb133ed9c",
328
+ "id": "5951f5fca366002ebd5dbef7",
329
+ "slug": "ghost"
330
+ },
331
+ "primary_tag": {
332
+ "post_id": "618b9c372ca142fcb133ed9c",
333
+ "visibility": "public",
334
+ "id": "618b9c352ca142fcb133ed2c",
335
+ "slug": "getting-started"
336
+ }
337
+ },
338
+ "config": {
339
+ "type": "posts",
340
+ "reserved": true
341
+ }
342
+ }
343
+ },
344
+ "618b9c372ca142fcb133ed9e": {
345
+ "url": "/welcome/",
346
+ "generatorId": 0,
347
+ "resource": {
348
+ "_events": {},
349
+ "_eventsCount": 2,
350
+ "data": {
351
+ "id": "618b9c372ca142fcb133ed9e",
352
+ "uuid": "b1114329-ee44-4adf-bb96-cbb0da751495",
353
+ "slug": "welcome",
354
+ "comment_id": "618b9c372ca142fcb133ed9e",
355
+ "feature_image": "https://static.ghost.org/v4.0.0/images/welcome-to-ghost.png",
356
+ "featured": false,
357
+ "type": "post",
358
+ "visibility": "public",
359
+ "email_recipient_filter": "none",
360
+ "created_at": "2021-11-10T10:17:27.000Z",
361
+ "created_by": "1",
362
+ "updated_at": "2021-11-10T10:17:27.000Z",
363
+ "updated_by": "1",
364
+ "published_at": "2021-11-10T10:17:32.000Z",
365
+ "published_by": "1",
366
+ "canonical_url": null,
367
+ "tags": [
368
+ {
369
+ "post_id": "618b9c372ca142fcb133ed9e",
370
+ "visibility": "public",
371
+ "id": "618b9c352ca142fcb133ed2c",
372
+ "slug": "getting-started"
373
+ }
374
+ ],
375
+ "authors": [
376
+ {
377
+ "post_id": "618b9c372ca142fcb133ed9e",
378
+ "id": "5951f5fca366002ebd5dbef7",
379
+ "slug": "ghost"
380
+ }
381
+ ],
382
+ "author": "5951f5fca366002ebd5dbef7",
383
+ "primary_author": {
384
+ "post_id": "618b9c372ca142fcb133ed9e",
385
+ "id": "5951f5fca366002ebd5dbef7",
386
+ "slug": "ghost"
387
+ },
388
+ "primary_tag": {
389
+ "post_id": "618b9c372ca142fcb133ed9e",
390
+ "visibility": "public",
391
+ "id": "618b9c352ca142fcb133ed2c",
392
+ "slug": "getting-started"
393
+ }
394
+ },
395
+ "config": {
396
+ "type": "posts",
397
+ "reserved": true
398
+ }
399
+ }
400
+ },
401
+ "618b9c372ca142fcb133eda0": {
402
+ "url": "/about/",
403
+ "generatorId": 1,
404
+ "resource": {
405
+ "_events": {},
406
+ "_eventsCount": 2,
407
+ "data": {
408
+ "id": "618b9c372ca142fcb133eda0",
409
+ "uuid": "c44a967e-286a-4e7a-9ebe-18d7c6132b13",
410
+ "slug": "about",
411
+ "comment_id": "618b9c372ca142fcb133eda0",
412
+ "feature_image": null,
413
+ "featured": false,
414
+ "type": "page",
415
+ "status": "published",
416
+ "visibility": "public",
417
+ "email_recipient_filter": "none",
418
+ "created_at": "2021-11-10T10:17:27.000Z",
419
+ "created_by": "1",
420
+ "updated_at": "2021-11-10T10:17:27.000Z",
421
+ "updated_by": "1",
422
+ "published_at": "2021-11-10T10:17:33.000Z",
423
+ "published_by": "1",
424
+ "canonical_url": null,
425
+ "author": "5951f5fca366002ebd5dbef7",
426
+ "primary_author": null,
427
+ "primary_tag": null
428
+ },
429
+ "config": {
430
+ "type": "pages",
431
+ "reserved": true
432
+ }
433
+ }
434
+ },
435
+ "618b9c372ca142fcb133eda2": {
436
+ "url": "/contact/",
437
+ "generatorId": 1,
438
+ "resource": {
439
+ "_events": {},
440
+ "_eventsCount": 2,
441
+ "data": {
442
+ "id": "618b9c372ca142fcb133eda2",
443
+ "uuid": "d4e907a2-0fb7-400a-b068-0959ff591ac2",
444
+ "slug": "contact",
445
+ "comment_id": "618b9c372ca142fcb133eda2",
446
+ "feature_image": null,
447
+ "featured": false,
448
+ "type": "page",
449
+ "status": "published",
450
+ "visibility": "public",
451
+ "email_recipient_filter": "none",
452
+ "created_at": "2021-11-10T10:17:27.000Z",
453
+ "created_by": "1",
454
+ "updated_at": "2021-11-10T10:17:27.000Z",
455
+ "updated_by": "1",
456
+ "published_at": "2021-11-10T10:17:34.000Z",
457
+ "published_by": "1",
458
+ "canonical_url": null,
459
+ "author": "5951f5fca366002ebd5dbef7",
460
+ "primary_author": null,
461
+ "primary_tag": null
462
+ },
463
+ "config": {
464
+ "type": "pages",
465
+ "reserved": true
466
+ }
467
+ }
468
+ },
469
+ "618b9c372ca142fcb133eda4": {
470
+ "url": "/privacy/",
471
+ "generatorId": 1,
472
+ "resource": {
473
+ "_events": {},
474
+ "_eventsCount": 2,
475
+ "data": {
476
+ "id": "618b9c372ca142fcb133eda4",
477
+ "uuid": "3d0261a9-f165-4d50-b7f4-c2001afa3685",
478
+ "slug": "privacy",
479
+ "comment_id": "618b9c372ca142fcb133eda4",
480
+ "feature_image": null,
481
+ "featured": false,
482
+ "type": "page",
483
+ "status": "published",
484
+ "visibility": "public",
485
+ "email_recipient_filter": "none",
486
+ "created_at": "2021-11-10T10:17:27.000Z",
487
+ "created_by": "1",
488
+ "updated_at": "2021-11-10T10:17:27.000Z",
489
+ "updated_by": "1",
490
+ "published_at": "2021-11-10T10:17:35.000Z",
491
+ "published_by": "1",
492
+ "canonical_url": null,
493
+ "author": "5951f5fca366002ebd5dbef7",
494
+ "primary_author": null,
495
+ "primary_tag": null
496
+ },
497
+ "config": {
498
+ "type": "pages",
499
+ "reserved": true
500
+ }
501
+ }
502
+ },
503
+ "618b9c372ca142fcb133eda6": {
504
+ "url": "/contribute/",
505
+ "generatorId": 1,
506
+ "resource": {
507
+ "_events": {},
508
+ "_eventsCount": 2,
509
+ "data": {
510
+ "id": "618b9c372ca142fcb133eda6",
511
+ "uuid": "e892e57d-5020-46ce-a673-a79ed113b8b8",
512
+ "slug": "contribute",
513
+ "comment_id": "618b9c372ca142fcb133eda6",
514
+ "feature_image": null,
515
+ "featured": false,
516
+ "type": "page",
517
+ "status": "published",
518
+ "visibility": "public",
519
+ "email_recipient_filter": "none",
520
+ "created_at": "2021-11-10T10:17:27.000Z",
521
+ "created_by": "1",
522
+ "updated_at": "2021-11-10T10:17:27.000Z",
523
+ "updated_by": "1",
524
+ "published_at": "2021-11-10T10:17:36.000Z",
525
+ "published_by": "1",
526
+ "canonical_url": null,
527
+ "author": "5951f5fca366002ebd5dbef7",
528
+ "primary_author": null,
529
+ "primary_tag": null
530
+ },
531
+ "config": {
532
+ "type": "pages",
533
+ "reserved": true
534
+ }
535
+ }
536
+ },
537
+ "618b9c352ca142fcb133ed2c": {
538
+ "url": "/tag/getting-started/",
539
+ "generatorId": 2,
540
+ "resource": {
541
+ "_events": {},
542
+ "_eventsCount": 2,
543
+ "data": {
544
+ "id": "618b9c352ca142fcb133ed2c",
545
+ "name": "Getting Started",
546
+ "slug": "getting-started",
547
+ "feature_image": null,
548
+ "visibility": "public",
549
+ "og_image": null,
550
+ "og_title": null,
551
+ "og_description": null,
552
+ "twitter_image": null,
553
+ "twitter_title": null,
554
+ "twitter_description": null,
555
+ "codeinjection_head": null,
556
+ "codeinjection_foot": null,
557
+ "canonical_url": null,
558
+ "accent_color": null,
559
+ "created_at": "2021-11-10T10:17:25.000Z",
560
+ "created_by": "1",
561
+ "updated_at": "2021-11-10T10:17:25.000Z",
562
+ "updated_by": "1"
563
+ },
564
+ "config": {
565
+ "type": "tags",
566
+ "reserved": true
567
+ }
568
+ }
569
+ },
570
+ "5951f5fca366002ebd5dbef7": {
571
+ "url": "/author/ghost/",
572
+ "generatorId": 3,
573
+ "resource": {
574
+ "_events": {},
575
+ "_eventsCount": 2,
576
+ "data": {
577
+ "id": "5951f5fca366002ebd5dbef7",
578
+ "name": "Ghost",
579
+ "slug": "ghost",
580
+ "email": "ghost-author@example.com",
581
+ "profile_image": "https://static.ghost.org/v4.0.0/images/ghost-user.png",
582
+ "cover_image": null,
583
+ "status": "active",
584
+ "visibility": "public",
585
+ "last_seen": null,
586
+ "created_at": "2021-11-10T10:17:26.000Z",
587
+ "created_by": "1",
588
+ "updated_at": "2021-11-10T10:17:26.000Z",
589
+ "updated_by": "1"
590
+ },
591
+ "config": {
592
+ "type": "authors",
593
+ "reserved": true
594
+ }
595
+ }
596
+ }
597
+ }