@adkinn/astro-ai-readiness 0.0.7 → 0.0.9
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.
- package/README.md +29 -13
- package/dist/{chunk-CADNETPK.js → chunk-4PXOR6CE.js} +11 -2
- package/dist/{chunk-THSVWYUX.js → chunk-4VPGX5IP.js} +3 -2
- package/dist/{chunk-WP6D4L7O.js → chunk-WYKIPW5J.js} +3 -2
- package/dist/{chunk-CO2DB4IE.js → chunk-XYQNZKKD.js} +56 -3
- package/dist/components/OrganizationSchema.astro +37 -20
- package/dist/components/PersonSchema.astro +26 -0
- package/dist/components/SoftwareApplicationSchema.astro +64 -0
- package/dist/components/WebSiteSchema.astro +8 -2
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +14 -10
- package/dist/components/types.d.ts +2 -0
- package/dist/config.d.ts +756 -38
- package/dist/config.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/outputs/agents-md.js +1 -1
- package/dist/outputs/llms-full.js +1 -1
- package/dist/outputs/llms-txt.js +1 -1
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -20,77 +20,243 @@ declare const founderSchema: z.ZodObject<{
|
|
|
20
20
|
name: z.ZodString;
|
|
21
21
|
jobTitle: z.ZodOptional<z.ZodString>;
|
|
22
22
|
description: z.ZodOptional<z.ZodString>;
|
|
23
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
23
24
|
sameAs: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
24
25
|
}, "strip", z.ZodTypeAny, {
|
|
25
26
|
name: string;
|
|
26
|
-
|
|
27
|
+
url?: string | undefined;
|
|
27
28
|
description?: string | undefined;
|
|
29
|
+
jobTitle?: string | undefined;
|
|
28
30
|
sameAs?: string[] | undefined;
|
|
29
31
|
}, {
|
|
30
32
|
name: string;
|
|
31
|
-
|
|
33
|
+
url?: string | undefined;
|
|
32
34
|
description?: string | undefined;
|
|
35
|
+
jobTitle?: string | undefined;
|
|
33
36
|
sameAs?: string[] | undefined;
|
|
34
37
|
}>;
|
|
38
|
+
declare const contactPointSchema: z.ZodObject<{
|
|
39
|
+
contactType: z.ZodString;
|
|
40
|
+
email: z.ZodOptional<z.ZodString>;
|
|
41
|
+
telephone: z.ZodOptional<z.ZodString>;
|
|
42
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
43
|
+
}, "strict", z.ZodTypeAny, {
|
|
44
|
+
contactType: string;
|
|
45
|
+
url?: string | undefined;
|
|
46
|
+
email?: string | undefined;
|
|
47
|
+
telephone?: string | undefined;
|
|
48
|
+
}, {
|
|
49
|
+
contactType: string;
|
|
50
|
+
url?: string | undefined;
|
|
51
|
+
email?: string | undefined;
|
|
52
|
+
telephone?: string | undefined;
|
|
53
|
+
}>;
|
|
35
54
|
declare const organizationSchema: z.ZodObject<{
|
|
36
55
|
name: z.ZodString;
|
|
37
56
|
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
38
57
|
logo: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
58
|
+
description: z.ZodOptional<z.ZodString>;
|
|
39
59
|
founder: z.ZodOptional<z.ZodObject<{
|
|
40
60
|
name: z.ZodString;
|
|
41
61
|
jobTitle: z.ZodOptional<z.ZodString>;
|
|
42
62
|
description: z.ZodOptional<z.ZodString>;
|
|
63
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
43
64
|
sameAs: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
44
65
|
}, "strip", z.ZodTypeAny, {
|
|
45
66
|
name: string;
|
|
46
|
-
|
|
67
|
+
url?: string | undefined;
|
|
47
68
|
description?: string | undefined;
|
|
69
|
+
jobTitle?: string | undefined;
|
|
48
70
|
sameAs?: string[] | undefined;
|
|
49
71
|
}, {
|
|
50
72
|
name: string;
|
|
51
|
-
|
|
73
|
+
url?: string | undefined;
|
|
52
74
|
description?: string | undefined;
|
|
75
|
+
jobTitle?: string | undefined;
|
|
53
76
|
sameAs?: string[] | undefined;
|
|
54
77
|
}>>;
|
|
55
78
|
foundingDate: z.ZodOptional<z.ZodString>;
|
|
56
79
|
knowsAbout: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
57
80
|
areaServed: z.ZodOptional<z.ZodString>;
|
|
81
|
+
contactPoint: z.ZodOptional<z.ZodObject<{
|
|
82
|
+
contactType: z.ZodString;
|
|
83
|
+
email: z.ZodOptional<z.ZodString>;
|
|
84
|
+
telephone: z.ZodOptional<z.ZodString>;
|
|
85
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
86
|
+
}, "strict", z.ZodTypeAny, {
|
|
87
|
+
contactType: string;
|
|
88
|
+
url?: string | undefined;
|
|
89
|
+
email?: string | undefined;
|
|
90
|
+
telephone?: string | undefined;
|
|
91
|
+
}, {
|
|
92
|
+
contactType: string;
|
|
93
|
+
url?: string | undefined;
|
|
94
|
+
email?: string | undefined;
|
|
95
|
+
telephone?: string | undefined;
|
|
96
|
+
}>>;
|
|
58
97
|
}, "strict", z.ZodTypeAny, {
|
|
59
98
|
name: string;
|
|
60
99
|
url?: string | undefined;
|
|
61
100
|
logo?: string | undefined;
|
|
101
|
+
description?: string | undefined;
|
|
62
102
|
founder?: {
|
|
63
103
|
name: string;
|
|
64
|
-
|
|
104
|
+
url?: string | undefined;
|
|
65
105
|
description?: string | undefined;
|
|
106
|
+
jobTitle?: string | undefined;
|
|
66
107
|
sameAs?: string[] | undefined;
|
|
67
108
|
} | undefined;
|
|
68
109
|
foundingDate?: string | undefined;
|
|
69
110
|
knowsAbout?: string[] | undefined;
|
|
70
111
|
areaServed?: string | undefined;
|
|
112
|
+
contactPoint?: {
|
|
113
|
+
contactType: string;
|
|
114
|
+
url?: string | undefined;
|
|
115
|
+
email?: string | undefined;
|
|
116
|
+
telephone?: string | undefined;
|
|
117
|
+
} | undefined;
|
|
71
118
|
}, {
|
|
72
119
|
name: string;
|
|
73
120
|
url?: string | undefined;
|
|
74
121
|
logo?: string | undefined;
|
|
122
|
+
description?: string | undefined;
|
|
75
123
|
founder?: {
|
|
76
124
|
name: string;
|
|
77
|
-
|
|
125
|
+
url?: string | undefined;
|
|
78
126
|
description?: string | undefined;
|
|
127
|
+
jobTitle?: string | undefined;
|
|
79
128
|
sameAs?: string[] | undefined;
|
|
80
129
|
} | undefined;
|
|
81
130
|
foundingDate?: string | undefined;
|
|
82
131
|
knowsAbout?: string[] | undefined;
|
|
83
132
|
areaServed?: string | undefined;
|
|
133
|
+
contactPoint?: {
|
|
134
|
+
contactType: string;
|
|
135
|
+
url?: string | undefined;
|
|
136
|
+
email?: string | undefined;
|
|
137
|
+
telephone?: string | undefined;
|
|
138
|
+
} | undefined;
|
|
139
|
+
}>;
|
|
140
|
+
declare const personSchema: z.ZodObject<{
|
|
141
|
+
name: z.ZodString;
|
|
142
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
143
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
144
|
+
description: z.ZodOptional<z.ZodString>;
|
|
145
|
+
image: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
146
|
+
sameAs: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
147
|
+
knowsAbout: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
148
|
+
}, "strict", z.ZodTypeAny, {
|
|
149
|
+
name: string;
|
|
150
|
+
url?: string | undefined;
|
|
151
|
+
description?: string | undefined;
|
|
152
|
+
jobTitle?: string | undefined;
|
|
153
|
+
sameAs?: string[] | undefined;
|
|
154
|
+
knowsAbout?: string[] | undefined;
|
|
155
|
+
image?: string | undefined;
|
|
156
|
+
}, {
|
|
157
|
+
name: string;
|
|
158
|
+
url?: string | undefined;
|
|
159
|
+
description?: string | undefined;
|
|
160
|
+
jobTitle?: string | undefined;
|
|
161
|
+
sameAs?: string[] | undefined;
|
|
162
|
+
knowsAbout?: string[] | undefined;
|
|
163
|
+
image?: string | undefined;
|
|
84
164
|
}>;
|
|
85
165
|
declare const webSiteSchema: z.ZodObject<{
|
|
86
166
|
name: z.ZodOptional<z.ZodString>;
|
|
87
167
|
description: z.ZodOptional<z.ZodString>;
|
|
168
|
+
inLanguage: z.ZodOptional<z.ZodString>;
|
|
88
169
|
}, "strict", z.ZodTypeAny, {
|
|
89
170
|
name?: string | undefined;
|
|
90
171
|
description?: string | undefined;
|
|
172
|
+
inLanguage?: string | undefined;
|
|
91
173
|
}, {
|
|
92
174
|
name?: string | undefined;
|
|
93
175
|
description?: string | undefined;
|
|
176
|
+
inLanguage?: string | undefined;
|
|
177
|
+
}>;
|
|
178
|
+
declare const softwareApplicationSchema: z.ZodObject<{
|
|
179
|
+
name: z.ZodString;
|
|
180
|
+
applicationCategory: z.ZodOptional<z.ZodString>;
|
|
181
|
+
applicationSubCategory: z.ZodOptional<z.ZodString>;
|
|
182
|
+
operatingSystem: z.ZodOptional<z.ZodString>;
|
|
183
|
+
description: z.ZodOptional<z.ZodString>;
|
|
184
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
185
|
+
image: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
186
|
+
screenshot: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
187
|
+
featureList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
188
|
+
offers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
189
|
+
name: z.ZodOptional<z.ZodString>;
|
|
190
|
+
price: z.ZodString;
|
|
191
|
+
priceCurrency: z.ZodString;
|
|
192
|
+
description: z.ZodOptional<z.ZodString>;
|
|
193
|
+
}, "strict", z.ZodTypeAny, {
|
|
194
|
+
price: string;
|
|
195
|
+
priceCurrency: string;
|
|
196
|
+
name?: string | undefined;
|
|
197
|
+
description?: string | undefined;
|
|
198
|
+
}, {
|
|
199
|
+
price: string;
|
|
200
|
+
priceCurrency: string;
|
|
201
|
+
name?: string | undefined;
|
|
202
|
+
description?: string | undefined;
|
|
203
|
+
}>, "many">>;
|
|
204
|
+
installUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
205
|
+
downloadUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
206
|
+
aggregateRating: z.ZodOptional<z.ZodObject<{
|
|
207
|
+
ratingValue: z.ZodNumber;
|
|
208
|
+
ratingCount: z.ZodNumber;
|
|
209
|
+
}, "strict", z.ZodTypeAny, {
|
|
210
|
+
ratingValue: number;
|
|
211
|
+
ratingCount: number;
|
|
212
|
+
}, {
|
|
213
|
+
ratingValue: number;
|
|
214
|
+
ratingCount: number;
|
|
215
|
+
}>>;
|
|
216
|
+
}, "strict", z.ZodTypeAny, {
|
|
217
|
+
name: string;
|
|
218
|
+
url?: string | undefined;
|
|
219
|
+
description?: string | undefined;
|
|
220
|
+
image?: string | undefined;
|
|
221
|
+
applicationCategory?: string | undefined;
|
|
222
|
+
applicationSubCategory?: string | undefined;
|
|
223
|
+
operatingSystem?: string | undefined;
|
|
224
|
+
screenshot?: string[] | undefined;
|
|
225
|
+
featureList?: string[] | undefined;
|
|
226
|
+
offers?: {
|
|
227
|
+
price: string;
|
|
228
|
+
priceCurrency: string;
|
|
229
|
+
name?: string | undefined;
|
|
230
|
+
description?: string | undefined;
|
|
231
|
+
}[] | undefined;
|
|
232
|
+
installUrl?: string | undefined;
|
|
233
|
+
downloadUrl?: string | undefined;
|
|
234
|
+
aggregateRating?: {
|
|
235
|
+
ratingValue: number;
|
|
236
|
+
ratingCount: number;
|
|
237
|
+
} | undefined;
|
|
238
|
+
}, {
|
|
239
|
+
name: string;
|
|
240
|
+
url?: string | undefined;
|
|
241
|
+
description?: string | undefined;
|
|
242
|
+
image?: string | undefined;
|
|
243
|
+
applicationCategory?: string | undefined;
|
|
244
|
+
applicationSubCategory?: string | undefined;
|
|
245
|
+
operatingSystem?: string | undefined;
|
|
246
|
+
screenshot?: string[] | undefined;
|
|
247
|
+
featureList?: string[] | undefined;
|
|
248
|
+
offers?: {
|
|
249
|
+
price: string;
|
|
250
|
+
priceCurrency: string;
|
|
251
|
+
name?: string | undefined;
|
|
252
|
+
description?: string | undefined;
|
|
253
|
+
}[] | undefined;
|
|
254
|
+
installUrl?: string | undefined;
|
|
255
|
+
downloadUrl?: string | undefined;
|
|
256
|
+
aggregateRating?: {
|
|
257
|
+
ratingValue: number;
|
|
258
|
+
ratingCount: number;
|
|
259
|
+
} | undefined;
|
|
94
260
|
}>;
|
|
95
261
|
declare const llmsTxtSchema: z.ZodObject<{
|
|
96
262
|
summary: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -181,32 +347,32 @@ declare const llmsFullSchema: z.ZodEffects<z.ZodObject<{
|
|
|
181
347
|
content: string;
|
|
182
348
|
}>, "many">>;
|
|
183
349
|
}, "strict", z.ZodTypeAny, {
|
|
184
|
-
title?: string | undefined;
|
|
185
350
|
summary?: string | undefined;
|
|
351
|
+
title?: string | undefined;
|
|
186
352
|
sections?: {
|
|
187
353
|
title: string;
|
|
188
354
|
content: string;
|
|
189
355
|
}[] | undefined;
|
|
190
356
|
content?: string | undefined;
|
|
191
357
|
}, {
|
|
192
|
-
title?: string | undefined;
|
|
193
358
|
summary?: string | undefined;
|
|
359
|
+
title?: string | undefined;
|
|
194
360
|
sections?: {
|
|
195
361
|
title: string;
|
|
196
362
|
content: string;
|
|
197
363
|
}[] | undefined;
|
|
198
364
|
content?: string | undefined;
|
|
199
365
|
}>, {
|
|
200
|
-
title?: string | undefined;
|
|
201
366
|
summary?: string | undefined;
|
|
367
|
+
title?: string | undefined;
|
|
202
368
|
sections?: {
|
|
203
369
|
title: string;
|
|
204
370
|
content: string;
|
|
205
371
|
}[] | undefined;
|
|
206
372
|
content?: string | undefined;
|
|
207
373
|
}, {
|
|
208
|
-
title?: string | undefined;
|
|
209
374
|
summary?: string | undefined;
|
|
375
|
+
title?: string | undefined;
|
|
210
376
|
sections?: {
|
|
211
377
|
title: string;
|
|
212
378
|
content: string;
|
|
@@ -216,6 +382,16 @@ declare const llmsFullSchema: z.ZodEffects<z.ZodObject<{
|
|
|
216
382
|
declare const agentsMdSchema: z.ZodObject<{
|
|
217
383
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
218
384
|
audience: z.ZodOptional<z.ZodString>;
|
|
385
|
+
sections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
386
|
+
title: z.ZodString;
|
|
387
|
+
content: z.ZodString;
|
|
388
|
+
}, "strict", z.ZodTypeAny, {
|
|
389
|
+
title: string;
|
|
390
|
+
content: string;
|
|
391
|
+
}, {
|
|
392
|
+
title: string;
|
|
393
|
+
content: string;
|
|
394
|
+
}>, "many">>;
|
|
219
395
|
contact: z.ZodOptional<z.ZodString>;
|
|
220
396
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
221
397
|
title: z.ZodString;
|
|
@@ -237,6 +413,10 @@ declare const agentsMdSchema: z.ZodObject<{
|
|
|
237
413
|
title: string;
|
|
238
414
|
description?: string | undefined;
|
|
239
415
|
}[] | undefined;
|
|
416
|
+
sections?: {
|
|
417
|
+
title: string;
|
|
418
|
+
content: string;
|
|
419
|
+
}[] | undefined;
|
|
240
420
|
audience?: string | undefined;
|
|
241
421
|
contact?: string | undefined;
|
|
242
422
|
}, {
|
|
@@ -246,6 +426,10 @@ declare const agentsMdSchema: z.ZodObject<{
|
|
|
246
426
|
title: string;
|
|
247
427
|
description?: string | undefined;
|
|
248
428
|
}[] | undefined;
|
|
429
|
+
sections?: {
|
|
430
|
+
title: string;
|
|
431
|
+
content: string;
|
|
432
|
+
}[] | undefined;
|
|
249
433
|
audience?: string | undefined;
|
|
250
434
|
contact?: string | undefined;
|
|
251
435
|
}>;
|
|
@@ -268,18 +452,18 @@ declare const mcpSchema: z.ZodObject<{
|
|
|
268
452
|
}>, "many">;
|
|
269
453
|
}, "strict", z.ZodTypeAny, {
|
|
270
454
|
name: string;
|
|
455
|
+
url: string;
|
|
271
456
|
description: string;
|
|
272
457
|
status: "active";
|
|
273
|
-
url: string;
|
|
274
458
|
tools: {
|
|
275
459
|
name: string;
|
|
276
460
|
description: string;
|
|
277
461
|
}[];
|
|
278
462
|
}, {
|
|
279
463
|
name: string;
|
|
464
|
+
url: string;
|
|
280
465
|
description: string;
|
|
281
466
|
status: "active";
|
|
282
|
-
url: string;
|
|
283
467
|
tools: {
|
|
284
468
|
name: string;
|
|
285
469
|
description: string;
|
|
@@ -318,9 +502,9 @@ declare const mcpSchema: z.ZodObject<{
|
|
|
318
502
|
}, "strict", z.ZodTypeAny, {
|
|
319
503
|
servers: ({
|
|
320
504
|
name: string;
|
|
505
|
+
url: string;
|
|
321
506
|
description: string;
|
|
322
507
|
status: "active";
|
|
323
|
-
url: string;
|
|
324
508
|
tools: {
|
|
325
509
|
name: string;
|
|
326
510
|
description: string;
|
|
@@ -338,9 +522,9 @@ declare const mcpSchema: z.ZodObject<{
|
|
|
338
522
|
}, {
|
|
339
523
|
servers: ({
|
|
340
524
|
name: string;
|
|
525
|
+
url: string;
|
|
341
526
|
description: string;
|
|
342
527
|
status: "active";
|
|
343
|
-
url: string;
|
|
344
528
|
tools: {
|
|
345
529
|
name: string;
|
|
346
530
|
description: string;
|
|
@@ -437,67 +621,214 @@ declare const robotsTxtSchema: z.ZodObject<{
|
|
|
437
621
|
}[] | undefined;
|
|
438
622
|
additionalLines?: string[] | undefined;
|
|
439
623
|
}>;
|
|
440
|
-
declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
624
|
+
declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
441
625
|
site: z.ZodEffects<z.ZodString, string, string>;
|
|
442
|
-
organization: z.ZodObject<{
|
|
626
|
+
organization: z.ZodOptional<z.ZodObject<{
|
|
443
627
|
name: z.ZodString;
|
|
444
628
|
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
445
629
|
logo: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
630
|
+
description: z.ZodOptional<z.ZodString>;
|
|
446
631
|
founder: z.ZodOptional<z.ZodObject<{
|
|
447
632
|
name: z.ZodString;
|
|
448
633
|
jobTitle: z.ZodOptional<z.ZodString>;
|
|
449
634
|
description: z.ZodOptional<z.ZodString>;
|
|
635
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
450
636
|
sameAs: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
451
637
|
}, "strip", z.ZodTypeAny, {
|
|
452
638
|
name: string;
|
|
453
|
-
|
|
639
|
+
url?: string | undefined;
|
|
454
640
|
description?: string | undefined;
|
|
641
|
+
jobTitle?: string | undefined;
|
|
455
642
|
sameAs?: string[] | undefined;
|
|
456
643
|
}, {
|
|
457
644
|
name: string;
|
|
458
|
-
|
|
645
|
+
url?: string | undefined;
|
|
459
646
|
description?: string | undefined;
|
|
647
|
+
jobTitle?: string | undefined;
|
|
460
648
|
sameAs?: string[] | undefined;
|
|
461
649
|
}>>;
|
|
462
650
|
foundingDate: z.ZodOptional<z.ZodString>;
|
|
463
651
|
knowsAbout: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
464
652
|
areaServed: z.ZodOptional<z.ZodString>;
|
|
653
|
+
contactPoint: z.ZodOptional<z.ZodObject<{
|
|
654
|
+
contactType: z.ZodString;
|
|
655
|
+
email: z.ZodOptional<z.ZodString>;
|
|
656
|
+
telephone: z.ZodOptional<z.ZodString>;
|
|
657
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
658
|
+
}, "strict", z.ZodTypeAny, {
|
|
659
|
+
contactType: string;
|
|
660
|
+
url?: string | undefined;
|
|
661
|
+
email?: string | undefined;
|
|
662
|
+
telephone?: string | undefined;
|
|
663
|
+
}, {
|
|
664
|
+
contactType: string;
|
|
665
|
+
url?: string | undefined;
|
|
666
|
+
email?: string | undefined;
|
|
667
|
+
telephone?: string | undefined;
|
|
668
|
+
}>>;
|
|
465
669
|
}, "strict", z.ZodTypeAny, {
|
|
466
670
|
name: string;
|
|
467
671
|
url?: string | undefined;
|
|
468
672
|
logo?: string | undefined;
|
|
673
|
+
description?: string | undefined;
|
|
469
674
|
founder?: {
|
|
470
675
|
name: string;
|
|
471
|
-
|
|
676
|
+
url?: string | undefined;
|
|
472
677
|
description?: string | undefined;
|
|
678
|
+
jobTitle?: string | undefined;
|
|
473
679
|
sameAs?: string[] | undefined;
|
|
474
680
|
} | undefined;
|
|
475
681
|
foundingDate?: string | undefined;
|
|
476
682
|
knowsAbout?: string[] | undefined;
|
|
477
683
|
areaServed?: string | undefined;
|
|
684
|
+
contactPoint?: {
|
|
685
|
+
contactType: string;
|
|
686
|
+
url?: string | undefined;
|
|
687
|
+
email?: string | undefined;
|
|
688
|
+
telephone?: string | undefined;
|
|
689
|
+
} | undefined;
|
|
478
690
|
}, {
|
|
479
691
|
name: string;
|
|
480
692
|
url?: string | undefined;
|
|
481
693
|
logo?: string | undefined;
|
|
694
|
+
description?: string | undefined;
|
|
482
695
|
founder?: {
|
|
483
696
|
name: string;
|
|
484
|
-
|
|
697
|
+
url?: string | undefined;
|
|
485
698
|
description?: string | undefined;
|
|
699
|
+
jobTitle?: string | undefined;
|
|
486
700
|
sameAs?: string[] | undefined;
|
|
487
701
|
} | undefined;
|
|
488
702
|
foundingDate?: string | undefined;
|
|
489
703
|
knowsAbout?: string[] | undefined;
|
|
490
704
|
areaServed?: string | undefined;
|
|
491
|
-
|
|
705
|
+
contactPoint?: {
|
|
706
|
+
contactType: string;
|
|
707
|
+
url?: string | undefined;
|
|
708
|
+
email?: string | undefined;
|
|
709
|
+
telephone?: string | undefined;
|
|
710
|
+
} | undefined;
|
|
711
|
+
}>>;
|
|
712
|
+
person: z.ZodOptional<z.ZodObject<{
|
|
713
|
+
name: z.ZodString;
|
|
714
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
715
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
716
|
+
description: z.ZodOptional<z.ZodString>;
|
|
717
|
+
image: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
718
|
+
sameAs: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
719
|
+
knowsAbout: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
720
|
+
}, "strict", z.ZodTypeAny, {
|
|
721
|
+
name: string;
|
|
722
|
+
url?: string | undefined;
|
|
723
|
+
description?: string | undefined;
|
|
724
|
+
jobTitle?: string | undefined;
|
|
725
|
+
sameAs?: string[] | undefined;
|
|
726
|
+
knowsAbout?: string[] | undefined;
|
|
727
|
+
image?: string | undefined;
|
|
728
|
+
}, {
|
|
729
|
+
name: string;
|
|
730
|
+
url?: string | undefined;
|
|
731
|
+
description?: string | undefined;
|
|
732
|
+
jobTitle?: string | undefined;
|
|
733
|
+
sameAs?: string[] | undefined;
|
|
734
|
+
knowsAbout?: string[] | undefined;
|
|
735
|
+
image?: string | undefined;
|
|
736
|
+
}>>;
|
|
737
|
+
softwareApplication: z.ZodOptional<z.ZodObject<{
|
|
738
|
+
name: z.ZodString;
|
|
739
|
+
applicationCategory: z.ZodOptional<z.ZodString>;
|
|
740
|
+
applicationSubCategory: z.ZodOptional<z.ZodString>;
|
|
741
|
+
operatingSystem: z.ZodOptional<z.ZodString>;
|
|
742
|
+
description: z.ZodOptional<z.ZodString>;
|
|
743
|
+
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
744
|
+
image: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
745
|
+
screenshot: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
746
|
+
featureList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
747
|
+
offers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
748
|
+
name: z.ZodOptional<z.ZodString>;
|
|
749
|
+
price: z.ZodString;
|
|
750
|
+
priceCurrency: z.ZodString;
|
|
751
|
+
description: z.ZodOptional<z.ZodString>;
|
|
752
|
+
}, "strict", z.ZodTypeAny, {
|
|
753
|
+
price: string;
|
|
754
|
+
priceCurrency: string;
|
|
755
|
+
name?: string | undefined;
|
|
756
|
+
description?: string | undefined;
|
|
757
|
+
}, {
|
|
758
|
+
price: string;
|
|
759
|
+
priceCurrency: string;
|
|
760
|
+
name?: string | undefined;
|
|
761
|
+
description?: string | undefined;
|
|
762
|
+
}>, "many">>;
|
|
763
|
+
installUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
764
|
+
downloadUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
765
|
+
aggregateRating: z.ZodOptional<z.ZodObject<{
|
|
766
|
+
ratingValue: z.ZodNumber;
|
|
767
|
+
ratingCount: z.ZodNumber;
|
|
768
|
+
}, "strict", z.ZodTypeAny, {
|
|
769
|
+
ratingValue: number;
|
|
770
|
+
ratingCount: number;
|
|
771
|
+
}, {
|
|
772
|
+
ratingValue: number;
|
|
773
|
+
ratingCount: number;
|
|
774
|
+
}>>;
|
|
775
|
+
}, "strict", z.ZodTypeAny, {
|
|
776
|
+
name: string;
|
|
777
|
+
url?: string | undefined;
|
|
778
|
+
description?: string | undefined;
|
|
779
|
+
image?: string | undefined;
|
|
780
|
+
applicationCategory?: string | undefined;
|
|
781
|
+
applicationSubCategory?: string | undefined;
|
|
782
|
+
operatingSystem?: string | undefined;
|
|
783
|
+
screenshot?: string[] | undefined;
|
|
784
|
+
featureList?: string[] | undefined;
|
|
785
|
+
offers?: {
|
|
786
|
+
price: string;
|
|
787
|
+
priceCurrency: string;
|
|
788
|
+
name?: string | undefined;
|
|
789
|
+
description?: string | undefined;
|
|
790
|
+
}[] | undefined;
|
|
791
|
+
installUrl?: string | undefined;
|
|
792
|
+
downloadUrl?: string | undefined;
|
|
793
|
+
aggregateRating?: {
|
|
794
|
+
ratingValue: number;
|
|
795
|
+
ratingCount: number;
|
|
796
|
+
} | undefined;
|
|
797
|
+
}, {
|
|
798
|
+
name: string;
|
|
799
|
+
url?: string | undefined;
|
|
800
|
+
description?: string | undefined;
|
|
801
|
+
image?: string | undefined;
|
|
802
|
+
applicationCategory?: string | undefined;
|
|
803
|
+
applicationSubCategory?: string | undefined;
|
|
804
|
+
operatingSystem?: string | undefined;
|
|
805
|
+
screenshot?: string[] | undefined;
|
|
806
|
+
featureList?: string[] | undefined;
|
|
807
|
+
offers?: {
|
|
808
|
+
price: string;
|
|
809
|
+
priceCurrency: string;
|
|
810
|
+
name?: string | undefined;
|
|
811
|
+
description?: string | undefined;
|
|
812
|
+
}[] | undefined;
|
|
813
|
+
installUrl?: string | undefined;
|
|
814
|
+
downloadUrl?: string | undefined;
|
|
815
|
+
aggregateRating?: {
|
|
816
|
+
ratingValue: number;
|
|
817
|
+
ratingCount: number;
|
|
818
|
+
} | undefined;
|
|
819
|
+
}>>;
|
|
492
820
|
webSite: z.ZodOptional<z.ZodObject<{
|
|
493
821
|
name: z.ZodOptional<z.ZodString>;
|
|
494
822
|
description: z.ZodOptional<z.ZodString>;
|
|
823
|
+
inLanguage: z.ZodOptional<z.ZodString>;
|
|
495
824
|
}, "strict", z.ZodTypeAny, {
|
|
496
825
|
name?: string | undefined;
|
|
497
826
|
description?: string | undefined;
|
|
827
|
+
inLanguage?: string | undefined;
|
|
498
828
|
}, {
|
|
499
829
|
name?: string | undefined;
|
|
500
830
|
description?: string | undefined;
|
|
831
|
+
inLanguage?: string | undefined;
|
|
501
832
|
}>>;
|
|
502
833
|
llmsTxt: z.ZodOptional<z.ZodObject<{
|
|
503
834
|
summary: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -588,32 +919,32 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
588
919
|
content: string;
|
|
589
920
|
}>, "many">>;
|
|
590
921
|
}, "strict", z.ZodTypeAny, {
|
|
591
|
-
title?: string | undefined;
|
|
592
922
|
summary?: string | undefined;
|
|
923
|
+
title?: string | undefined;
|
|
593
924
|
sections?: {
|
|
594
925
|
title: string;
|
|
595
926
|
content: string;
|
|
596
927
|
}[] | undefined;
|
|
597
928
|
content?: string | undefined;
|
|
598
929
|
}, {
|
|
599
|
-
title?: string | undefined;
|
|
600
930
|
summary?: string | undefined;
|
|
931
|
+
title?: string | undefined;
|
|
601
932
|
sections?: {
|
|
602
933
|
title: string;
|
|
603
934
|
content: string;
|
|
604
935
|
}[] | undefined;
|
|
605
936
|
content?: string | undefined;
|
|
606
937
|
}>, {
|
|
607
|
-
title?: string | undefined;
|
|
608
938
|
summary?: string | undefined;
|
|
939
|
+
title?: string | undefined;
|
|
609
940
|
sections?: {
|
|
610
941
|
title: string;
|
|
611
942
|
content: string;
|
|
612
943
|
}[] | undefined;
|
|
613
944
|
content?: string | undefined;
|
|
614
945
|
}, {
|
|
615
|
-
title?: string | undefined;
|
|
616
946
|
summary?: string | undefined;
|
|
947
|
+
title?: string | undefined;
|
|
617
948
|
sections?: {
|
|
618
949
|
title: string;
|
|
619
950
|
content: string;
|
|
@@ -623,6 +954,16 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
623
954
|
agentsMd: z.ZodOptional<z.ZodObject<{
|
|
624
955
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
625
956
|
audience: z.ZodOptional<z.ZodString>;
|
|
957
|
+
sections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
958
|
+
title: z.ZodString;
|
|
959
|
+
content: z.ZodString;
|
|
960
|
+
}, "strict", z.ZodTypeAny, {
|
|
961
|
+
title: string;
|
|
962
|
+
content: string;
|
|
963
|
+
}, {
|
|
964
|
+
title: string;
|
|
965
|
+
content: string;
|
|
966
|
+
}>, "many">>;
|
|
626
967
|
contact: z.ZodOptional<z.ZodString>;
|
|
627
968
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
628
969
|
title: z.ZodString;
|
|
@@ -644,6 +985,10 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
644
985
|
title: string;
|
|
645
986
|
description?: string | undefined;
|
|
646
987
|
}[] | undefined;
|
|
988
|
+
sections?: {
|
|
989
|
+
title: string;
|
|
990
|
+
content: string;
|
|
991
|
+
}[] | undefined;
|
|
647
992
|
audience?: string | undefined;
|
|
648
993
|
contact?: string | undefined;
|
|
649
994
|
}, {
|
|
@@ -653,6 +998,10 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
653
998
|
title: string;
|
|
654
999
|
description?: string | undefined;
|
|
655
1000
|
}[] | undefined;
|
|
1001
|
+
sections?: {
|
|
1002
|
+
title: string;
|
|
1003
|
+
content: string;
|
|
1004
|
+
}[] | undefined;
|
|
656
1005
|
audience?: string | undefined;
|
|
657
1006
|
contact?: string | undefined;
|
|
658
1007
|
}>>;
|
|
@@ -675,18 +1024,18 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
675
1024
|
}>, "many">;
|
|
676
1025
|
}, "strict", z.ZodTypeAny, {
|
|
677
1026
|
name: string;
|
|
1027
|
+
url: string;
|
|
678
1028
|
description: string;
|
|
679
1029
|
status: "active";
|
|
680
|
-
url: string;
|
|
681
1030
|
tools: {
|
|
682
1031
|
name: string;
|
|
683
1032
|
description: string;
|
|
684
1033
|
}[];
|
|
685
1034
|
}, {
|
|
686
1035
|
name: string;
|
|
1036
|
+
url: string;
|
|
687
1037
|
description: string;
|
|
688
1038
|
status: "active";
|
|
689
|
-
url: string;
|
|
690
1039
|
tools: {
|
|
691
1040
|
name: string;
|
|
692
1041
|
description: string;
|
|
@@ -725,9 +1074,9 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
725
1074
|
}, "strict", z.ZodTypeAny, {
|
|
726
1075
|
servers: ({
|
|
727
1076
|
name: string;
|
|
1077
|
+
url: string;
|
|
728
1078
|
description: string;
|
|
729
1079
|
status: "active";
|
|
730
|
-
url: string;
|
|
731
1080
|
tools: {
|
|
732
1081
|
name: string;
|
|
733
1082
|
description: string;
|
|
@@ -745,9 +1094,9 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
745
1094
|
}, {
|
|
746
1095
|
servers: ({
|
|
747
1096
|
name: string;
|
|
1097
|
+
url: string;
|
|
748
1098
|
description: string;
|
|
749
1099
|
status: "active";
|
|
750
|
-
url: string;
|
|
751
1100
|
tools: {
|
|
752
1101
|
name: string;
|
|
753
1102
|
description: string;
|
|
@@ -846,23 +1195,64 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
846
1195
|
}>>;
|
|
847
1196
|
}, "strict", z.ZodTypeAny, {
|
|
848
1197
|
site: string;
|
|
849
|
-
organization
|
|
1198
|
+
organization?: {
|
|
850
1199
|
name: string;
|
|
851
1200
|
url?: string | undefined;
|
|
852
1201
|
logo?: string | undefined;
|
|
1202
|
+
description?: string | undefined;
|
|
853
1203
|
founder?: {
|
|
854
1204
|
name: string;
|
|
855
|
-
|
|
1205
|
+
url?: string | undefined;
|
|
856
1206
|
description?: string | undefined;
|
|
1207
|
+
jobTitle?: string | undefined;
|
|
857
1208
|
sameAs?: string[] | undefined;
|
|
858
1209
|
} | undefined;
|
|
859
1210
|
foundingDate?: string | undefined;
|
|
860
1211
|
knowsAbout?: string[] | undefined;
|
|
861
1212
|
areaServed?: string | undefined;
|
|
862
|
-
|
|
1213
|
+
contactPoint?: {
|
|
1214
|
+
contactType: string;
|
|
1215
|
+
url?: string | undefined;
|
|
1216
|
+
email?: string | undefined;
|
|
1217
|
+
telephone?: string | undefined;
|
|
1218
|
+
} | undefined;
|
|
1219
|
+
} | undefined;
|
|
1220
|
+
person?: {
|
|
1221
|
+
name: string;
|
|
1222
|
+
url?: string | undefined;
|
|
1223
|
+
description?: string | undefined;
|
|
1224
|
+
jobTitle?: string | undefined;
|
|
1225
|
+
sameAs?: string[] | undefined;
|
|
1226
|
+
knowsAbout?: string[] | undefined;
|
|
1227
|
+
image?: string | undefined;
|
|
1228
|
+
} | undefined;
|
|
1229
|
+
softwareApplication?: {
|
|
1230
|
+
name: string;
|
|
1231
|
+
url?: string | undefined;
|
|
1232
|
+
description?: string | undefined;
|
|
1233
|
+
image?: string | undefined;
|
|
1234
|
+
applicationCategory?: string | undefined;
|
|
1235
|
+
applicationSubCategory?: string | undefined;
|
|
1236
|
+
operatingSystem?: string | undefined;
|
|
1237
|
+
screenshot?: string[] | undefined;
|
|
1238
|
+
featureList?: string[] | undefined;
|
|
1239
|
+
offers?: {
|
|
1240
|
+
price: string;
|
|
1241
|
+
priceCurrency: string;
|
|
1242
|
+
name?: string | undefined;
|
|
1243
|
+
description?: string | undefined;
|
|
1244
|
+
}[] | undefined;
|
|
1245
|
+
installUrl?: string | undefined;
|
|
1246
|
+
downloadUrl?: string | undefined;
|
|
1247
|
+
aggregateRating?: {
|
|
1248
|
+
ratingValue: number;
|
|
1249
|
+
ratingCount: number;
|
|
1250
|
+
} | undefined;
|
|
1251
|
+
} | undefined;
|
|
863
1252
|
webSite?: {
|
|
864
1253
|
name?: string | undefined;
|
|
865
1254
|
description?: string | undefined;
|
|
1255
|
+
inLanguage?: string | undefined;
|
|
866
1256
|
} | undefined;
|
|
867
1257
|
llmsTxt?: {
|
|
868
1258
|
summary: string;
|
|
@@ -881,8 +1271,8 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
881
1271
|
} | undefined;
|
|
882
1272
|
} | undefined;
|
|
883
1273
|
llmsFull?: {
|
|
884
|
-
title?: string | undefined;
|
|
885
1274
|
summary?: string | undefined;
|
|
1275
|
+
title?: string | undefined;
|
|
886
1276
|
sections?: {
|
|
887
1277
|
title: string;
|
|
888
1278
|
content: string;
|
|
@@ -896,15 +1286,19 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
896
1286
|
title: string;
|
|
897
1287
|
description?: string | undefined;
|
|
898
1288
|
}[] | undefined;
|
|
1289
|
+
sections?: {
|
|
1290
|
+
title: string;
|
|
1291
|
+
content: string;
|
|
1292
|
+
}[] | undefined;
|
|
899
1293
|
audience?: string | undefined;
|
|
900
1294
|
contact?: string | undefined;
|
|
901
1295
|
} | undefined;
|
|
902
1296
|
mcp?: {
|
|
903
1297
|
servers: ({
|
|
904
1298
|
name: string;
|
|
1299
|
+
url: string;
|
|
905
1300
|
description: string;
|
|
906
1301
|
status: "active";
|
|
907
|
-
url: string;
|
|
908
1302
|
tools: {
|
|
909
1303
|
name: string;
|
|
910
1304
|
description: string;
|
|
@@ -939,23 +1333,64 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
939
1333
|
} | undefined;
|
|
940
1334
|
}, {
|
|
941
1335
|
site: string;
|
|
942
|
-
organization
|
|
1336
|
+
organization?: {
|
|
943
1337
|
name: string;
|
|
944
1338
|
url?: string | undefined;
|
|
945
1339
|
logo?: string | undefined;
|
|
1340
|
+
description?: string | undefined;
|
|
946
1341
|
founder?: {
|
|
947
1342
|
name: string;
|
|
948
|
-
|
|
1343
|
+
url?: string | undefined;
|
|
949
1344
|
description?: string | undefined;
|
|
1345
|
+
jobTitle?: string | undefined;
|
|
950
1346
|
sameAs?: string[] | undefined;
|
|
951
1347
|
} | undefined;
|
|
952
1348
|
foundingDate?: string | undefined;
|
|
953
1349
|
knowsAbout?: string[] | undefined;
|
|
954
1350
|
areaServed?: string | undefined;
|
|
955
|
-
|
|
1351
|
+
contactPoint?: {
|
|
1352
|
+
contactType: string;
|
|
1353
|
+
url?: string | undefined;
|
|
1354
|
+
email?: string | undefined;
|
|
1355
|
+
telephone?: string | undefined;
|
|
1356
|
+
} | undefined;
|
|
1357
|
+
} | undefined;
|
|
1358
|
+
person?: {
|
|
1359
|
+
name: string;
|
|
1360
|
+
url?: string | undefined;
|
|
1361
|
+
description?: string | undefined;
|
|
1362
|
+
jobTitle?: string | undefined;
|
|
1363
|
+
sameAs?: string[] | undefined;
|
|
1364
|
+
knowsAbout?: string[] | undefined;
|
|
1365
|
+
image?: string | undefined;
|
|
1366
|
+
} | undefined;
|
|
1367
|
+
softwareApplication?: {
|
|
1368
|
+
name: string;
|
|
1369
|
+
url?: string | undefined;
|
|
1370
|
+
description?: string | undefined;
|
|
1371
|
+
image?: string | undefined;
|
|
1372
|
+
applicationCategory?: string | undefined;
|
|
1373
|
+
applicationSubCategory?: string | undefined;
|
|
1374
|
+
operatingSystem?: string | undefined;
|
|
1375
|
+
screenshot?: string[] | undefined;
|
|
1376
|
+
featureList?: string[] | undefined;
|
|
1377
|
+
offers?: {
|
|
1378
|
+
price: string;
|
|
1379
|
+
priceCurrency: string;
|
|
1380
|
+
name?: string | undefined;
|
|
1381
|
+
description?: string | undefined;
|
|
1382
|
+
}[] | undefined;
|
|
1383
|
+
installUrl?: string | undefined;
|
|
1384
|
+
downloadUrl?: string | undefined;
|
|
1385
|
+
aggregateRating?: {
|
|
1386
|
+
ratingValue: number;
|
|
1387
|
+
ratingCount: number;
|
|
1388
|
+
} | undefined;
|
|
1389
|
+
} | undefined;
|
|
956
1390
|
webSite?: {
|
|
957
1391
|
name?: string | undefined;
|
|
958
1392
|
description?: string | undefined;
|
|
1393
|
+
inLanguage?: string | undefined;
|
|
959
1394
|
} | undefined;
|
|
960
1395
|
llmsTxt?: {
|
|
961
1396
|
summary: string;
|
|
@@ -974,8 +1409,146 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
974
1409
|
} | undefined;
|
|
975
1410
|
} | undefined;
|
|
976
1411
|
llmsFull?: {
|
|
1412
|
+
summary?: string | undefined;
|
|
977
1413
|
title?: string | undefined;
|
|
1414
|
+
sections?: {
|
|
1415
|
+
title: string;
|
|
1416
|
+
content: string;
|
|
1417
|
+
}[] | undefined;
|
|
1418
|
+
content?: string | undefined;
|
|
1419
|
+
} | undefined;
|
|
1420
|
+
agentsMd?: {
|
|
1421
|
+
description: string;
|
|
1422
|
+
links?: {
|
|
1423
|
+
url: string;
|
|
1424
|
+
title: string;
|
|
1425
|
+
description?: string | undefined;
|
|
1426
|
+
}[] | undefined;
|
|
1427
|
+
sections?: {
|
|
1428
|
+
title: string;
|
|
1429
|
+
content: string;
|
|
1430
|
+
}[] | undefined;
|
|
1431
|
+
audience?: string | undefined;
|
|
1432
|
+
contact?: string | undefined;
|
|
1433
|
+
} | undefined;
|
|
1434
|
+
mcp?: {
|
|
1435
|
+
servers: ({
|
|
1436
|
+
name: string;
|
|
1437
|
+
url: string;
|
|
1438
|
+
description: string;
|
|
1439
|
+
status: "active";
|
|
1440
|
+
tools: {
|
|
1441
|
+
name: string;
|
|
1442
|
+
description: string;
|
|
1443
|
+
}[];
|
|
1444
|
+
} | {
|
|
1445
|
+
name: string;
|
|
1446
|
+
description: string;
|
|
1447
|
+
status: "planned";
|
|
1448
|
+
planned_tools: {
|
|
1449
|
+
name: string;
|
|
1450
|
+
description: string;
|
|
1451
|
+
}[];
|
|
1452
|
+
})[];
|
|
1453
|
+
version?: string | undefined;
|
|
1454
|
+
} | undefined;
|
|
1455
|
+
robotsTxt?: {
|
|
1456
|
+
policy?: "search-visible" | "training-opt-out" | "private" | undefined;
|
|
1457
|
+
sitemap?: string | false | undefined;
|
|
1458
|
+
contentSignals?: {
|
|
1459
|
+
search?: "yes" | "no" | undefined;
|
|
1460
|
+
aiTrain?: "yes" | "no" | undefined;
|
|
1461
|
+
aiInput?: "yes" | "no" | undefined;
|
|
1462
|
+
} | undefined;
|
|
1463
|
+
rules?: {
|
|
1464
|
+
userAgent: string | string[];
|
|
1465
|
+
allow?: string[] | undefined;
|
|
1466
|
+
disallow?: string[] | undefined;
|
|
1467
|
+
crawlDelay?: number | undefined;
|
|
1468
|
+
comment?: string | undefined;
|
|
1469
|
+
}[] | undefined;
|
|
1470
|
+
additionalLines?: string[] | undefined;
|
|
1471
|
+
} | undefined;
|
|
1472
|
+
}>, {
|
|
1473
|
+
site: string;
|
|
1474
|
+
organization?: {
|
|
1475
|
+
name: string;
|
|
1476
|
+
url?: string | undefined;
|
|
1477
|
+
logo?: string | undefined;
|
|
1478
|
+
description?: string | undefined;
|
|
1479
|
+
founder?: {
|
|
1480
|
+
name: string;
|
|
1481
|
+
url?: string | undefined;
|
|
1482
|
+
description?: string | undefined;
|
|
1483
|
+
jobTitle?: string | undefined;
|
|
1484
|
+
sameAs?: string[] | undefined;
|
|
1485
|
+
} | undefined;
|
|
1486
|
+
foundingDate?: string | undefined;
|
|
1487
|
+
knowsAbout?: string[] | undefined;
|
|
1488
|
+
areaServed?: string | undefined;
|
|
1489
|
+
contactPoint?: {
|
|
1490
|
+
contactType: string;
|
|
1491
|
+
url?: string | undefined;
|
|
1492
|
+
email?: string | undefined;
|
|
1493
|
+
telephone?: string | undefined;
|
|
1494
|
+
} | undefined;
|
|
1495
|
+
} | undefined;
|
|
1496
|
+
person?: {
|
|
1497
|
+
name: string;
|
|
1498
|
+
url?: string | undefined;
|
|
1499
|
+
description?: string | undefined;
|
|
1500
|
+
jobTitle?: string | undefined;
|
|
1501
|
+
sameAs?: string[] | undefined;
|
|
1502
|
+
knowsAbout?: string[] | undefined;
|
|
1503
|
+
image?: string | undefined;
|
|
1504
|
+
} | undefined;
|
|
1505
|
+
softwareApplication?: {
|
|
1506
|
+
name: string;
|
|
1507
|
+
url?: string | undefined;
|
|
1508
|
+
description?: string | undefined;
|
|
1509
|
+
image?: string | undefined;
|
|
1510
|
+
applicationCategory?: string | undefined;
|
|
1511
|
+
applicationSubCategory?: string | undefined;
|
|
1512
|
+
operatingSystem?: string | undefined;
|
|
1513
|
+
screenshot?: string[] | undefined;
|
|
1514
|
+
featureList?: string[] | undefined;
|
|
1515
|
+
offers?: {
|
|
1516
|
+
price: string;
|
|
1517
|
+
priceCurrency: string;
|
|
1518
|
+
name?: string | undefined;
|
|
1519
|
+
description?: string | undefined;
|
|
1520
|
+
}[] | undefined;
|
|
1521
|
+
installUrl?: string | undefined;
|
|
1522
|
+
downloadUrl?: string | undefined;
|
|
1523
|
+
aggregateRating?: {
|
|
1524
|
+
ratingValue: number;
|
|
1525
|
+
ratingCount: number;
|
|
1526
|
+
} | undefined;
|
|
1527
|
+
} | undefined;
|
|
1528
|
+
webSite?: {
|
|
1529
|
+
name?: string | undefined;
|
|
1530
|
+
description?: string | undefined;
|
|
1531
|
+
inLanguage?: string | undefined;
|
|
1532
|
+
} | undefined;
|
|
1533
|
+
llmsTxt?: {
|
|
1534
|
+
summary: string;
|
|
1535
|
+
body?: string | undefined;
|
|
1536
|
+
sections?: {
|
|
1537
|
+
title: string;
|
|
1538
|
+
links: {
|
|
1539
|
+
url: string;
|
|
1540
|
+
title: string;
|
|
1541
|
+
description?: string | undefined;
|
|
1542
|
+
}[];
|
|
1543
|
+
}[] | undefined;
|
|
1544
|
+
deferTo?: {
|
|
1545
|
+
url: string;
|
|
1546
|
+
title: string;
|
|
1547
|
+
} | undefined;
|
|
1548
|
+
} | undefined;
|
|
1549
|
+
llmsFull?: {
|
|
978
1550
|
summary?: string | undefined;
|
|
1551
|
+
title?: string | undefined;
|
|
979
1552
|
sections?: {
|
|
980
1553
|
title: string;
|
|
981
1554
|
content: string;
|
|
@@ -989,15 +1562,157 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
989
1562
|
title: string;
|
|
990
1563
|
description?: string | undefined;
|
|
991
1564
|
}[] | undefined;
|
|
1565
|
+
sections?: {
|
|
1566
|
+
title: string;
|
|
1567
|
+
content: string;
|
|
1568
|
+
}[] | undefined;
|
|
992
1569
|
audience?: string | undefined;
|
|
993
1570
|
contact?: string | undefined;
|
|
994
1571
|
} | undefined;
|
|
995
1572
|
mcp?: {
|
|
996
1573
|
servers: ({
|
|
997
1574
|
name: string;
|
|
1575
|
+
url: string;
|
|
998
1576
|
description: string;
|
|
999
1577
|
status: "active";
|
|
1578
|
+
tools: {
|
|
1579
|
+
name: string;
|
|
1580
|
+
description: string;
|
|
1581
|
+
}[];
|
|
1582
|
+
} | {
|
|
1583
|
+
name: string;
|
|
1584
|
+
description: string;
|
|
1585
|
+
status: "planned";
|
|
1586
|
+
planned_tools: {
|
|
1587
|
+
name: string;
|
|
1588
|
+
description: string;
|
|
1589
|
+
}[];
|
|
1590
|
+
})[];
|
|
1591
|
+
version?: string | undefined;
|
|
1592
|
+
} | undefined;
|
|
1593
|
+
robotsTxt?: {
|
|
1594
|
+
policy?: "search-visible" | "training-opt-out" | "private" | undefined;
|
|
1595
|
+
sitemap?: string | false | undefined;
|
|
1596
|
+
contentSignals?: {
|
|
1597
|
+
search?: "yes" | "no" | undefined;
|
|
1598
|
+
aiTrain?: "yes" | "no" | undefined;
|
|
1599
|
+
aiInput?: "yes" | "no" | undefined;
|
|
1600
|
+
} | undefined;
|
|
1601
|
+
rules?: {
|
|
1602
|
+
userAgent: string | string[];
|
|
1603
|
+
allow?: string[] | undefined;
|
|
1604
|
+
disallow?: string[] | undefined;
|
|
1605
|
+
crawlDelay?: number | undefined;
|
|
1606
|
+
comment?: string | undefined;
|
|
1607
|
+
}[] | undefined;
|
|
1608
|
+
additionalLines?: string[] | undefined;
|
|
1609
|
+
} | undefined;
|
|
1610
|
+
}, {
|
|
1611
|
+
site: string;
|
|
1612
|
+
organization?: {
|
|
1613
|
+
name: string;
|
|
1614
|
+
url?: string | undefined;
|
|
1615
|
+
logo?: string | undefined;
|
|
1616
|
+
description?: string | undefined;
|
|
1617
|
+
founder?: {
|
|
1618
|
+
name: string;
|
|
1619
|
+
url?: string | undefined;
|
|
1620
|
+
description?: string | undefined;
|
|
1621
|
+
jobTitle?: string | undefined;
|
|
1622
|
+
sameAs?: string[] | undefined;
|
|
1623
|
+
} | undefined;
|
|
1624
|
+
foundingDate?: string | undefined;
|
|
1625
|
+
knowsAbout?: string[] | undefined;
|
|
1626
|
+
areaServed?: string | undefined;
|
|
1627
|
+
contactPoint?: {
|
|
1628
|
+
contactType: string;
|
|
1629
|
+
url?: string | undefined;
|
|
1630
|
+
email?: string | undefined;
|
|
1631
|
+
telephone?: string | undefined;
|
|
1632
|
+
} | undefined;
|
|
1633
|
+
} | undefined;
|
|
1634
|
+
person?: {
|
|
1635
|
+
name: string;
|
|
1636
|
+
url?: string | undefined;
|
|
1637
|
+
description?: string | undefined;
|
|
1638
|
+
jobTitle?: string | undefined;
|
|
1639
|
+
sameAs?: string[] | undefined;
|
|
1640
|
+
knowsAbout?: string[] | undefined;
|
|
1641
|
+
image?: string | undefined;
|
|
1642
|
+
} | undefined;
|
|
1643
|
+
softwareApplication?: {
|
|
1644
|
+
name: string;
|
|
1645
|
+
url?: string | undefined;
|
|
1646
|
+
description?: string | undefined;
|
|
1647
|
+
image?: string | undefined;
|
|
1648
|
+
applicationCategory?: string | undefined;
|
|
1649
|
+
applicationSubCategory?: string | undefined;
|
|
1650
|
+
operatingSystem?: string | undefined;
|
|
1651
|
+
screenshot?: string[] | undefined;
|
|
1652
|
+
featureList?: string[] | undefined;
|
|
1653
|
+
offers?: {
|
|
1654
|
+
price: string;
|
|
1655
|
+
priceCurrency: string;
|
|
1656
|
+
name?: string | undefined;
|
|
1657
|
+
description?: string | undefined;
|
|
1658
|
+
}[] | undefined;
|
|
1659
|
+
installUrl?: string | undefined;
|
|
1660
|
+
downloadUrl?: string | undefined;
|
|
1661
|
+
aggregateRating?: {
|
|
1662
|
+
ratingValue: number;
|
|
1663
|
+
ratingCount: number;
|
|
1664
|
+
} | undefined;
|
|
1665
|
+
} | undefined;
|
|
1666
|
+
webSite?: {
|
|
1667
|
+
name?: string | undefined;
|
|
1668
|
+
description?: string | undefined;
|
|
1669
|
+
inLanguage?: string | undefined;
|
|
1670
|
+
} | undefined;
|
|
1671
|
+
llmsTxt?: {
|
|
1672
|
+
summary: string;
|
|
1673
|
+
body?: string | undefined;
|
|
1674
|
+
sections?: {
|
|
1675
|
+
title: string;
|
|
1676
|
+
links: {
|
|
1677
|
+
url: string;
|
|
1678
|
+
title: string;
|
|
1679
|
+
description?: string | undefined;
|
|
1680
|
+
}[];
|
|
1681
|
+
}[] | undefined;
|
|
1682
|
+
deferTo?: {
|
|
1683
|
+
url: string;
|
|
1684
|
+
title: string;
|
|
1685
|
+
} | undefined;
|
|
1686
|
+
} | undefined;
|
|
1687
|
+
llmsFull?: {
|
|
1688
|
+
summary?: string | undefined;
|
|
1689
|
+
title?: string | undefined;
|
|
1690
|
+
sections?: {
|
|
1691
|
+
title: string;
|
|
1692
|
+
content: string;
|
|
1693
|
+
}[] | undefined;
|
|
1694
|
+
content?: string | undefined;
|
|
1695
|
+
} | undefined;
|
|
1696
|
+
agentsMd?: {
|
|
1697
|
+
description: string;
|
|
1698
|
+
links?: {
|
|
1000
1699
|
url: string;
|
|
1700
|
+
title: string;
|
|
1701
|
+
description?: string | undefined;
|
|
1702
|
+
}[] | undefined;
|
|
1703
|
+
sections?: {
|
|
1704
|
+
title: string;
|
|
1705
|
+
content: string;
|
|
1706
|
+
}[] | undefined;
|
|
1707
|
+
audience?: string | undefined;
|
|
1708
|
+
contact?: string | undefined;
|
|
1709
|
+
} | undefined;
|
|
1710
|
+
mcp?: {
|
|
1711
|
+
servers: ({
|
|
1712
|
+
name: string;
|
|
1713
|
+
url: string;
|
|
1714
|
+
description: string;
|
|
1715
|
+
status: "active";
|
|
1001
1716
|
tools: {
|
|
1002
1717
|
name: string;
|
|
1003
1718
|
description: string;
|
|
@@ -1033,7 +1748,10 @@ declare const aiReadinessConfigSchema: z.ZodObject<{
|
|
|
1033
1748
|
}>;
|
|
1034
1749
|
type AiReadinessConfig = z.infer<typeof aiReadinessConfigSchema>;
|
|
1035
1750
|
type OrganizationConfig = z.infer<typeof organizationSchema>;
|
|
1751
|
+
type PersonConfig = z.infer<typeof personSchema>;
|
|
1036
1752
|
type FounderConfig = z.infer<typeof founderSchema>;
|
|
1753
|
+
type ContactPointConfig = z.infer<typeof contactPointSchema>;
|
|
1754
|
+
type SoftwareApplicationConfig = z.infer<typeof softwareApplicationSchema>;
|
|
1037
1755
|
type WebSiteConfig = z.infer<typeof webSiteSchema>;
|
|
1038
1756
|
type LlmsTxtConfig = z.infer<typeof llmsTxtSchema>;
|
|
1039
1757
|
type LlmsFullConfig = z.infer<typeof llmsFullSchema>;
|
|
@@ -1041,4 +1759,4 @@ type AgentsMdConfig = z.infer<typeof agentsMdSchema>;
|
|
|
1041
1759
|
type McpConfig = z.infer<typeof mcpSchema>;
|
|
1042
1760
|
type RobotsTxtConfig = z.infer<typeof robotsTxtSchema>;
|
|
1043
1761
|
|
|
1044
|
-
export { type AgentsMdConfig, type AiReadinessConfig, type FounderConfig, type LlmsFullConfig, type LlmsTxtConfig, type McpConfig, type OrganizationConfig, type RobotsTxtConfig, type WebSiteConfig, aiReadinessConfigSchema };
|
|
1762
|
+
export { type AgentsMdConfig, type AiReadinessConfig, type ContactPointConfig, type FounderConfig, type LlmsFullConfig, type LlmsTxtConfig, type McpConfig, type OrganizationConfig, type PersonConfig, type RobotsTxtConfig, type SoftwareApplicationConfig, type WebSiteConfig, aiReadinessConfigSchema };
|