@prosophia/personal-portfolio 0.0.2 → 0.0.4

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,433 @@
1
+ declare const profile: {
2
+ name: string;
3
+ title: string;
4
+ type: string;
5
+ fields: ({
6
+ name: string;
7
+ title: string;
8
+ type: string;
9
+ validation: (Rule: unknown) => unknown;
10
+ description?: undefined;
11
+ options?: undefined;
12
+ fields?: undefined;
13
+ of?: undefined;
14
+ } | {
15
+ name: string;
16
+ title: string;
17
+ type: string;
18
+ description: string;
19
+ validation?: undefined;
20
+ options?: undefined;
21
+ fields?: undefined;
22
+ of?: undefined;
23
+ } | {
24
+ name: string;
25
+ title: string;
26
+ type: string;
27
+ options: {
28
+ hotspot: boolean;
29
+ };
30
+ validation?: undefined;
31
+ description?: undefined;
32
+ fields?: undefined;
33
+ of?: undefined;
34
+ } | {
35
+ name: string;
36
+ title: string;
37
+ type: string;
38
+ fields: {
39
+ name: string;
40
+ title: string;
41
+ type: string;
42
+ }[];
43
+ validation?: undefined;
44
+ description?: undefined;
45
+ options?: undefined;
46
+ of?: undefined;
47
+ } | {
48
+ name: string;
49
+ title: string;
50
+ type: string;
51
+ of: {
52
+ type: string;
53
+ }[];
54
+ validation?: undefined;
55
+ description?: undefined;
56
+ options?: undefined;
57
+ fields?: undefined;
58
+ })[];
59
+ };
60
+
61
+ declare const siteSettings: {
62
+ name: string;
63
+ title: string;
64
+ type: string;
65
+ fields: ({
66
+ name: string;
67
+ title: string;
68
+ type: string;
69
+ description: string;
70
+ fields?: undefined;
71
+ } | {
72
+ name: string;
73
+ title: string;
74
+ type: string;
75
+ description?: undefined;
76
+ fields?: undefined;
77
+ } | {
78
+ name: string;
79
+ title: string;
80
+ type: string;
81
+ fields: {
82
+ name: string;
83
+ title: string;
84
+ type: string;
85
+ }[];
86
+ description?: undefined;
87
+ } | {
88
+ name: string;
89
+ title: string;
90
+ type: string;
91
+ fields: ({
92
+ name: string;
93
+ title: string;
94
+ type: string;
95
+ options: {
96
+ list: {
97
+ title: string;
98
+ value: string;
99
+ }[];
100
+ };
101
+ description?: undefined;
102
+ } | {
103
+ name: string;
104
+ title: string;
105
+ type: string;
106
+ description: string;
107
+ options?: undefined;
108
+ })[];
109
+ description?: undefined;
110
+ })[];
111
+ };
112
+
113
+ declare const update: {
114
+ name: string;
115
+ title: string;
116
+ type: string;
117
+ fields: ({
118
+ name: string;
119
+ title: string;
120
+ type: string;
121
+ validation: (Rule: unknown) => unknown;
122
+ } | {
123
+ name: string;
124
+ title: string;
125
+ type: string;
126
+ validation?: undefined;
127
+ })[];
128
+ orderings: {
129
+ title: string;
130
+ name: string;
131
+ by: {
132
+ field: string;
133
+ direction: string;
134
+ }[];
135
+ }[];
136
+ };
137
+
138
+ declare const experience: {
139
+ name: string;
140
+ title: string;
141
+ type: string;
142
+ fields: ({
143
+ name: string;
144
+ title: string;
145
+ type: string;
146
+ validation: (Rule: unknown) => unknown;
147
+ description?: undefined;
148
+ initialValue?: undefined;
149
+ options?: undefined;
150
+ } | {
151
+ name: string;
152
+ title: string;
153
+ type: string;
154
+ description: string;
155
+ validation?: undefined;
156
+ initialValue?: undefined;
157
+ options?: undefined;
158
+ } | {
159
+ name: string;
160
+ title: string;
161
+ type: string;
162
+ validation?: undefined;
163
+ description?: undefined;
164
+ initialValue?: undefined;
165
+ options?: undefined;
166
+ } | {
167
+ name: string;
168
+ title: string;
169
+ type: string;
170
+ initialValue: boolean;
171
+ validation?: undefined;
172
+ description?: undefined;
173
+ options?: undefined;
174
+ } | {
175
+ name: string;
176
+ title: string;
177
+ type: string;
178
+ options: {
179
+ list: {
180
+ title: string;
181
+ value: string;
182
+ }[];
183
+ };
184
+ validation?: undefined;
185
+ description?: undefined;
186
+ initialValue?: undefined;
187
+ })[];
188
+ orderings: {
189
+ title: string;
190
+ name: string;
191
+ by: {
192
+ field: string;
193
+ direction: string;
194
+ }[];
195
+ }[];
196
+ };
197
+
198
+ declare const project: {
199
+ name: string;
200
+ title: string;
201
+ type: string;
202
+ fields: ({
203
+ name: string;
204
+ title: string;
205
+ type: string;
206
+ validation: (Rule: unknown) => unknown;
207
+ options?: undefined;
208
+ description?: undefined;
209
+ of?: undefined;
210
+ } | {
211
+ name: string;
212
+ title: string;
213
+ type: string;
214
+ options: {
215
+ source: string;
216
+ maxLength: number;
217
+ hotspot?: undefined;
218
+ layout?: undefined;
219
+ };
220
+ validation?: undefined;
221
+ description?: undefined;
222
+ of?: undefined;
223
+ } | {
224
+ name: string;
225
+ title: string;
226
+ type: string;
227
+ description: string;
228
+ validation?: undefined;
229
+ options?: undefined;
230
+ of?: undefined;
231
+ } | {
232
+ name: string;
233
+ title: string;
234
+ type: string;
235
+ of: {
236
+ type: string;
237
+ }[];
238
+ validation?: undefined;
239
+ options?: undefined;
240
+ description?: undefined;
241
+ } | {
242
+ name: string;
243
+ title: string;
244
+ type: string;
245
+ options: {
246
+ hotspot: boolean;
247
+ source?: undefined;
248
+ maxLength?: undefined;
249
+ layout?: undefined;
250
+ };
251
+ validation?: undefined;
252
+ description?: undefined;
253
+ of?: undefined;
254
+ } | {
255
+ name: string;
256
+ title: string;
257
+ type: string;
258
+ of: {
259
+ type: string;
260
+ }[];
261
+ options: {
262
+ layout: string;
263
+ source?: undefined;
264
+ maxLength?: undefined;
265
+ hotspot?: undefined;
266
+ };
267
+ validation?: undefined;
268
+ description?: undefined;
269
+ } | {
270
+ name: string;
271
+ title: string;
272
+ type: string;
273
+ validation?: undefined;
274
+ options?: undefined;
275
+ description?: undefined;
276
+ of?: undefined;
277
+ })[];
278
+ orderings: {
279
+ title: string;
280
+ name: string;
281
+ by: {
282
+ field: string;
283
+ direction: string;
284
+ }[];
285
+ }[];
286
+ };
287
+
288
+ declare const publication: {
289
+ name: string;
290
+ title: string;
291
+ type: string;
292
+ fields: ({
293
+ name: string;
294
+ title: string;
295
+ type: string;
296
+ validation: (Rule: unknown) => unknown;
297
+ of?: undefined;
298
+ description?: undefined;
299
+ options?: undefined;
300
+ } | {
301
+ name: string;
302
+ title: string;
303
+ type: string;
304
+ of: {
305
+ type: string;
306
+ fields: ({
307
+ name: string;
308
+ title: string;
309
+ type: string;
310
+ initialValue?: undefined;
311
+ } | {
312
+ name: string;
313
+ title: string;
314
+ type: string;
315
+ initialValue: boolean;
316
+ })[];
317
+ }[];
318
+ validation?: undefined;
319
+ description?: undefined;
320
+ options?: undefined;
321
+ } | {
322
+ name: string;
323
+ title: string;
324
+ type: string;
325
+ description: string;
326
+ validation?: undefined;
327
+ of?: undefined;
328
+ options?: undefined;
329
+ } | {
330
+ name: string;
331
+ title: string;
332
+ type: string;
333
+ validation?: undefined;
334
+ of?: undefined;
335
+ description?: undefined;
336
+ options?: undefined;
337
+ } | {
338
+ name: string;
339
+ title: string;
340
+ type: string;
341
+ options: {
342
+ accept: string;
343
+ };
344
+ validation?: undefined;
345
+ of?: undefined;
346
+ description?: undefined;
347
+ })[];
348
+ orderings: {
349
+ title: string;
350
+ name: string;
351
+ by: {
352
+ field: string;
353
+ direction: string;
354
+ }[];
355
+ }[];
356
+ };
357
+
358
+ declare const schemas: ({
359
+ name: string;
360
+ title: string;
361
+ type: string;
362
+ fields: ({
363
+ name: string;
364
+ title: string;
365
+ type: string;
366
+ description: string;
367
+ fields?: undefined;
368
+ } | {
369
+ name: string;
370
+ title: string;
371
+ type: string;
372
+ description?: undefined;
373
+ fields?: undefined;
374
+ } | {
375
+ name: string;
376
+ title: string;
377
+ type: string;
378
+ fields: {
379
+ name: string;
380
+ title: string;
381
+ type: string;
382
+ }[];
383
+ description?: undefined;
384
+ } | {
385
+ name: string;
386
+ title: string;
387
+ type: string;
388
+ fields: ({
389
+ name: string;
390
+ title: string;
391
+ type: string;
392
+ options: {
393
+ list: {
394
+ title: string;
395
+ value: string;
396
+ }[];
397
+ };
398
+ description?: undefined;
399
+ } | {
400
+ name: string;
401
+ title: string;
402
+ type: string;
403
+ description: string;
404
+ options?: undefined;
405
+ })[];
406
+ description?: undefined;
407
+ })[];
408
+ } | {
409
+ name: string;
410
+ title: string;
411
+ type: string;
412
+ fields: ({
413
+ name: string;
414
+ title: string;
415
+ type: string;
416
+ validation: (Rule: unknown) => unknown;
417
+ } | {
418
+ name: string;
419
+ title: string;
420
+ type: string;
421
+ validation?: undefined;
422
+ })[];
423
+ orderings: {
424
+ title: string;
425
+ name: string;
426
+ by: {
427
+ field: string;
428
+ direction: string;
429
+ }[];
430
+ }[];
431
+ })[];
432
+
433
+ export { experience, profile, project, publication, schemas, siteSettings, update };