@nuxtjs/sitemap 7.2.0 → 7.2.1

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,7 +1,7 @@
1
1
  <!DOCTYPE html><html data-capo=""><head><meta charset="utf-8">
2
2
  <meta name="viewport" content="width=device-width, initial-scale=1">
3
- <link rel="stylesheet" href="/__sitemap__/devtools/_nuxt/entry.WCUheyaE.css" crossorigin>
4
- <link rel="modulepreload" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/sSZQ7D2b.js">
3
+ <link rel="stylesheet" href="/__sitemap__/devtools/_nuxt/entry.CJ2Eg9q-.css" crossorigin>
4
+ <link rel="modulepreload" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/CBErYmNG.js">
5
5
  <link rel="prefetch" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/DsBKuouk.js">
6
6
  <link rel="prefetch" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/D_z4Izcz.js">
7
7
  <link rel="prefetch" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/727ZlQH0.js">
@@ -276,8 +276,8 @@
276
276
  <link rel="prefetch" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/CVO1_9PV.js">
277
277
  <link rel="prefetch" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/CG6Dc4jp.js">
278
278
  <link rel="prefetch" as="style" crossorigin href="/__sitemap__/devtools/_nuxt/error-404.DWO74KKP.css">
279
- <link rel="prefetch" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/Djzw0wLt.js">
279
+ <link rel="prefetch" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/CxhUe2GG.js">
280
280
  <link rel="prefetch" as="style" crossorigin href="/__sitemap__/devtools/_nuxt/error-500.DVC0lzO_.css">
281
- <link rel="prefetch" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/DIH-cllJ.js">
282
- <script type="module" src="/__sitemap__/devtools/_nuxt/sSZQ7D2b.js" crossorigin></script></head><body><div id="__nuxt"></div><div id="teleports"></div><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1737249777375,false]</script>
283
- <script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/__sitemap__/devtools",buildId:"cbd506e7-b089-42a0-8062-dff717a0d923",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script></body></html>
281
+ <link rel="prefetch" as="script" crossorigin href="/__sitemap__/devtools/_nuxt/B-Cf5GGq.js">
282
+ <script type="module" src="/__sitemap__/devtools/_nuxt/CBErYmNG.js" crossorigin></script></head><body><div id="__nuxt"></div><div id="teleports"></div><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1737342429757,false]</script>
283
+ <script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/__sitemap__/devtools",buildId:"b551cdd3-b342-41ea-8265-0fb9c87a6b0b",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script></body></html>
@@ -0,0 +1,48 @@
1
+ 'use strict';
2
+
3
+ const content = require('@nuxt/content');
4
+
5
+ const schema = content.z.object({
6
+ sitemap: content.z.object({
7
+ loc: content.z.string().optional(),
8
+ lastmod: content.z.date().optional(),
9
+ changefreq: content.z.union([content.z.literal("always"), content.z.literal("hourly"), content.z.literal("daily"), content.z.literal("weekly"), content.z.literal("monthly"), content.z.literal("yearly"), content.z.literal("never")]).optional(),
10
+ priority: content.z.number().optional(),
11
+ images: content.z.array(content.z.object({
12
+ loc: content.z.string(),
13
+ caption: content.z.string().optional(),
14
+ geo_location: content.z.string().optional(),
15
+ title: content.z.string().optional(),
16
+ license: content.z.string().optional()
17
+ })).optional(),
18
+ videos: content.z.array(content.z.object({
19
+ content_loc: content.z.string(),
20
+ player_loc: content.z.string().optional(),
21
+ duration: content.z.string().optional(),
22
+ expiration_date: content.z.date().optional(),
23
+ rating: content.z.number().optional(),
24
+ view_count: content.z.number().optional(),
25
+ publication_date: content.z.date().optional(),
26
+ family_friendly: content.z.boolean().optional(),
27
+ tag: content.z.string().optional(),
28
+ category: content.z.string().optional(),
29
+ restriction: content.z.object({
30
+ relationship: content.z.literal("allow").optional(),
31
+ value: content.z.string().optional()
32
+ }).optional(),
33
+ gallery_loc: content.z.string().optional(),
34
+ price: content.z.string().optional(),
35
+ requires_subscription: content.z.boolean().optional(),
36
+ uploader: content.z.string().optional()
37
+ })).optional()
38
+ }).optional()
39
+ });
40
+ function asSitemapCollection(collection) {
41
+ if (collection.type === "page") {
42
+ collection.schema = collection.schema ? schema.extend(collection.schema.shape) : schema;
43
+ }
44
+ return collection;
45
+ }
46
+
47
+ exports.asSitemapCollection = asSitemapCollection;
48
+ exports.schema = schema;
@@ -0,0 +1,231 @@
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 { type SitemapSchema, asSitemapCollection, schema };
@@ -0,0 +1,231 @@
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 { type SitemapSchema, asSitemapCollection, schema };