@reaudit/mcp-server 1.0.0 → 1.3.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +106 -0
  2. package/README.md +101 -1
  3. package/dist/index.js +90 -1
  4. package/dist/index.js.map +1 -1
  5. package/dist/lib/api-client.d.ts +284 -0
  6. package/dist/lib/api-client.d.ts.map +1 -1
  7. package/dist/lib/api-client.js +148 -0
  8. package/dist/lib/api-client.js.map +1 -1
  9. package/dist/tools/agent-analytics.d.ts +42 -0
  10. package/dist/tools/agent-analytics.d.ts.map +1 -0
  11. package/dist/tools/agent-analytics.js +60 -0
  12. package/dist/tools/agent-analytics.js.map +1 -0
  13. package/dist/tools/analytics-query.d.ts +4 -4
  14. package/dist/tools/competitors.d.ts +140 -0
  15. package/dist/tools/competitors.d.ts.map +1 -0
  16. package/dist/tools/competitors.js +107 -0
  17. package/dist/tools/competitors.js.map +1 -0
  18. package/dist/tools/content-generation.d.ts +4 -4
  19. package/dist/tools/ga4.d.ts +50 -0
  20. package/dist/tools/ga4.d.ts.map +1 -0
  21. package/dist/tools/ga4.js +75 -0
  22. package/dist/tools/ga4.js.map +1 -0
  23. package/dist/tools/project-settings.d.ts +715 -0
  24. package/dist/tools/project-settings.d.ts.map +1 -0
  25. package/dist/tools/project-settings.js +381 -0
  26. package/dist/tools/project-settings.js.map +1 -0
  27. package/dist/tools/reddit.d.ts +116 -0
  28. package/dist/tools/reddit.d.ts.map +1 -0
  29. package/dist/tools/reddit.js +108 -0
  30. package/dist/tools/reddit.js.map +1 -0
  31. package/dist/tools/seo-alerts.d.ts +28 -0
  32. package/dist/tools/seo-alerts.d.ts.map +1 -0
  33. package/dist/tools/seo-alerts.js +48 -0
  34. package/dist/tools/seo-alerts.js.map +1 -0
  35. package/dist/tools/strategy-steps.d.ts +162 -0
  36. package/dist/tools/strategy-steps.d.ts.map +1 -0
  37. package/dist/tools/strategy-steps.js +342 -0
  38. package/dist/tools/strategy-steps.js.map +1 -0
  39. package/dist/tools/strategy.d.ts +6 -6
  40. package/dist/tools/tracking.d.ts +99 -0
  41. package/dist/tools/tracking.d.ts.map +1 -0
  42. package/dist/tools/tracking.js +148 -0
  43. package/dist/tools/tracking.js.map +1 -0
  44. package/package.json +2 -1
