create-boject-cms 0.0.1-rc.1

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.
@@ -0,0 +1,502 @@
1
+ {
2
+ "version": 2,
3
+ "exportedAt": "2026-04-15T00:00:00.000Z",
4
+ "portable": true,
5
+ "contentTypes": [
6
+ {
7
+ "id": null,
8
+ "identifier": "Image",
9
+ "name": "Image",
10
+ "description": "A reusable image asset with editorial metadata.",
11
+ "fields": [
12
+ {
13
+ "id": null,
14
+ "identifier": "name",
15
+ "name": "Name",
16
+ "type": "ENTRY_TITLE",
17
+ "required": true,
18
+ "order": 0,
19
+ "options": null
20
+ },
21
+ {
22
+ "id": null,
23
+ "identifier": "file",
24
+ "name": "File",
25
+ "type": "IMAGE",
26
+ "required": true,
27
+ "order": 1,
28
+ "options": null
29
+ },
30
+ {
31
+ "id": null,
32
+ "identifier": "alt",
33
+ "name": "Alt text",
34
+ "type": "TEXT",
35
+ "required": false,
36
+ "order": 2,
37
+ "options": null
38
+ },
39
+ {
40
+ "id": null,
41
+ "identifier": "credit",
42
+ "name": "Credit",
43
+ "type": "TEXT",
44
+ "required": false,
45
+ "order": 3,
46
+ "options": null
47
+ },
48
+ {
49
+ "id": null,
50
+ "identifier": "caption",
51
+ "name": "Caption",
52
+ "type": "TEXTAREA",
53
+ "required": false,
54
+ "order": 4,
55
+ "options": null
56
+ }
57
+ ]
58
+ },
59
+ {
60
+ "id": null,
61
+ "identifier": "Tag",
62
+ "name": "Tag",
63
+ "description": "A categorisation tag used by content entries.",
64
+ "fields": [
65
+ {
66
+ "id": null,
67
+ "identifier": "name",
68
+ "name": "Name",
69
+ "type": "ENTRY_TITLE",
70
+ "required": true,
71
+ "order": 0,
72
+ "options": null
73
+ },
74
+ {
75
+ "id": null,
76
+ "identifier": "slug",
77
+ "name": "Slug",
78
+ "type": "SLUG",
79
+ "required": false,
80
+ "order": 1,
81
+ "options": null
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "id": null,
87
+ "identifier": "Author",
88
+ "name": "Author",
89
+ "description": "A content author with bio and headshot.",
90
+ "fields": [
91
+ {
92
+ "id": null,
93
+ "identifier": "name",
94
+ "name": "Name",
95
+ "type": "ENTRY_TITLE",
96
+ "required": true,
97
+ "order": 0,
98
+ "options": null
99
+ },
100
+ {
101
+ "id": null,
102
+ "identifier": "slug",
103
+ "name": "Slug",
104
+ "type": "SLUG",
105
+ "required": false,
106
+ "order": 1,
107
+ "options": null
108
+ },
109
+ {
110
+ "id": null,
111
+ "identifier": "bio",
112
+ "name": "Bio",
113
+ "type": "TEXTAREA",
114
+ "required": false,
115
+ "order": 2,
116
+ "options": null
117
+ },
118
+ {
119
+ "id": null,
120
+ "identifier": "headshot",
121
+ "name": "Headshot",
122
+ "type": "RELATION",
123
+ "required": false,
124
+ "order": 3,
125
+ "options": {
126
+ "targetContentTypeIds": [null],
127
+ "targetContentTypeIdentifiers": ["Image"]
128
+ }
129
+ }
130
+ ]
131
+ },
132
+ {
133
+ "id": null,
134
+ "identifier": "Article",
135
+ "name": "Article",
136
+ "description": "An editorial article with rich text body, author, tags, and SEO metadata.",
137
+ "fields": [
138
+ {
139
+ "id": null,
140
+ "identifier": "title",
141
+ "name": "Title",
142
+ "type": "ENTRY_TITLE",
143
+ "required": true,
144
+ "order": 0,
145
+ "options": null
146
+ },
147
+ {
148
+ "id": null,
149
+ "identifier": "slug",
150
+ "name": "Slug",
151
+ "type": "SLUG",
152
+ "required": false,
153
+ "order": 1,
154
+ "options": null
155
+ },
156
+ {
157
+ "id": null,
158
+ "identifier": "summary",
159
+ "name": "Summary",
160
+ "type": "TEXTAREA",
161
+ "required": false,
162
+ "order": 2,
163
+ "options": null
164
+ },
165
+ {
166
+ "id": null,
167
+ "identifier": "body",
168
+ "name": "Body",
169
+ "type": "RICHTEXT",
170
+ "required": false,
171
+ "order": 3,
172
+ "options": null
173
+ },
174
+ {
175
+ "id": null,
176
+ "identifier": "author",
177
+ "name": "Author",
178
+ "type": "RELATION",
179
+ "required": false,
180
+ "order": 4,
181
+ "options": {
182
+ "targetContentTypeIds": [null],
183
+ "targetContentTypeIdentifiers": ["Author"]
184
+ }
185
+ },
186
+ {
187
+ "id": null,
188
+ "identifier": "tags",
189
+ "name": "Tags",
190
+ "type": "MULTIRELATION",
191
+ "required": false,
192
+ "order": 5,
193
+ "options": {
194
+ "targetContentTypeIds": [null],
195
+ "targetContentTypeIdentifiers": ["Tag"]
196
+ }
197
+ },
198
+ {
199
+ "id": null,
200
+ "identifier": "featuredImage",
201
+ "name": "Featured image",
202
+ "type": "RELATION",
203
+ "required": false,
204
+ "order": 6,
205
+ "options": {
206
+ "targetContentTypeIds": [null],
207
+ "targetContentTypeIdentifiers": ["Image"]
208
+ }
209
+ },
210
+ {
211
+ "id": null,
212
+ "identifier": "metaTitle",
213
+ "name": "Meta title",
214
+ "type": "TEXT",
215
+ "required": false,
216
+ "order": 7,
217
+ "options": null
218
+ },
219
+ {
220
+ "id": null,
221
+ "identifier": "metaDescription",
222
+ "name": "Meta description",
223
+ "type": "TEXTAREA",
224
+ "required": false,
225
+ "order": 8,
226
+ "options": null
227
+ },
228
+ {
229
+ "id": null,
230
+ "identifier": "metaImage",
231
+ "name": "Meta image",
232
+ "type": "RELATION",
233
+ "required": false,
234
+ "order": 9,
235
+ "options": {
236
+ "targetContentTypeIds": [null],
237
+ "targetContentTypeIdentifiers": ["Image"]
238
+ }
239
+ },
240
+ {
241
+ "id": null,
242
+ "identifier": "canonicalUrl",
243
+ "name": "Canonical URL",
244
+ "type": "TEXT",
245
+ "required": false,
246
+ "order": 10,
247
+ "options": null
248
+ },
249
+ {
250
+ "id": null,
251
+ "identifier": "noIndex",
252
+ "name": "No index",
253
+ "type": "BOOLEAN",
254
+ "required": false,
255
+ "order": 11,
256
+ "options": { "default": false }
257
+ }
258
+ ]
259
+ },
260
+ {
261
+ "id": null,
262
+ "identifier": "Page",
263
+ "name": "Page",
264
+ "description": "A standalone page with rich text body and SEO metadata.",
265
+ "fields": [
266
+ {
267
+ "id": null,
268
+ "identifier": "title",
269
+ "name": "Title",
270
+ "type": "ENTRY_TITLE",
271
+ "required": true,
272
+ "order": 0,
273
+ "options": null
274
+ },
275
+ {
276
+ "id": null,
277
+ "identifier": "slug",
278
+ "name": "Slug",
279
+ "type": "SLUG",
280
+ "required": false,
281
+ "order": 1,
282
+ "options": null
283
+ },
284
+ {
285
+ "id": null,
286
+ "identifier": "body",
287
+ "name": "Body",
288
+ "type": "RICHTEXT",
289
+ "required": false,
290
+ "order": 2,
291
+ "options": null
292
+ },
293
+ {
294
+ "id": null,
295
+ "identifier": "metaTitle",
296
+ "name": "Meta title",
297
+ "type": "TEXT",
298
+ "required": false,
299
+ "order": 3,
300
+ "options": null
301
+ },
302
+ {
303
+ "id": null,
304
+ "identifier": "metaDescription",
305
+ "name": "Meta description",
306
+ "type": "TEXTAREA",
307
+ "required": false,
308
+ "order": 4,
309
+ "options": null
310
+ },
311
+ {
312
+ "id": null,
313
+ "identifier": "metaImage",
314
+ "name": "Meta image",
315
+ "type": "RELATION",
316
+ "required": false,
317
+ "order": 5,
318
+ "options": {
319
+ "targetContentTypeIds": [null],
320
+ "targetContentTypeIdentifiers": ["Image"]
321
+ }
322
+ },
323
+ {
324
+ "id": null,
325
+ "identifier": "canonicalUrl",
326
+ "name": "Canonical URL",
327
+ "type": "TEXT",
328
+ "required": false,
329
+ "order": 6,
330
+ "options": null
331
+ },
332
+ {
333
+ "id": null,
334
+ "identifier": "noIndex",
335
+ "name": "No index",
336
+ "type": "BOOLEAN",
337
+ "required": false,
338
+ "order": 7,
339
+ "options": null
340
+ }
341
+ ]
342
+ },
343
+ {
344
+ "id": null,
345
+ "identifier": "SiteSettings",
346
+ "name": "Site Settings",
347
+ "description": "Site-wide configuration. Singleton by convention — only one entry.",
348
+ "fields": [
349
+ {
350
+ "id": null,
351
+ "identifier": "name",
352
+ "name": "Name",
353
+ "type": "ENTRY_TITLE",
354
+ "required": true,
355
+ "order": 0,
356
+ "options": null
357
+ },
358
+ {
359
+ "id": null,
360
+ "identifier": "siteName",
361
+ "name": "Site name",
362
+ "type": "TEXT",
363
+ "required": true,
364
+ "order": 1,
365
+ "options": null
366
+ },
367
+ {
368
+ "id": null,
369
+ "identifier": "logo",
370
+ "name": "Logo",
371
+ "type": "RELATION",
372
+ "required": false,
373
+ "order": 2,
374
+ "options": {
375
+ "targetContentTypeIds": [null],
376
+ "targetContentTypeIdentifiers": ["Image"]
377
+ }
378
+ },
379
+ {
380
+ "id": null,
381
+ "identifier": "defaultOgImage",
382
+ "name": "Default OG image",
383
+ "type": "RELATION",
384
+ "required": false,
385
+ "order": 3,
386
+ "options": {
387
+ "targetContentTypeIds": [null],
388
+ "targetContentTypeIdentifiers": ["Image"]
389
+ }
390
+ },
391
+ {
392
+ "id": null,
393
+ "identifier": "footerCopy",
394
+ "name": "Footer copy",
395
+ "type": "TEXTAREA",
396
+ "required": false,
397
+ "order": 4,
398
+ "options": null
399
+ }
400
+ ]
401
+ },
402
+ {
403
+ "id": null,
404
+ "identifier": "Navigation",
405
+ "name": "Navigation",
406
+ "description": "A named navigation tree (e.g. Main, Footer).",
407
+ "fields": [
408
+ {
409
+ "id": null,
410
+ "identifier": "name",
411
+ "name": "Name",
412
+ "type": "ENTRY_TITLE",
413
+ "required": true,
414
+ "order": 0,
415
+ "options": null
416
+ },
417
+ {
418
+ "id": null,
419
+ "identifier": "items",
420
+ "name": "Items",
421
+ "type": "MULTIRELATION",
422
+ "required": false,
423
+ "order": 1,
424
+ "options": {
425
+ "targetContentTypeIds": [null],
426
+ "targetContentTypeIdentifiers": ["NavigationItem"]
427
+ }
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "id": null,
433
+ "identifier": "NavigationItem",
434
+ "name": "Navigation item",
435
+ "description": "A single link inside a Navigation. Either url or internalLink should be set.",
436
+ "fields": [
437
+ {
438
+ "id": null,
439
+ "identifier": "label",
440
+ "name": "Label",
441
+ "type": "ENTRY_TITLE",
442
+ "required": true,
443
+ "order": 0,
444
+ "options": null
445
+ },
446
+ {
447
+ "id": null,
448
+ "identifier": "url",
449
+ "name": "URL",
450
+ "type": "TEXT",
451
+ "required": false,
452
+ "order": 1,
453
+ "options": null
454
+ },
455
+ {
456
+ "id": null,
457
+ "identifier": "internalLink",
458
+ "name": "Internal link",
459
+ "type": "RELATION",
460
+ "required": false,
461
+ "order": 2,
462
+ "options": {
463
+ "targetContentTypeIds": [null, null],
464
+ "targetContentTypeIdentifiers": ["Article", "Page"]
465
+ }
466
+ },
467
+ {
468
+ "id": null,
469
+ "identifier": "openInNewTab",
470
+ "name": "Open in new tab",
471
+ "type": "BOOLEAN",
472
+ "required": false,
473
+ "order": 3,
474
+ "options": null
475
+ }
476
+ ]
477
+ }
478
+ ],
479
+ "entries": [
480
+ {
481
+ "id": null,
482
+ "contentTypeId": null,
483
+ "contentTypeIdentifier": "SiteSettings",
484
+ "entryTitle": "Site Settings",
485
+ "entryKey": "site-settings",
486
+ "slug": null,
487
+ "versions": [
488
+ {
489
+ "status": "PUBLISHED",
490
+ "data": {
491
+ "name": "Site Settings",
492
+ "siteName": "My Site",
493
+ "logo": null,
494
+ "defaultOgImage": null,
495
+ "footerCopy": "© {{year}} My Site. All rights reserved."
496
+ },
497
+ "publishedAt": null
498
+ }
499
+ ]
500
+ }
501
+ ]
502
+ }