@sudobility/components 4.0.163 → 5.0.2

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.
@@ -1,1074 +0,0 @@
1
- /**
2
- * Advanced SEO and AI Optimization Utilities
3
- * Comprehensive structured data and semantic markup for search engines and AI crawlers
4
- */
5
- export interface AppBrandingConfig {
6
- appName: string;
7
- baseUrl: string;
8
- twitterHandle?: string;
9
- emailDomain?: string;
10
- }
11
- export interface AdvancedSEOConfig {
12
- title: string;
13
- description: string;
14
- keywords: string[] | string;
15
- category: string;
16
- audience: string[] | string;
17
- complexity: 'beginner' | 'intermediate' | 'advanced';
18
- contentType: 'guide' | 'reference' | 'tutorial' | 'overview' | 'feature';
19
- readingTime?: number;
20
- lastUpdated?: Date;
21
- relatedTopics?: string[];
22
- branding: AppBrandingConfig;
23
- }
24
- export declare const createWeb3ProductSchema: (config: AdvancedSEOConfig) => {
25
- '@context': string;
26
- '@type': string;
27
- name: string;
28
- applicationCategory: string;
29
- operatingSystem: string;
30
- description: string;
31
- url: string;
32
- downloadUrl: string;
33
- installUrl: string;
34
- screenshot: string;
35
- aggregateRating: {
36
- '@type': string;
37
- ratingValue: string;
38
- reviewCount: string;
39
- bestRating: string;
40
- worstRating: string;
41
- };
42
- offers: ({
43
- '@type': string;
44
- name: string;
45
- description: string;
46
- price: string;
47
- priceCurrency: string;
48
- availability: string;
49
- billingIncrement?: undefined;
50
- } | {
51
- '@type': string;
52
- name: string;
53
- description: string;
54
- price: string;
55
- priceCurrency: string;
56
- billingIncrement: string;
57
- availability: string;
58
- })[];
59
- featureList: string[];
60
- applicationSubCategory: string;
61
- audience: {
62
- '@type': string;
63
- audienceType: string;
64
- geographicArea: string;
65
- };
66
- creator: {
67
- '@type': string;
68
- name: string;
69
- url: string;
70
- };
71
- datePublished: string;
72
- dateModified: string;
73
- version: string;
74
- softwareRequirements: string;
75
- storageRequirements: string;
76
- memoryRequirements: string;
77
- supportingData: {
78
- blockchainNetworks: string[];
79
- supportedWallets: string[];
80
- smartContractSupport: boolean;
81
- ensCompatible: boolean;
82
- snsCompatible: boolean;
83
- };
84
- };
85
- export declare const createTechnicalArticleSchema: (config: AdvancedSEOConfig) => {
86
- '@context': string;
87
- '@type': string;
88
- headline: string;
89
- description: string;
90
- author: {
91
- '@type': string;
92
- name: string;
93
- url: string;
94
- logo: {
95
- '@type': string;
96
- url: string;
97
- };
98
- };
99
- publisher: {
100
- '@type': string;
101
- name: string;
102
- logo: {
103
- '@type': string;
104
- url: string;
105
- width: number;
106
- height: number;
107
- };
108
- };
109
- datePublished: string;
110
- dateModified: string;
111
- mainEntityOfPage: {
112
- '@type': string;
113
- '@id': string;
114
- };
115
- image: {
116
- '@type': string;
117
- url: string;
118
- width: number;
119
- height: number;
120
- };
121
- keywords: string;
122
- about: {
123
- '@type': string;
124
- name: string;
125
- }[];
126
- audience: {
127
- '@type': string;
128
- audienceType: string;
129
- educationalLevel: "intermediate" | "beginner" | "advanced";
130
- };
131
- educationalLevel: "intermediate" | "beginner" | "advanced";
132
- proficiencyLevel: "intermediate" | "beginner" | "advanced";
133
- learningResourceType: "feature" | "guide" | "reference" | "tutorial" | "overview";
134
- timeRequired: string;
135
- inLanguage: string;
136
- isAccessibleForFree: boolean;
137
- license: string;
138
- teaches: string[];
139
- };
140
- export declare const createEnhancedFAQSchema: (faqs: Array<{
141
- question: string;
142
- answer: string;
143
- category?: string;
144
- }>, branding: AppBrandingConfig) => {
145
- '@context': string;
146
- '@type': string;
147
- mainEntity: {
148
- '@type': string;
149
- name: string;
150
- acceptedAnswer: {
151
- '@type': string;
152
- text: string;
153
- dateCreated: string;
154
- upvoteCount: number;
155
- author: {
156
- '@type': string;
157
- name: string;
158
- };
159
- };
160
- answerCount: number;
161
- upvoteCount: number;
162
- dateCreated: string;
163
- category: string;
164
- }[];
165
- };
166
- export declare const createAIOptimizedSchema: (config: AdvancedSEOConfig) => {
167
- '@context': string;
168
- '@type': string;
169
- name: string;
170
- description: string;
171
- url: string;
172
- primaryImageOfPage: {
173
- '@type': string;
174
- url: string;
175
- };
176
- significantLink: string[];
177
- relatedLink: string[];
178
- about: {
179
- '@type': string;
180
- name: string;
181
- description: string;
182
- sameAs: string[];
183
- };
184
- mentions: {
185
- '@type': string;
186
- name: string;
187
- }[];
188
- isPartOf: {
189
- '@type': string;
190
- '@id': string;
191
- name: string;
192
- };
193
- potentialAction: {
194
- '@type': string;
195
- target: {
196
- '@type': string;
197
- urlTemplate: string;
198
- actionPlatform: string[];
199
- };
200
- name: string;
201
- };
202
- };
203
- export declare const createEnhancedOpenGraph: (config: AdvancedSEOConfig) => {
204
- 'og:title': string;
205
- 'og:description': string;
206
- 'og:type': string;
207
- 'og:url': string;
208
- 'og:image': string;
209
- 'og:image:width': string;
210
- 'og:image:height': string;
211
- 'og:image:alt': string;
212
- 'og:site_name': string;
213
- 'og:locale': string;
214
- 'article:author': string;
215
- 'article:section': string;
216
- 'article:tag': string;
217
- 'article:published_time': string;
218
- 'article:modified_time': string;
219
- };
220
- export declare const createEnhancedTwitterCard: (config: AdvancedSEOConfig) => {
221
- 'twitter:card': string;
222
- 'twitter:site': string;
223
- 'twitter:creator': string;
224
- 'twitter:title': string;
225
- 'twitter:description': string;
226
- 'twitter:image': string;
227
- 'twitter:image:alt': string;
228
- 'twitter:label1': string;
229
- 'twitter:data1': string;
230
- 'twitter:label2': string;
231
- 'twitter:data2': string;
232
- };
233
- export declare const createAIMetaTags: (config: AdvancedSEOConfig) => {
234
- 'ai:content-type': "feature" | "guide" | "reference" | "tutorial" | "overview";
235
- 'ai:complexity': "intermediate" | "beginner" | "advanced";
236
- 'ai:category': string;
237
- 'ai:audience': string;
238
- 'ai:keywords': string;
239
- 'ai:reading-time': string;
240
- 'web3:platform': string;
241
- 'web3:networks': string;
242
- 'web3:wallets': string;
243
- 'web3:features': string;
244
- 'llm:context': string;
245
- 'llm:domain': string;
246
- 'llm:use-case': string;
247
- 'semantic:topic': string;
248
- 'semantic:intent': string;
249
- 'semantic:entities': string;
250
- 'content:freshness': string;
251
- 'content:authority': string;
252
- 'content:expertise': string;
253
- 'content:trustworthiness': string;
254
- };
255
- export declare const generateAdvancedSEO: (config: AdvancedSEOConfig) => {
256
- structuredData: {
257
- product: {
258
- '@context': string;
259
- '@type': string;
260
- name: string;
261
- applicationCategory: string;
262
- operatingSystem: string;
263
- description: string;
264
- url: string;
265
- downloadUrl: string;
266
- installUrl: string;
267
- screenshot: string;
268
- aggregateRating: {
269
- '@type': string;
270
- ratingValue: string;
271
- reviewCount: string;
272
- bestRating: string;
273
- worstRating: string;
274
- };
275
- offers: ({
276
- '@type': string;
277
- name: string;
278
- description: string;
279
- price: string;
280
- priceCurrency: string;
281
- availability: string;
282
- billingIncrement?: undefined;
283
- } | {
284
- '@type': string;
285
- name: string;
286
- description: string;
287
- price: string;
288
- priceCurrency: string;
289
- billingIncrement: string;
290
- availability: string;
291
- })[];
292
- featureList: string[];
293
- applicationSubCategory: string;
294
- audience: {
295
- '@type': string;
296
- audienceType: string;
297
- geographicArea: string;
298
- };
299
- creator: {
300
- '@type': string;
301
- name: string;
302
- url: string;
303
- };
304
- datePublished: string;
305
- dateModified: string;
306
- version: string;
307
- softwareRequirements: string;
308
- storageRequirements: string;
309
- memoryRequirements: string;
310
- supportingData: {
311
- blockchainNetworks: string[];
312
- supportedWallets: string[];
313
- smartContractSupport: boolean;
314
- ensCompatible: boolean;
315
- snsCompatible: boolean;
316
- };
317
- };
318
- article: {
319
- '@context': string;
320
- '@type': string;
321
- headline: string;
322
- description: string;
323
- author: {
324
- '@type': string;
325
- name: string;
326
- url: string;
327
- logo: {
328
- '@type': string;
329
- url: string;
330
- };
331
- };
332
- publisher: {
333
- '@type': string;
334
- name: string;
335
- logo: {
336
- '@type': string;
337
- url: string;
338
- width: number;
339
- height: number;
340
- };
341
- };
342
- datePublished: string;
343
- dateModified: string;
344
- mainEntityOfPage: {
345
- '@type': string;
346
- '@id': string;
347
- };
348
- image: {
349
- '@type': string;
350
- url: string;
351
- width: number;
352
- height: number;
353
- };
354
- keywords: string;
355
- about: {
356
- '@type': string;
357
- name: string;
358
- }[];
359
- audience: {
360
- '@type': string;
361
- audienceType: string;
362
- educationalLevel: "intermediate" | "beginner" | "advanced";
363
- };
364
- educationalLevel: "intermediate" | "beginner" | "advanced";
365
- proficiencyLevel: "intermediate" | "beginner" | "advanced";
366
- learningResourceType: "feature" | "guide" | "reference" | "tutorial" | "overview";
367
- timeRequired: string;
368
- inLanguage: string;
369
- isAccessibleForFree: boolean;
370
- license: string;
371
- teaches: string[];
372
- };
373
- aiOptimized: {
374
- '@context': string;
375
- '@type': string;
376
- name: string;
377
- description: string;
378
- url: string;
379
- primaryImageOfPage: {
380
- '@type': string;
381
- url: string;
382
- };
383
- significantLink: string[];
384
- relatedLink: string[];
385
- about: {
386
- '@type': string;
387
- name: string;
388
- description: string;
389
- sameAs: string[];
390
- };
391
- mentions: {
392
- '@type': string;
393
- name: string;
394
- }[];
395
- isPartOf: {
396
- '@type': string;
397
- '@id': string;
398
- name: string;
399
- };
400
- potentialAction: {
401
- '@type': string;
402
- target: {
403
- '@type': string;
404
- urlTemplate: string;
405
- actionPlatform: string[];
406
- };
407
- name: string;
408
- };
409
- };
410
- };
411
- openGraph: {
412
- 'og:title': string;
413
- 'og:description': string;
414
- 'og:type': string;
415
- 'og:url': string;
416
- 'og:image': string;
417
- 'og:image:width': string;
418
- 'og:image:height': string;
419
- 'og:image:alt': string;
420
- 'og:site_name': string;
421
- 'og:locale': string;
422
- 'article:author': string;
423
- 'article:section': string;
424
- 'article:tag': string;
425
- 'article:published_time': string;
426
- 'article:modified_time': string;
427
- };
428
- twitterCard: {
429
- 'twitter:card': string;
430
- 'twitter:site': string;
431
- 'twitter:creator': string;
432
- 'twitter:title': string;
433
- 'twitter:description': string;
434
- 'twitter:image': string;
435
- 'twitter:image:alt': string;
436
- 'twitter:label1': string;
437
- 'twitter:data1': string;
438
- 'twitter:label2': string;
439
- 'twitter:data2': string;
440
- };
441
- aiMetaTags: {
442
- 'ai:content-type': "feature" | "guide" | "reference" | "tutorial" | "overview";
443
- 'ai:complexity': "intermediate" | "beginner" | "advanced";
444
- 'ai:category': string;
445
- 'ai:audience': string;
446
- 'ai:keywords': string;
447
- 'ai:reading-time': string;
448
- 'web3:platform': string;
449
- 'web3:networks': string;
450
- 'web3:wallets': string;
451
- 'web3:features': string;
452
- 'llm:context': string;
453
- 'llm:domain': string;
454
- 'llm:use-case': string;
455
- 'semantic:topic': string;
456
- 'semantic:intent': string;
457
- 'semantic:entities': string;
458
- 'content:freshness': string;
459
- 'content:authority': string;
460
- 'content:expertise': string;
461
- 'content:trustworthiness': string;
462
- };
463
- jsonLD: ({
464
- '@context': string;
465
- '@type': string;
466
- name: string;
467
- applicationCategory: string;
468
- operatingSystem: string;
469
- description: string;
470
- url: string;
471
- downloadUrl: string;
472
- installUrl: string;
473
- screenshot: string;
474
- aggregateRating: {
475
- '@type': string;
476
- ratingValue: string;
477
- reviewCount: string;
478
- bestRating: string;
479
- worstRating: string;
480
- };
481
- offers: ({
482
- '@type': string;
483
- name: string;
484
- description: string;
485
- price: string;
486
- priceCurrency: string;
487
- availability: string;
488
- billingIncrement?: undefined;
489
- } | {
490
- '@type': string;
491
- name: string;
492
- description: string;
493
- price: string;
494
- priceCurrency: string;
495
- billingIncrement: string;
496
- availability: string;
497
- })[];
498
- featureList: string[];
499
- applicationSubCategory: string;
500
- audience: {
501
- '@type': string;
502
- audienceType: string;
503
- geographicArea: string;
504
- };
505
- creator: {
506
- '@type': string;
507
- name: string;
508
- url: string;
509
- };
510
- datePublished: string;
511
- dateModified: string;
512
- version: string;
513
- softwareRequirements: string;
514
- storageRequirements: string;
515
- memoryRequirements: string;
516
- supportingData: {
517
- blockchainNetworks: string[];
518
- supportedWallets: string[];
519
- smartContractSupport: boolean;
520
- ensCompatible: boolean;
521
- snsCompatible: boolean;
522
- };
523
- } | {
524
- '@context': string;
525
- '@type': string;
526
- headline: string;
527
- description: string;
528
- author: {
529
- '@type': string;
530
- name: string;
531
- url: string;
532
- logo: {
533
- '@type': string;
534
- url: string;
535
- };
536
- };
537
- publisher: {
538
- '@type': string;
539
- name: string;
540
- logo: {
541
- '@type': string;
542
- url: string;
543
- width: number;
544
- height: number;
545
- };
546
- };
547
- datePublished: string;
548
- dateModified: string;
549
- mainEntityOfPage: {
550
- '@type': string;
551
- '@id': string;
552
- };
553
- image: {
554
- '@type': string;
555
- url: string;
556
- width: number;
557
- height: number;
558
- };
559
- keywords: string;
560
- about: {
561
- '@type': string;
562
- name: string;
563
- }[];
564
- audience: {
565
- '@type': string;
566
- audienceType: string;
567
- educationalLevel: "intermediate" | "beginner" | "advanced";
568
- };
569
- educationalLevel: "intermediate" | "beginner" | "advanced";
570
- proficiencyLevel: "intermediate" | "beginner" | "advanced";
571
- learningResourceType: "feature" | "guide" | "reference" | "tutorial" | "overview";
572
- timeRequired: string;
573
- inLanguage: string;
574
- isAccessibleForFree: boolean;
575
- license: string;
576
- teaches: string[];
577
- } | {
578
- '@context': string;
579
- '@type': string;
580
- name: string;
581
- description: string;
582
- url: string;
583
- primaryImageOfPage: {
584
- '@type': string;
585
- url: string;
586
- };
587
- significantLink: string[];
588
- relatedLink: string[];
589
- about: {
590
- '@type': string;
591
- name: string;
592
- description: string;
593
- sameAs: string[];
594
- };
595
- mentions: {
596
- '@type': string;
597
- name: string;
598
- }[];
599
- isPartOf: {
600
- '@type': string;
601
- '@id': string;
602
- name: string;
603
- };
604
- potentialAction: {
605
- '@type': string;
606
- target: {
607
- '@type': string;
608
- urlTemplate: string;
609
- actionPlatform: string[];
610
- };
611
- name: string;
612
- };
613
- })[];
614
- };
615
- export declare const pageSEOConfigs: {
616
- homepage: {
617
- title: string;
618
- description: string;
619
- keywords: string[];
620
- category: string;
621
- audience: string[];
622
- complexity: "beginner";
623
- contentType: "overview";
624
- readingTime: number;
625
- relatedTopics: string[];
626
- };
627
- documentation: {
628
- title: string;
629
- description: string;
630
- keywords: string[];
631
- category: string;
632
- audience: string[];
633
- complexity: "intermediate";
634
- contentType: "guide";
635
- readingTime: number;
636
- relatedTopics: string[];
637
- };
638
- earnPoints: {
639
- title: string;
640
- description: string;
641
- keywords: string[];
642
- category: string;
643
- audience: string[];
644
- complexity: "beginner";
645
- contentType: "tutorial";
646
- readingTime: number;
647
- relatedTopics: string[];
648
- };
649
- };
650
- declare const _default: {
651
- generateAdvancedSEO: (config: AdvancedSEOConfig) => {
652
- structuredData: {
653
- product: {
654
- '@context': string;
655
- '@type': string;
656
- name: string;
657
- applicationCategory: string;
658
- operatingSystem: string;
659
- description: string;
660
- url: string;
661
- downloadUrl: string;
662
- installUrl: string;
663
- screenshot: string;
664
- aggregateRating: {
665
- '@type': string;
666
- ratingValue: string;
667
- reviewCount: string;
668
- bestRating: string;
669
- worstRating: string;
670
- };
671
- offers: ({
672
- '@type': string;
673
- name: string;
674
- description: string;
675
- price: string;
676
- priceCurrency: string;
677
- availability: string;
678
- billingIncrement?: undefined;
679
- } | {
680
- '@type': string;
681
- name: string;
682
- description: string;
683
- price: string;
684
- priceCurrency: string;
685
- billingIncrement: string;
686
- availability: string;
687
- })[];
688
- featureList: string[];
689
- applicationSubCategory: string;
690
- audience: {
691
- '@type': string;
692
- audienceType: string;
693
- geographicArea: string;
694
- };
695
- creator: {
696
- '@type': string;
697
- name: string;
698
- url: string;
699
- };
700
- datePublished: string;
701
- dateModified: string;
702
- version: string;
703
- softwareRequirements: string;
704
- storageRequirements: string;
705
- memoryRequirements: string;
706
- supportingData: {
707
- blockchainNetworks: string[];
708
- supportedWallets: string[];
709
- smartContractSupport: boolean;
710
- ensCompatible: boolean;
711
- snsCompatible: boolean;
712
- };
713
- };
714
- article: {
715
- '@context': string;
716
- '@type': string;
717
- headline: string;
718
- description: string;
719
- author: {
720
- '@type': string;
721
- name: string;
722
- url: string;
723
- logo: {
724
- '@type': string;
725
- url: string;
726
- };
727
- };
728
- publisher: {
729
- '@type': string;
730
- name: string;
731
- logo: {
732
- '@type': string;
733
- url: string;
734
- width: number;
735
- height: number;
736
- };
737
- };
738
- datePublished: string;
739
- dateModified: string;
740
- mainEntityOfPage: {
741
- '@type': string;
742
- '@id': string;
743
- };
744
- image: {
745
- '@type': string;
746
- url: string;
747
- width: number;
748
- height: number;
749
- };
750
- keywords: string;
751
- about: {
752
- '@type': string;
753
- name: string;
754
- }[];
755
- audience: {
756
- '@type': string;
757
- audienceType: string;
758
- educationalLevel: "intermediate" | "beginner" | "advanced";
759
- };
760
- educationalLevel: "intermediate" | "beginner" | "advanced";
761
- proficiencyLevel: "intermediate" | "beginner" | "advanced";
762
- learningResourceType: "feature" | "guide" | "reference" | "tutorial" | "overview";
763
- timeRequired: string;
764
- inLanguage: string;
765
- isAccessibleForFree: boolean;
766
- license: string;
767
- teaches: string[];
768
- };
769
- aiOptimized: {
770
- '@context': string;
771
- '@type': string;
772
- name: string;
773
- description: string;
774
- url: string;
775
- primaryImageOfPage: {
776
- '@type': string;
777
- url: string;
778
- };
779
- significantLink: string[];
780
- relatedLink: string[];
781
- about: {
782
- '@type': string;
783
- name: string;
784
- description: string;
785
- sameAs: string[];
786
- };
787
- mentions: {
788
- '@type': string;
789
- name: string;
790
- }[];
791
- isPartOf: {
792
- '@type': string;
793
- '@id': string;
794
- name: string;
795
- };
796
- potentialAction: {
797
- '@type': string;
798
- target: {
799
- '@type': string;
800
- urlTemplate: string;
801
- actionPlatform: string[];
802
- };
803
- name: string;
804
- };
805
- };
806
- };
807
- openGraph: {
808
- 'og:title': string;
809
- 'og:description': string;
810
- 'og:type': string;
811
- 'og:url': string;
812
- 'og:image': string;
813
- 'og:image:width': string;
814
- 'og:image:height': string;
815
- 'og:image:alt': string;
816
- 'og:site_name': string;
817
- 'og:locale': string;
818
- 'article:author': string;
819
- 'article:section': string;
820
- 'article:tag': string;
821
- 'article:published_time': string;
822
- 'article:modified_time': string;
823
- };
824
- twitterCard: {
825
- 'twitter:card': string;
826
- 'twitter:site': string;
827
- 'twitter:creator': string;
828
- 'twitter:title': string;
829
- 'twitter:description': string;
830
- 'twitter:image': string;
831
- 'twitter:image:alt': string;
832
- 'twitter:label1': string;
833
- 'twitter:data1': string;
834
- 'twitter:label2': string;
835
- 'twitter:data2': string;
836
- };
837
- aiMetaTags: {
838
- 'ai:content-type': "feature" | "guide" | "reference" | "tutorial" | "overview";
839
- 'ai:complexity': "intermediate" | "beginner" | "advanced";
840
- 'ai:category': string;
841
- 'ai:audience': string;
842
- 'ai:keywords': string;
843
- 'ai:reading-time': string;
844
- 'web3:platform': string;
845
- 'web3:networks': string;
846
- 'web3:wallets': string;
847
- 'web3:features': string;
848
- 'llm:context': string;
849
- 'llm:domain': string;
850
- 'llm:use-case': string;
851
- 'semantic:topic': string;
852
- 'semantic:intent': string;
853
- 'semantic:entities': string;
854
- 'content:freshness': string;
855
- 'content:authority': string;
856
- 'content:expertise': string;
857
- 'content:trustworthiness': string;
858
- };
859
- jsonLD: ({
860
- '@context': string;
861
- '@type': string;
862
- name: string;
863
- applicationCategory: string;
864
- operatingSystem: string;
865
- description: string;
866
- url: string;
867
- downloadUrl: string;
868
- installUrl: string;
869
- screenshot: string;
870
- aggregateRating: {
871
- '@type': string;
872
- ratingValue: string;
873
- reviewCount: string;
874
- bestRating: string;
875
- worstRating: string;
876
- };
877
- offers: ({
878
- '@type': string;
879
- name: string;
880
- description: string;
881
- price: string;
882
- priceCurrency: string;
883
- availability: string;
884
- billingIncrement?: undefined;
885
- } | {
886
- '@type': string;
887
- name: string;
888
- description: string;
889
- price: string;
890
- priceCurrency: string;
891
- billingIncrement: string;
892
- availability: string;
893
- })[];
894
- featureList: string[];
895
- applicationSubCategory: string;
896
- audience: {
897
- '@type': string;
898
- audienceType: string;
899
- geographicArea: string;
900
- };
901
- creator: {
902
- '@type': string;
903
- name: string;
904
- url: string;
905
- };
906
- datePublished: string;
907
- dateModified: string;
908
- version: string;
909
- softwareRequirements: string;
910
- storageRequirements: string;
911
- memoryRequirements: string;
912
- supportingData: {
913
- blockchainNetworks: string[];
914
- supportedWallets: string[];
915
- smartContractSupport: boolean;
916
- ensCompatible: boolean;
917
- snsCompatible: boolean;
918
- };
919
- } | {
920
- '@context': string;
921
- '@type': string;
922
- headline: string;
923
- description: string;
924
- author: {
925
- '@type': string;
926
- name: string;
927
- url: string;
928
- logo: {
929
- '@type': string;
930
- url: string;
931
- };
932
- };
933
- publisher: {
934
- '@type': string;
935
- name: string;
936
- logo: {
937
- '@type': string;
938
- url: string;
939
- width: number;
940
- height: number;
941
- };
942
- };
943
- datePublished: string;
944
- dateModified: string;
945
- mainEntityOfPage: {
946
- '@type': string;
947
- '@id': string;
948
- };
949
- image: {
950
- '@type': string;
951
- url: string;
952
- width: number;
953
- height: number;
954
- };
955
- keywords: string;
956
- about: {
957
- '@type': string;
958
- name: string;
959
- }[];
960
- audience: {
961
- '@type': string;
962
- audienceType: string;
963
- educationalLevel: "intermediate" | "beginner" | "advanced";
964
- };
965
- educationalLevel: "intermediate" | "beginner" | "advanced";
966
- proficiencyLevel: "intermediate" | "beginner" | "advanced";
967
- learningResourceType: "feature" | "guide" | "reference" | "tutorial" | "overview";
968
- timeRequired: string;
969
- inLanguage: string;
970
- isAccessibleForFree: boolean;
971
- license: string;
972
- teaches: string[];
973
- } | {
974
- '@context': string;
975
- '@type': string;
976
- name: string;
977
- description: string;
978
- url: string;
979
- primaryImageOfPage: {
980
- '@type': string;
981
- url: string;
982
- };
983
- significantLink: string[];
984
- relatedLink: string[];
985
- about: {
986
- '@type': string;
987
- name: string;
988
- description: string;
989
- sameAs: string[];
990
- };
991
- mentions: {
992
- '@type': string;
993
- name: string;
994
- }[];
995
- isPartOf: {
996
- '@type': string;
997
- '@id': string;
998
- name: string;
999
- };
1000
- potentialAction: {
1001
- '@type': string;
1002
- target: {
1003
- '@type': string;
1004
- urlTemplate: string;
1005
- actionPlatform: string[];
1006
- };
1007
- name: string;
1008
- };
1009
- })[];
1010
- };
1011
- createEnhancedFAQSchema: (faqs: Array<{
1012
- question: string;
1013
- answer: string;
1014
- category?: string;
1015
- }>, branding: AppBrandingConfig) => {
1016
- '@context': string;
1017
- '@type': string;
1018
- mainEntity: {
1019
- '@type': string;
1020
- name: string;
1021
- acceptedAnswer: {
1022
- '@type': string;
1023
- text: string;
1024
- dateCreated: string;
1025
- upvoteCount: number;
1026
- author: {
1027
- '@type': string;
1028
- name: string;
1029
- };
1030
- };
1031
- answerCount: number;
1032
- upvoteCount: number;
1033
- dateCreated: string;
1034
- category: string;
1035
- }[];
1036
- };
1037
- pageSEOConfigs: {
1038
- homepage: {
1039
- title: string;
1040
- description: string;
1041
- keywords: string[];
1042
- category: string;
1043
- audience: string[];
1044
- complexity: "beginner";
1045
- contentType: "overview";
1046
- readingTime: number;
1047
- relatedTopics: string[];
1048
- };
1049
- documentation: {
1050
- title: string;
1051
- description: string;
1052
- keywords: string[];
1053
- category: string;
1054
- audience: string[];
1055
- complexity: "intermediate";
1056
- contentType: "guide";
1057
- readingTime: number;
1058
- relatedTopics: string[];
1059
- };
1060
- earnPoints: {
1061
- title: string;
1062
- description: string;
1063
- keywords: string[];
1064
- category: string;
1065
- audience: string[];
1066
- complexity: "beginner";
1067
- contentType: "tutorial";
1068
- readingTime: number;
1069
- relatedTopics: string[];
1070
- };
1071
- };
1072
- };
1073
- export default _default;
1074
- //# sourceMappingURL=advancedSEO.d.ts.map