@@ -0,0 +1,715 @@
1
+ /**
2
+ * Project Settings Tools
3
+ *
4
+ * MCP tools for reading and updating project settings.
5
+ */
6
+ import { z } from 'zod';
7
+ import { ReauditAPIClient } from '../lib/api-client.js';
8
+ export declare const getProjectSettingsSchema: z.ZodObject<{
9
+ projectId: z.ZodOptional<z.ZodString>;
10
+ }, "strip", z.ZodTypeAny, {
11
+ projectId?: string | undefined;
12
+ }, {
13
+ projectId?: string | undefined;
14
+ }>;
15
+ export declare const updateProjectSettingsSchema: z.ZodObject<{
16
+ projectId: z.ZodOptional<z.ZodString>;
17
+ name: z.ZodOptional<z.ZodString>;
18
+ description: z.ZodOptional<z.ZodString>;
19
+ settings: z.ZodOptional<z.ZodObject<{
20
+ brandName: z.ZodOptional<z.ZodString>;
21
+ brandAliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22
+ products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23
+ trademarks: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
24
+ brandBlocklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25
+ website: z.ZodOptional<z.ZodString>;
26
+ brandDescription: z.ZodOptional<z.ZodString>;
27
+ idealCustomerProfile: z.ZodOptional<z.ZodString>;
28
+ brandPointOfView: z.ZodOptional<z.ZodString>;
29
+ mainKeyword: z.ZodOptional<z.ZodString>;
30
+ alternativeKeywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31
+ mainAiPrompt: z.ZodOptional<z.ZodString>;
32
+ targetMarket: z.ZodOptional<z.ZodString>;
33
+ marketingObjectives: z.ZodOptional<z.ZodString>;
34
+ sitemap: z.ZodOptional<z.ZodString>;
35
+ country: z.ZodOptional<z.ZodString>;
36
+ regions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
37
+ industry: z.ZodOptional<z.ZodString>;
38
+ language: z.ZodOptional<z.ZodString>;
39
+ timezone: z.ZodOptional<z.ZodString>;
40
+ defaultLocation: z.ZodOptional<z.ZodString>;
41
+ writingStyle: z.ZodOptional<z.ZodObject<{
42
+ authorPersona: z.ZodOptional<z.ZodString>;
43
+ enhancedToneOfVoice: z.ZodOptional<z.ZodString>;
44
+ }, "strip", z.ZodTypeAny, {
45
+ authorPersona?: string | undefined;
46
+ enhancedToneOfVoice?: string | undefined;
47
+ }, {
48
+ authorPersona?: string | undefined;
49
+ enhancedToneOfVoice?: string | undefined;
50
+ }>>;
51
+ logo: z.ZodOptional<z.ZodString>;
52
+ socialMedia: z.ZodOptional<z.ZodObject<{
53
+ facebook: z.ZodOptional<z.ZodString>;
54
+ twitter: z.ZodOptional<z.ZodString>;
55
+ linkedin: z.ZodOptional<z.ZodString>;
56
+ instagram: z.ZodOptional<z.ZodString>;
57
+ youtube: z.ZodOptional<z.ZodString>;
58
+ tiktok: z.ZodOptional<z.ZodString>;
59
+ pinterest: z.ZodOptional<z.ZodString>;
60
+ github: z.ZodOptional<z.ZodString>;
61
+ }, "strip", z.ZodTypeAny, {
62
+ facebook?: string | undefined;
63
+ twitter?: string | undefined;
64
+ linkedin?: string | undefined;
65
+ instagram?: string | undefined;
66
+ youtube?: string | undefined;
67
+ tiktok?: string | undefined;
68
+ pinterest?: string | undefined;
69
+ github?: string | undefined;
70
+ }, {
71
+ facebook?: string | undefined;
72
+ twitter?: string | undefined;
73
+ linkedin?: string | undefined;
74
+ instagram?: string | undefined;
75
+ youtube?: string | undefined;
76
+ tiktok?: string | undefined;
77
+ pinterest?: string | undefined;
78
+ github?: string | undefined;
79
+ }>>;
80
+ address: z.ZodOptional<z.ZodObject<{
81
+ street: z.ZodOptional<z.ZodString>;
82
+ city: z.ZodOptional<z.ZodString>;
83
+ state: z.ZodOptional<z.ZodString>;
84
+ zipCode: z.ZodOptional<z.ZodString>;
85
+ country: z.ZodOptional<z.ZodString>;
86
+ }, "strip", z.ZodTypeAny, {
87
+ state?: string | undefined;
88
+ country?: string | undefined;
89
+ street?: string | undefined;
90
+ city?: string | undefined;
91
+ zipCode?: string | undefined;
92
+ }, {
93
+ state?: string | undefined;
94
+ country?: string | undefined;
95
+ street?: string | undefined;
96
+ city?: string | undefined;
97
+ zipCode?: string | undefined;
98
+ }>>;
99
+ phone: z.ZodOptional<z.ZodString>;
100
+ email: z.ZodOptional<z.ZodString>;
101
+ competitors: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
102
+ name: z.ZodString;
103
+ aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
104
+ products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
105
+ trademarks: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
106
+ website: z.ZodOptional<z.ZodString>;
107
+ }, "strip", z.ZodTypeAny, {
108
+ name: string;
109
+ products?: string[] | undefined;
110
+ trademarks?: string[] | undefined;
111
+ website?: string | undefined;
112
+ aliases?: string[] | undefined;
113
+ }, {
114
+ name: string;
115
+ products?: string[] | undefined;
116
+ trademarks?: string[] | undefined;
117
+ website?: string | undefined;
118
+ aliases?: string[] | undefined;
119
+ }>]>, "many">>;
120
+ authorCard: z.ZodOptional<z.ZodObject<{
121
+ enabled: z.ZodOptional<z.ZodBoolean>;
122
+ name: z.ZodOptional<z.ZodString>;
123
+ title: z.ZodOptional<z.ZodString>;
124
+ bio: z.ZodOptional<z.ZodString>;
125
+ avatarUrl: z.ZodOptional<z.ZodString>;
126
+ socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
127
+ platform: z.ZodString;
128
+ url: z.ZodString;
129
+ label: z.ZodOptional<z.ZodString>;
130
+ }, "strip", z.ZodTypeAny, {
131
+ url: string;
132
+ platform: string;
133
+ label?: string | undefined;
134
+ }, {
135
+ url: string;
136
+ platform: string;
137
+ label?: string | undefined;
138
+ }>, "many">>;
139
+ }, "strip", z.ZodTypeAny, {
140
+ name?: string | undefined;
141
+ enabled?: boolean | undefined;
142
+ title?: string | undefined;
143
+ bio?: string | undefined;
144
+ avatarUrl?: string | undefined;
145
+ socialLinks?: {
146
+ url: string;
147
+ platform: string;
148
+ label?: string | undefined;
149
+ }[] | undefined;
150
+ }, {
151
+ name?: string | undefined;
152
+ enabled?: boolean | undefined;
153
+ title?: string | undefined;
154
+ bio?: string | undefined;
155
+ avatarUrl?: string | undefined;
156
+ socialLinks?: {
157
+ url: string;
158
+ platform: string;
159
+ label?: string | undefined;
160
+ }[] | undefined;
161
+ }>>;
162
+ }, "strip", z.ZodTypeAny, {
163
+ brandName?: string | undefined;
164
+ brandAliases?: string[] | undefined;
165
+ products?: string[] | undefined;
166
+ trademarks?: string[] | undefined;
167
+ brandBlocklist?: string[] | undefined;
168
+ website?: string | undefined;
169
+ brandDescription?: string | undefined;
170
+ idealCustomerProfile?: string | undefined;
171
+ brandPointOfView?: string | undefined;
172
+ mainKeyword?: string | undefined;
173
+ alternativeKeywords?: string[] | undefined;
174
+ mainAiPrompt?: string | undefined;
175
+ targetMarket?: string | undefined;
176
+ marketingObjectives?: string | undefined;
177
+ sitemap?: string | undefined;
178
+ country?: string | undefined;
179
+ regions?: string[] | undefined;
180
+ industry?: string | undefined;
181
+ language?: string | undefined;
182
+ timezone?: string | undefined;
183
+ defaultLocation?: string | undefined;
184
+ writingStyle?: {
185
+ authorPersona?: string | undefined;
186
+ enhancedToneOfVoice?: string | undefined;
187
+ } | undefined;
188
+ logo?: string | undefined;
189
+ socialMedia?: {
190
+ facebook?: string | undefined;
191
+ twitter?: string | undefined;
192
+ linkedin?: string | undefined;
193
+ instagram?: string | undefined;
194
+ youtube?: string | undefined;
195
+ tiktok?: string | undefined;
196
+ pinterest?: string | undefined;
197
+ github?: string | undefined;
198
+ } | undefined;
199
+ address?: {
200
+ state?: string | undefined;
201
+ country?: string | undefined;
202
+ street?: string | undefined;
203
+ city?: string | undefined;
204
+ zipCode?: string | undefined;
205
+ } | undefined;
206
+ phone?: string | undefined;
207
+ email?: string | undefined;
208
+ competitors?: (string | {
209
+ name: string;
210
+ products?: string[] | undefined;
211
+ trademarks?: string[] | undefined;
212
+ website?: string | undefined;
213
+ aliases?: string[] | undefined;
214
+ })[] | undefined;
215
+ authorCard?: {
216
+ name?: string | undefined;
217
+ enabled?: boolean | undefined;
218
+ title?: string | undefined;
219
+ bio?: string | undefined;
220
+ avatarUrl?: string | undefined;
221
+ socialLinks?: {
222
+ url: string;
223
+ platform: string;
224
+ label?: string | undefined;
225
+ }[] | undefined;
226
+ } | undefined;
227
+ }, {
228
+ brandName?: string | undefined;
229
+ brandAliases?: string[] | undefined;
230
+ products?: string[] | undefined;
231
+ trademarks?: string[] | undefined;
232
+ brandBlocklist?: string[] | undefined;
233
+ website?: string | undefined;
234
+ brandDescription?: string | undefined;
235
+ idealCustomerProfile?: string | undefined;
236
+ brandPointOfView?: string | undefined;
237
+ mainKeyword?: string | undefined;
238
+ alternativeKeywords?: string[] | undefined;
239
+ mainAiPrompt?: string | undefined;
240
+ targetMarket?: string | undefined;
241
+ marketingObjectives?: string | undefined;
242
+ sitemap?: string | undefined;
243
+ country?: string | undefined;
244
+ regions?: string[] | undefined;
245
+ industry?: string | undefined;
246
+ language?: string | undefined;
247
+ timezone?: string | undefined;
248
+ defaultLocation?: string | undefined;
249
+ writingStyle?: {
250
+ authorPersona?: string | undefined;
251
+ enhancedToneOfVoice?: string | undefined;
252
+ } | undefined;
253
+ logo?: string | undefined;
254
+ socialMedia?: {
255
+ facebook?: string | undefined;
256
+ twitter?: string | undefined;
257
+ linkedin?: string | undefined;
258
+ instagram?: string | undefined;
259
+ youtube?: string | undefined;
260
+ tiktok?: string | undefined;
261
+ pinterest?: string | undefined;
262
+ github?: string | undefined;
263
+ } | undefined;
264
+ address?: {
265
+ state?: string | undefined;
266
+ country?: string | undefined;
267
+ street?: string | undefined;
268
+ city?: string | undefined;
269
+ zipCode?: string | undefined;
270
+ } | undefined;
271
+ phone?: string | undefined;
272
+ email?: string | undefined;
273
+ competitors?: (string | {
274
+ name: string;
275
+ products?: string[] | undefined;
276
+ trademarks?: string[] | undefined;
277
+ website?: string | undefined;
278
+ aliases?: string[] | undefined;
279
+ })[] | undefined;
280
+ authorCard?: {
281
+ name?: string | undefined;
282
+ enabled?: boolean | undefined;
283
+ title?: string | undefined;
284
+ bio?: string | undefined;
285
+ avatarUrl?: string | undefined;
286
+ socialLinks?: {
287
+ url: string;
288
+ platform: string;
289
+ label?: string | undefined;
290
+ }[] | undefined;
291
+ } | undefined;
292
+ }>>;
293
+ }, "strip", z.ZodTypeAny, {
294
+ projectId?: string | undefined;
295
+ name?: string | undefined;
296
+ description?: string | undefined;
297
+ settings?: {
298
+ brandName?: string | undefined;
299
+ brandAliases?: string[] | undefined;
300
+ products?: string[] | undefined;
301
+ trademarks?: string[] | undefined;
302
+ brandBlocklist?: string[] | undefined;
303
+ website?: string | undefined;
304
+ brandDescription?: string | undefined;
305
+ idealCustomerProfile?: string | undefined;
306
+ brandPointOfView?: string | undefined;
307
+ mainKeyword?: string | undefined;
308
+ alternativeKeywords?: string[] | undefined;
309
+ mainAiPrompt?: string | undefined;
310
+ targetMarket?: string | undefined;
311
+ marketingObjectives?: string | undefined;
312
+ sitemap?: string | undefined;
313
+ country?: string | undefined;
314
+ regions?: string[] | undefined;
315
+ industry?: string | undefined;
316
+ language?: string | undefined;
317
+ timezone?: string | undefined;
318
+ defaultLocation?: string | undefined;
319
+ writingStyle?: {
320
+ authorPersona?: string | undefined;
321
+ enhancedToneOfVoice?: string | undefined;
322
+ } | undefined;
323
+ logo?: string | undefined;
324
+ socialMedia?: {
325
+ facebook?: string | undefined;
326
+ twitter?: string | undefined;
327
+ linkedin?: string | undefined;
328
+ instagram?: string | undefined;
329
+ youtube?: string | undefined;
330
+ tiktok?: string | undefined;
331
+ pinterest?: string | undefined;
332
+ github?: string | undefined;
333
+ } | undefined;
334
+ address?: {
335
+ state?: string | undefined;
336
+ country?: string | undefined;
337
+ street?: string | undefined;
338
+ city?: string | undefined;
339
+ zipCode?: string | undefined;
340
+ } | undefined;
341
+ phone?: string | undefined;
342
+ email?: string | undefined;
343
+ competitors?: (string | {
344
+ name: string;
345
+ products?: string[] | undefined;
346
+ trademarks?: string[] | undefined;
347
+ website?: string | undefined;
348
+ aliases?: string[] | undefined;
349
+ })[] | undefined;
350
+ authorCard?: {
351
+ name?: string | undefined;
352
+ enabled?: boolean | undefined;
353
+ title?: string | undefined;
354
+ bio?: string | undefined;
355
+ avatarUrl?: string | undefined;
356
+ socialLinks?: {
357
+ url: string;
358
+ platform: string;
359
+ label?: string | undefined;
360
+ }[] | undefined;
361
+ } | undefined;
362
+ } | undefined;
363
+ }, {
364
+ projectId?: string | undefined;
365
+ name?: string | undefined;
366
+ description?: string | undefined;
367
+ settings?: {
368
+ brandName?: string | undefined;
369
+ brandAliases?: string[] | undefined;
370
+ products?: string[] | undefined;
371
+ trademarks?: string[] | undefined;
372
+ brandBlocklist?: string[] | undefined;
373
+ website?: string | undefined;
374
+ brandDescription?: string | undefined;
375
+ idealCustomerProfile?: string | undefined;
376
+ brandPointOfView?: string | undefined;
377
+ mainKeyword?: string | undefined;
378
+ alternativeKeywords?: string[] | undefined;
379
+ mainAiPrompt?: string | undefined;
380
+ targetMarket?: string | undefined;
381
+ marketingObjectives?: string | undefined;
382
+ sitemap?: string | undefined;
383
+ country?: string | undefined;
384
+ regions?: string[] | undefined;
385
+ industry?: string | undefined;
386
+ language?: string | undefined;
387
+ timezone?: string | undefined;
388
+ defaultLocation?: string | undefined;
389
+ writingStyle?: {
390
+ authorPersona?: string | undefined;
391
+ enhancedToneOfVoice?: string | undefined;
392
+ } | undefined;
393
+ logo?: string | undefined;
394
+ socialMedia?: {
395
+ facebook?: string | undefined;
396
+ twitter?: string | undefined;
397
+ linkedin?: string | undefined;
398
+ instagram?: string | undefined;
399
+ youtube?: string | undefined;
400
+ tiktok?: string | undefined;
401
+ pinterest?: string | undefined;
402
+ github?: string | undefined;
403
+ } | undefined;
404
+ address?: {
405
+ state?: string | undefined;
406
+ country?: string | undefined;
407
+ street?: string | undefined;
408
+ city?: string | undefined;
409
+ zipCode?: string | undefined;
410
+ } | undefined;
411
+ phone?: string | undefined;
412
+ email?: string | undefined;
413
+ competitors?: (string | {
414
+ name: string;
415
+ products?: string[] | undefined;
416
+ trademarks?: string[] | undefined;
417
+ website?: string | undefined;
418
+ aliases?: string[] | undefined;
419
+ })[] | undefined;
420
+ authorCard?: {
421
+ name?: string | undefined;
422
+ enabled?: boolean | undefined;
423
+ title?: string | undefined;
424
+ bio?: string | undefined;
425
+ avatarUrl?: string | undefined;
426
+ socialLinks?: {
427
+ url: string;
428
+ platform: string;
429
+ label?: string | undefined;
430
+ }[] | undefined;
431
+ } | undefined;
432
+ } | undefined;
433
+ }>;
434
+ /**
435
+ * Get project settings tool handler
436
+ */
437
+ export declare function getProjectSettings(client: ReauditAPIClient, args: z.infer<typeof getProjectSettingsSchema>): Promise<string>;
438
+ /**
439
+ * Update project settings tool handler
440
+ */
441
+ export declare function updateProjectSettings(client: ReauditAPIClient, args: z.infer<typeof updateProjectSettingsSchema>): Promise<string>;
442
+ /**
443
+ * Tool definitions for MCP
444
+ */
445
+ export declare const projectSettingsTools: ({
446
+ name: string;
447
+ description: string;
448
+ inputSchema: {
449
+ type: "object";
450
+ properties: {
451
+ projectId: {
452
+ type: string;
453
+ description: string;
454
+ };
455
+ name?: undefined;
456
+ description?: undefined;
457
+ settings?: undefined;
458
+ };
459
+ required: string[];
460
+ };
461
+ } | {
462
+ name: string;
463
+ description: string;
464
+ inputSchema: {
465
+ type: "object";
466
+ properties: {
467
+ projectId: {
468
+ type: string;
469
+ description: string;
470
+ };
471
+ name: {
472
+ type: string;
473
+ description: string;
474
+ };
475
+ description: {
476
+ type: string;
477
+ description: string;
478
+ };
479
+ settings: {
480
+ type: string;
481
+ description: string;
482
+ properties: {
483
+ brandName: {
484
+ type: string;
485
+ description: string;
486
+ };
487
+ brandAliases: {
488
+ type: string;
489
+ items: {
490
+ type: string;
491
+ };
492
+ description: string;
493
+ };
494
+ products: {
495
+ type: string;
496
+ items: {
497
+ type: string;
498
+ };
499
+ description: string;
500
+ };
501
+ trademarks: {
502
+ type: string;
503
+ items: {
504
+ type: string;
505
+ };
506
+ description: string;
507
+ };
508
+ brandBlocklist: {
509
+ type: string;
510
+ items: {
511
+ type: string;
512
+ };
513
+ description: string;
514
+ };
515
+ website: {
516
+ type: string;
517
+ description: string;
518
+ };
519
+ brandDescription: {
520
+ type: string;
521
+ description: string;
522
+ };
523
+ idealCustomerProfile: {
524
+ type: string;
525
+ description: string;
526
+ };
527
+ brandPointOfView: {
528
+ type: string;
529
+ description: string;
530
+ };
531
+ mainKeyword: {
532
+ type: string;
533
+ description: string;
534
+ };
535
+ alternativeKeywords: {
536
+ type: string;
537
+ items: {
538
+ type: string;
539
+ };
540
+ description: string;
541
+ };
542
+ mainAiPrompt: {
543
+ type: string;
544
+ description: string;
545
+ };
546
+ targetMarket: {
547
+ type: string;
548
+ description: string;
549
+ };
550
+ marketingObjectives: {
551
+ type: string;
552
+ description: string;
553
+ };
554
+ sitemap: {
555
+ type: string;
556
+ description: string;
557
+ };
558
+ country: {
559
+ type: string;
560
+ description: string;
561
+ };
562
+ regions: {
563
+ type: string;
564
+ items: {
565
+ type: string;
566
+ };
567
+ description: string;
568
+ };
569
+ industry: {
570
+ type: string;
571
+ description: string;
572
+ };
573
+ language: {
574
+ type: string;
575
+ description: string;
576
+ };
577
+ timezone: {
578
+ type: string;
579
+ description: string;
580
+ };
581
+ defaultLocation: {
582
+ type: string;
583
+ description: string;
584
+ };
585
+ writingStyle: {
586
+ type: string;
587
+ description: string;
588
+ properties: {
589
+ authorPersona: {
590
+ type: string;
591
+ description: string;
592
+ };
593
+ enhancedToneOfVoice: {
594
+ type: string;
595
+ description: string;
596
+ };
597
+ };
598
+ };
599
+ logo: {
600
+ type: string;
601
+ description: string;
602
+ };
603
+ socialMedia: {
604
+ type: string;
605
+ description: string;
606
+ properties: {
607
+ facebook: {
608
+ type: string;
609
+ };
610
+ twitter: {
611
+ type: string;
612
+ };
613
+ linkedin: {
614
+ type: string;
615
+ };
616
+ instagram: {
617
+ type: string;
618
+ };
619
+ youtube: {
620
+ type: string;
621
+ };
622
+ tiktok: {
623
+ type: string;
624
+ };
625
+ pinterest: {
626
+ type: string;
627
+ };
628
+ github: {
629
+ type: string;
630
+ };
631
+ };
632
+ };
633
+ address: {
634
+ type: string;
635
+ description: string;
636
+ properties: {
637
+ street: {
638
+ type: string;
639
+ };
640
+ city: {
641
+ type: string;
642
+ };
643
+ state: {
644
+ type: string;
645
+ };
646
+ zipCode: {
647
+ type: string;
648
+ };
649
+ country: {
650
+ type: string;
651
+ };
652
+ };
653
+ };
654
+ phone: {
655
+ type: string;
656
+ description: string;
657
+ };
658
+ email: {
659
+ type: string;
660
+ description: string;
661
+ };
662
+ competitors: {
663
+ type: string;
664
+ description: string;
665
+ items: {};
666
+ };
667
+ authorCard: {
668
+ type: string;
669
+ description: string;
670
+ properties: {
671
+ enabled: {
672
+ type: string;
673
+ };
674
+ name: {
675
+ type: string;
676
+ };
677
+ title: {
678
+ type: string;
679
+ description: string;
680
+ };
681
+ bio: {
682
+ type: string;
683
+ description: string;
684
+ };
685
+ avatarUrl: {
686
+ type: string;
687
+ description: string;
688
+ };
689
+ socialLinks: {
690
+ type: string;
691
+ items: {
692
+ type: string;
693
+ properties: {
694
+ platform: {
695
+ type: string;
696
+ };
697
+ url: {
698
+ type: string;
699
+ };
700
+ label: {
701
+ type: string;
702
+ };
703
+ };
704
+ required: string[];
705
+ };
706
+ };
707
+ };
708
+ };
709
+ };
710
+ };
711
+ };
712
+ required: string[];
713
+ };
714
+ })[];
715
+ //# sourceMappingURL=project-settings.d.ts.map