@nuxtjs/sitemap 7.4.0 → 7.4.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.
- package/dist/client/200.html +7 -7
- package/dist/client/404.html +7 -7
- package/dist/client/_nuxt/{SQMF8ibg.js → ChlW3cCD.js} +1 -1
- package/dist/client/_nuxt/{ChEizYIG.js → K8nf0nmV.js} +23 -23
- package/dist/client/_nuxt/builds/latest.json +1 -1
- package/dist/client/_nuxt/builds/meta/c404a32a-6c86-4c3c-8fc9-542298112da2.json +1 -0
- package/dist/client/_nuxt/error-404.rdc6e5v3.css +1 -0
- package/dist/client/_nuxt/error-500.CRTYI814.css +1 -0
- package/dist/client/_nuxt/{cqJZcoo0.js → fos25x15.js} +1 -1
- package/dist/client/index.html +7 -7
- package/dist/module.d.ts +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +4 -120
- package/dist/runtime/server/sitemap/urlset/sources.js +3 -2
- package/dist/runtime/types.d.ts +1 -0
- package/dist/shared/sitemap.DR3_6qqU.mjs +212 -0
- package/dist/utils.d.mts +28 -0
- package/dist/utils.d.ts +28 -0
- package/dist/utils.mjs +368 -0
- package/package.json +18 -10
- package/dist/client/_nuxt/builds/meta/048e1f4c-a575-4a94-bbab-d777afe4c585.json +0 -1
- package/dist/client/_nuxt/error-404.DljSaiyF.css +0 -1
- package/dist/client/_nuxt/error-500.DbX9fggi.css +0 -1
- package/dist/content.cjs +0 -48
- package/dist/content.d.cts +0 -232
- package/dist/module.cjs +0 -1334
- package/dist/module.d.cts +0 -10
- package/dist/runtime/server/sitemap/utils/extractSitemapXML.d.ts +0 -2
- package/dist/runtime/server/sitemap/utils/extractSitemapXML.js +0 -75
package/dist/content.d.cts
DELETED
|
@@ -1,232 +0,0 @@
|
|
|
1
|
-
import * as zod from 'zod';
|
|
2
|
-
import { TypeOf, ZodRawShape } from 'zod';
|
|
3
|
-
import { Collection } from '@nuxt/content';
|
|
4
|
-
|
|
5
|
-
declare const schema: zod.ZodObject<{
|
|
6
|
-
sitemap: zod.ZodOptional<zod.ZodObject<{
|
|
7
|
-
loc: zod.ZodOptional<zod.ZodString>;
|
|
8
|
-
lastmod: zod.ZodOptional<zod.ZodDate>;
|
|
9
|
-
changefreq: zod.ZodOptional<zod.ZodUnion<[zod.ZodLiteral<"always">, zod.ZodLiteral<"hourly">, zod.ZodLiteral<"daily">, zod.ZodLiteral<"weekly">, zod.ZodLiteral<"monthly">, zod.ZodLiteral<"yearly">, zod.ZodLiteral<"never">]>>;
|
|
10
|
-
priority: zod.ZodOptional<zod.ZodNumber>;
|
|
11
|
-
images: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
12
|
-
loc: zod.ZodString;
|
|
13
|
-
caption: zod.ZodOptional<zod.ZodString>;
|
|
14
|
-
geo_location: zod.ZodOptional<zod.ZodString>;
|
|
15
|
-
title: zod.ZodOptional<zod.ZodString>;
|
|
16
|
-
license: zod.ZodOptional<zod.ZodString>;
|
|
17
|
-
}, "strip", zod.ZodTypeAny, {
|
|
18
|
-
loc: string;
|
|
19
|
-
caption?: string | undefined;
|
|
20
|
-
geo_location?: string | undefined;
|
|
21
|
-
title?: string | undefined;
|
|
22
|
-
license?: string | undefined;
|
|
23
|
-
}, {
|
|
24
|
-
loc: string;
|
|
25
|
-
caption?: string | undefined;
|
|
26
|
-
geo_location?: string | undefined;
|
|
27
|
-
title?: string | undefined;
|
|
28
|
-
license?: string | undefined;
|
|
29
|
-
}>, "many">>;
|
|
30
|
-
videos: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
31
|
-
content_loc: zod.ZodString;
|
|
32
|
-
player_loc: zod.ZodOptional<zod.ZodString>;
|
|
33
|
-
duration: zod.ZodOptional<zod.ZodString>;
|
|
34
|
-
expiration_date: zod.ZodOptional<zod.ZodDate>;
|
|
35
|
-
rating: zod.ZodOptional<zod.ZodNumber>;
|
|
36
|
-
view_count: zod.ZodOptional<zod.ZodNumber>;
|
|
37
|
-
publication_date: zod.ZodOptional<zod.ZodDate>;
|
|
38
|
-
family_friendly: zod.ZodOptional<zod.ZodBoolean>;
|
|
39
|
-
tag: zod.ZodOptional<zod.ZodString>;
|
|
40
|
-
category: zod.ZodOptional<zod.ZodString>;
|
|
41
|
-
restriction: zod.ZodOptional<zod.ZodObject<{
|
|
42
|
-
relationship: zod.ZodOptional<zod.ZodLiteral<"allow">>;
|
|
43
|
-
value: zod.ZodOptional<zod.ZodString>;
|
|
44
|
-
}, "strip", zod.ZodTypeAny, {
|
|
45
|
-
value?: string | undefined;
|
|
46
|
-
relationship?: "allow" | undefined;
|
|
47
|
-
}, {
|
|
48
|
-
value?: string | undefined;
|
|
49
|
-
relationship?: "allow" | undefined;
|
|
50
|
-
}>>;
|
|
51
|
-
gallery_loc: zod.ZodOptional<zod.ZodString>;
|
|
52
|
-
price: zod.ZodOptional<zod.ZodString>;
|
|
53
|
-
requires_subscription: zod.ZodOptional<zod.ZodBoolean>;
|
|
54
|
-
uploader: zod.ZodOptional<zod.ZodString>;
|
|
55
|
-
}, "strip", zod.ZodTypeAny, {
|
|
56
|
-
content_loc: string;
|
|
57
|
-
player_loc?: string | undefined;
|
|
58
|
-
duration?: string | undefined;
|
|
59
|
-
expiration_date?: Date | undefined;
|
|
60
|
-
rating?: number | undefined;
|
|
61
|
-
view_count?: number | undefined;
|
|
62
|
-
publication_date?: Date | undefined;
|
|
63
|
-
family_friendly?: boolean | undefined;
|
|
64
|
-
tag?: string | undefined;
|
|
65
|
-
category?: string | undefined;
|
|
66
|
-
restriction?: {
|
|
67
|
-
value?: string | undefined;
|
|
68
|
-
relationship?: "allow" | undefined;
|
|
69
|
-
} | undefined;
|
|
70
|
-
gallery_loc?: string | undefined;
|
|
71
|
-
price?: string | undefined;
|
|
72
|
-
requires_subscription?: boolean | undefined;
|
|
73
|
-
uploader?: string | undefined;
|
|
74
|
-
}, {
|
|
75
|
-
content_loc: string;
|
|
76
|
-
player_loc?: string | undefined;
|
|
77
|
-
duration?: string | undefined;
|
|
78
|
-
expiration_date?: Date | undefined;
|
|
79
|
-
rating?: number | undefined;
|
|
80
|
-
view_count?: number | undefined;
|
|
81
|
-
publication_date?: Date | undefined;
|
|
82
|
-
family_friendly?: boolean | undefined;
|
|
83
|
-
tag?: string | undefined;
|
|
84
|
-
category?: string | undefined;
|
|
85
|
-
restriction?: {
|
|
86
|
-
value?: string | undefined;
|
|
87
|
-
relationship?: "allow" | undefined;
|
|
88
|
-
} | undefined;
|
|
89
|
-
gallery_loc?: string | undefined;
|
|
90
|
-
price?: string | undefined;
|
|
91
|
-
requires_subscription?: boolean | undefined;
|
|
92
|
-
uploader?: string | undefined;
|
|
93
|
-
}>, "many">>;
|
|
94
|
-
}, "strip", zod.ZodTypeAny, {
|
|
95
|
-
loc?: string | undefined;
|
|
96
|
-
lastmod?: Date | undefined;
|
|
97
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
98
|
-
priority?: number | undefined;
|
|
99
|
-
images?: {
|
|
100
|
-
loc: string;
|
|
101
|
-
caption?: string | undefined;
|
|
102
|
-
geo_location?: string | undefined;
|
|
103
|
-
title?: string | undefined;
|
|
104
|
-
license?: string | undefined;
|
|
105
|
-
}[] | undefined;
|
|
106
|
-
videos?: {
|
|
107
|
-
content_loc: string;
|
|
108
|
-
player_loc?: string | undefined;
|
|
109
|
-
duration?: string | undefined;
|
|
110
|
-
expiration_date?: Date | undefined;
|
|
111
|
-
rating?: number | undefined;
|
|
112
|
-
view_count?: number | undefined;
|
|
113
|
-
publication_date?: Date | undefined;
|
|
114
|
-
family_friendly?: boolean | undefined;
|
|
115
|
-
tag?: string | undefined;
|
|
116
|
-
category?: string | undefined;
|
|
117
|
-
restriction?: {
|
|
118
|
-
value?: string | undefined;
|
|
119
|
-
relationship?: "allow" | undefined;
|
|
120
|
-
} | undefined;
|
|
121
|
-
gallery_loc?: string | undefined;
|
|
122
|
-
price?: string | undefined;
|
|
123
|
-
requires_subscription?: boolean | undefined;
|
|
124
|
-
uploader?: string | undefined;
|
|
125
|
-
}[] | undefined;
|
|
126
|
-
}, {
|
|
127
|
-
loc?: string | undefined;
|
|
128
|
-
lastmod?: Date | undefined;
|
|
129
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
130
|
-
priority?: number | undefined;
|
|
131
|
-
images?: {
|
|
132
|
-
loc: string;
|
|
133
|
-
caption?: string | undefined;
|
|
134
|
-
geo_location?: string | undefined;
|
|
135
|
-
title?: string | undefined;
|
|
136
|
-
license?: string | undefined;
|
|
137
|
-
}[] | undefined;
|
|
138
|
-
videos?: {
|
|
139
|
-
content_loc: string;
|
|
140
|
-
player_loc?: string | undefined;
|
|
141
|
-
duration?: string | undefined;
|
|
142
|
-
expiration_date?: Date | undefined;
|
|
143
|
-
rating?: number | undefined;
|
|
144
|
-
view_count?: number | undefined;
|
|
145
|
-
publication_date?: Date | undefined;
|
|
146
|
-
family_friendly?: boolean | undefined;
|
|
147
|
-
tag?: string | undefined;
|
|
148
|
-
category?: string | undefined;
|
|
149
|
-
restriction?: {
|
|
150
|
-
value?: string | undefined;
|
|
151
|
-
relationship?: "allow" | undefined;
|
|
152
|
-
} | undefined;
|
|
153
|
-
gallery_loc?: string | undefined;
|
|
154
|
-
price?: string | undefined;
|
|
155
|
-
requires_subscription?: boolean | undefined;
|
|
156
|
-
uploader?: string | undefined;
|
|
157
|
-
}[] | undefined;
|
|
158
|
-
}>>;
|
|
159
|
-
}, "strip", zod.ZodTypeAny, {
|
|
160
|
-
sitemap?: {
|
|
161
|
-
loc?: string | undefined;
|
|
162
|
-
lastmod?: Date | undefined;
|
|
163
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
164
|
-
priority?: number | undefined;
|
|
165
|
-
images?: {
|
|
166
|
-
loc: string;
|
|
167
|
-
caption?: string | undefined;
|
|
168
|
-
geo_location?: string | undefined;
|
|
169
|
-
title?: string | undefined;
|
|
170
|
-
license?: string | undefined;
|
|
171
|
-
}[] | undefined;
|
|
172
|
-
videos?: {
|
|
173
|
-
content_loc: string;
|
|
174
|
-
player_loc?: string | undefined;
|
|
175
|
-
duration?: string | undefined;
|
|
176
|
-
expiration_date?: Date | undefined;
|
|
177
|
-
rating?: number | undefined;
|
|
178
|
-
view_count?: number | undefined;
|
|
179
|
-
publication_date?: Date | undefined;
|
|
180
|
-
family_friendly?: boolean | undefined;
|
|
181
|
-
tag?: string | undefined;
|
|
182
|
-
category?: string | undefined;
|
|
183
|
-
restriction?: {
|
|
184
|
-
value?: string | undefined;
|
|
185
|
-
relationship?: "allow" | undefined;
|
|
186
|
-
} | undefined;
|
|
187
|
-
gallery_loc?: string | undefined;
|
|
188
|
-
price?: string | undefined;
|
|
189
|
-
requires_subscription?: boolean | undefined;
|
|
190
|
-
uploader?: string | undefined;
|
|
191
|
-
}[] | undefined;
|
|
192
|
-
} | undefined;
|
|
193
|
-
}, {
|
|
194
|
-
sitemap?: {
|
|
195
|
-
loc?: string | undefined;
|
|
196
|
-
lastmod?: Date | undefined;
|
|
197
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
198
|
-
priority?: number | undefined;
|
|
199
|
-
images?: {
|
|
200
|
-
loc: string;
|
|
201
|
-
caption?: string | undefined;
|
|
202
|
-
geo_location?: string | undefined;
|
|
203
|
-
title?: string | undefined;
|
|
204
|
-
license?: string | undefined;
|
|
205
|
-
}[] | undefined;
|
|
206
|
-
videos?: {
|
|
207
|
-
content_loc: string;
|
|
208
|
-
player_loc?: string | undefined;
|
|
209
|
-
duration?: string | undefined;
|
|
210
|
-
expiration_date?: Date | undefined;
|
|
211
|
-
rating?: number | undefined;
|
|
212
|
-
view_count?: number | undefined;
|
|
213
|
-
publication_date?: Date | undefined;
|
|
214
|
-
family_friendly?: boolean | undefined;
|
|
215
|
-
tag?: string | undefined;
|
|
216
|
-
category?: string | undefined;
|
|
217
|
-
restriction?: {
|
|
218
|
-
value?: string | undefined;
|
|
219
|
-
relationship?: "allow" | undefined;
|
|
220
|
-
} | undefined;
|
|
221
|
-
gallery_loc?: string | undefined;
|
|
222
|
-
price?: string | undefined;
|
|
223
|
-
requires_subscription?: boolean | undefined;
|
|
224
|
-
uploader?: string | undefined;
|
|
225
|
-
}[] | undefined;
|
|
226
|
-
} | undefined;
|
|
227
|
-
}>;
|
|
228
|
-
type SitemapSchema = TypeOf<typeof schema>;
|
|
229
|
-
declare function asSitemapCollection<T extends ZodRawShape>(collection: Collection<T>): Collection<T>;
|
|
230
|
-
|
|
231
|
-
export { asSitemapCollection, schema };
|
|
232
|
-
export type { SitemapSchema };
|