@bscotch/gamemaker-releases 0.4.1 → 0.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/LICENSE.md +23 -0
- package/README.md +1 -1
- package/dist/browser.d.ts +7 -7
- package/dist/browser.js +6 -6
- package/dist/constants.d.ts +2 -2
- package/dist/constants.js +4 -4
- package/dist/feeds.d.ts +4 -4
- package/dist/feeds.d.ts.map +1 -1
- package/dist/feeds.js +80 -77
- package/dist/feeds.js.map +1 -1
- package/dist/feeds.lib.d.ts +3 -3
- package/dist/feeds.lib.js +52 -52
- package/dist/feeds.types.d.ts +542 -542
- package/dist/feeds.types.js +68 -68
- package/dist/fetch.d.ts +5 -5
- package/dist/fetch.js +36 -36
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/notes.d.ts +33 -33
- package/dist/notes.d.ts.map +1 -1
- package/dist/notes.js +142 -140
- package/dist/notes.js.map +1 -1
- package/dist/releases.d.ts +49 -49
- package/dist/releases.d.ts.map +1 -1
- package/dist/releases.js +19 -19
- package/dist/releases.js.map +1 -1
- package/dist/urls.d.ts +12 -12
- package/dist/urls.js +19 -19
- package/dist/utils.d.ts +8 -8
- package/dist/utils.js +43 -43
- package/package.json +7 -7
package/dist/feeds.types.d.ts
CHANGED
|
@@ -1,543 +1,543 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
export interface RssFeedEntry {
|
|
3
|
-
title: string;
|
|
4
|
-
pubDate: string;
|
|
5
|
-
link?: string;
|
|
6
|
-
comments: string;
|
|
7
|
-
description?: string;
|
|
8
|
-
}
|
|
9
|
-
export type Channel = typeof channels[number];
|
|
10
|
-
export declare const channels: readonly ["lts", "stable", "beta", "unstable"];
|
|
11
|
-
export declare const channelSchema: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
12
|
-
export type ArtifactType = typeof artifactTypes[number];
|
|
13
|
-
export declare const artifactTypes: readonly ["ide", "runtime"];
|
|
14
|
-
export declare const rssFeedSchema: z.ZodObject<{
|
|
15
|
-
rss: z.ZodObject<{
|
|
16
|
-
channel: z.ZodObject<{
|
|
17
|
-
title: z.ZodEffects<z.ZodString, string, string>;
|
|
18
|
-
description: z.ZodEffects<z.ZodString, string, string>;
|
|
19
|
-
link: z.ZodString;
|
|
20
|
-
item: z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
21
|
-
title: z.ZodString;
|
|
22
|
-
pubDate: z.ZodString;
|
|
23
|
-
link: z.ZodOptional<z.ZodString>;
|
|
24
|
-
comments: z.ZodString;
|
|
25
|
-
description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
26
|
-
}, "strip", z.ZodTypeAny, {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}, {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}>, "many">, {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}[], unknown>;
|
|
45
|
-
}, "strip", z.ZodTypeAny, {
|
|
46
|
-
title: string;
|
|
47
|
-
description: string;
|
|
48
|
-
link: string;
|
|
49
|
-
item: {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
}[];
|
|
56
|
-
}, {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}>;
|
|
62
|
-
}, "strip", z.ZodTypeAny, {
|
|
63
|
-
channel: {
|
|
64
|
-
title: string;
|
|
65
|
-
description: string;
|
|
66
|
-
link: string;
|
|
67
|
-
item: {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
}[];
|
|
74
|
-
};
|
|
75
|
-
}, {
|
|
76
|
-
channel: {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
};
|
|
82
|
-
}>;
|
|
83
|
-
}, "strip", z.ZodTypeAny, {
|
|
84
|
-
rss: {
|
|
85
|
-
channel: {
|
|
86
|
-
title: string;
|
|
87
|
-
description: string;
|
|
88
|
-
link: string;
|
|
89
|
-
item: {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
}[];
|
|
96
|
-
};
|
|
97
|
-
};
|
|
98
|
-
}, {
|
|
99
|
-
rss: {
|
|
100
|
-
channel: {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
};
|
|
106
|
-
};
|
|
107
|
-
}>;
|
|
108
|
-
export type GameMakerArtifact = z.infer<typeof gameMakerArtifactSchema>;
|
|
109
|
-
export declare const gameMakerArtifactSchema: z.ZodObject<{
|
|
110
|
-
type: z.ZodEnum<["ide", "runtime"]>;
|
|
111
|
-
version: z.ZodString;
|
|
112
|
-
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
113
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
114
|
-
feedUrl: z.ZodString;
|
|
115
|
-
publishedAt: z.ZodString;
|
|
116
|
-
link: z.ZodOptional<z.ZodString>;
|
|
117
|
-
notesUrl: z.ZodString;
|
|
118
|
-
}, "strip", z.ZodTypeAny, {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}, {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
}>;
|
|
137
|
-
export type GameMakerArtifactWithNotes = z.infer<typeof gameMakerArtifactWithNotesSchema>;
|
|
138
|
-
export declare const gameMakerArtifactWithNotesSchema: z.ZodObject<{
|
|
139
|
-
type: z.ZodEnum<["ide", "runtime"]>;
|
|
140
|
-
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
141
|
-
link: z.ZodOptional<z.ZodString>;
|
|
142
|
-
version: z.ZodString;
|
|
143
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
144
|
-
feedUrl: z.ZodString;
|
|
145
|
-
publishedAt: z.ZodString;
|
|
146
|
-
notesUrl: z.ZodString;
|
|
147
|
-
notes: z.ZodObject<{
|
|
148
|
-
since: z.ZodNullable<z.ZodString>;
|
|
149
|
-
groups: z.ZodArray<z.ZodObject<{
|
|
150
|
-
title: z.ZodEffects<z.ZodString, string, string>;
|
|
151
|
-
changes: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
152
|
-
}, "strip", z.ZodTypeAny, {
|
|
153
|
-
title: string;
|
|
154
|
-
changes: string[];
|
|
155
|
-
}, {
|
|
156
|
-
title: string;
|
|
157
|
-
changes: string[];
|
|
158
|
-
}>, "many">;
|
|
159
|
-
}, "strip", z.ZodTypeAny, {
|
|
160
|
-
since: string | null;
|
|
161
|
-
groups: {
|
|
162
|
-
title: string;
|
|
163
|
-
changes: string[];
|
|
164
|
-
}[];
|
|
165
|
-
}, {
|
|
166
|
-
since: string | null;
|
|
167
|
-
groups: {
|
|
168
|
-
title: string;
|
|
169
|
-
changes: string[];
|
|
170
|
-
}[];
|
|
171
|
-
}>;
|
|
172
|
-
}, "strip", z.ZodTypeAny, {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
}, {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
}>;
|
|
205
|
-
export type GameMakerReleaseWithNotes = z.infer<typeof gameMakerReleaseWithNotesSchema>;
|
|
206
|
-
export declare const gameMakerReleaseWithNotesSchema: z.ZodObject<{
|
|
207
|
-
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
208
|
-
summary: z.ZodEffects<z.ZodString, string, string>;
|
|
209
|
-
publishedAt: z.ZodString;
|
|
210
|
-
ide: z.ZodObject<Omit<{
|
|
211
|
-
type: z.ZodEnum<["ide", "runtime"]>;
|
|
212
|
-
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
213
|
-
link: z.ZodOptional<z.ZodString>;
|
|
214
|
-
version: z.ZodString;
|
|
215
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
216
|
-
feedUrl: z.ZodString;
|
|
217
|
-
publishedAt: z.ZodString;
|
|
218
|
-
notesUrl: z.ZodString;
|
|
219
|
-
notes: z.ZodObject<{
|
|
220
|
-
since: z.ZodNullable<z.ZodString>;
|
|
221
|
-
groups: z.ZodArray<z.ZodObject<{
|
|
222
|
-
title: z.ZodEffects<z.ZodString, string, string>;
|
|
223
|
-
changes: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
224
|
-
}, "strip", z.ZodTypeAny, {
|
|
225
|
-
title: string;
|
|
226
|
-
changes: string[];
|
|
227
|
-
}, {
|
|
228
|
-
title: string;
|
|
229
|
-
changes: string[];
|
|
230
|
-
}>, "many">;
|
|
231
|
-
}, "strip", z.ZodTypeAny, {
|
|
232
|
-
since: string | null;
|
|
233
|
-
groups: {
|
|
234
|
-
title: string;
|
|
235
|
-
changes: string[];
|
|
236
|
-
}[];
|
|
237
|
-
}, {
|
|
238
|
-
since: string | null;
|
|
239
|
-
groups: {
|
|
240
|
-
title: string;
|
|
241
|
-
changes: string[];
|
|
242
|
-
}[];
|
|
243
|
-
}>;
|
|
244
|
-
}, "summary">, "strip", z.ZodTypeAny, {
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
}, {
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
}>;
|
|
275
|
-
runtime: z.ZodObject<Omit<{
|
|
276
|
-
type: z.ZodEnum<["ide", "runtime"]>;
|
|
277
|
-
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
278
|
-
link: z.ZodOptional<z.ZodString>;
|
|
279
|
-
version: z.ZodString;
|
|
280
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
281
|
-
feedUrl: z.ZodString;
|
|
282
|
-
publishedAt: z.ZodString;
|
|
283
|
-
notesUrl: z.ZodString;
|
|
284
|
-
notes: z.ZodObject<{
|
|
285
|
-
since: z.ZodNullable<z.ZodString>;
|
|
286
|
-
groups: z.ZodArray<z.ZodObject<{
|
|
287
|
-
title: z.ZodEffects<z.ZodString, string, string>;
|
|
288
|
-
changes: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
289
|
-
}, "strip", z.ZodTypeAny, {
|
|
290
|
-
title: string;
|
|
291
|
-
changes: string[];
|
|
292
|
-
}, {
|
|
293
|
-
title: string;
|
|
294
|
-
changes: string[];
|
|
295
|
-
}>, "many">;
|
|
296
|
-
}, "strip", z.ZodTypeAny, {
|
|
297
|
-
since: string | null;
|
|
298
|
-
groups: {
|
|
299
|
-
title: string;
|
|
300
|
-
changes: string[];
|
|
301
|
-
}[];
|
|
302
|
-
}, {
|
|
303
|
-
since: string | null;
|
|
304
|
-
groups: {
|
|
305
|
-
title: string;
|
|
306
|
-
changes: string[];
|
|
307
|
-
}[];
|
|
308
|
-
}>;
|
|
309
|
-
}, "summary">, "strip", z.ZodTypeAny, {
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
}, {
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
}>;
|
|
340
|
-
}, "strip", z.ZodTypeAny, {
|
|
341
|
-
ide: {
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
};
|
|
357
|
-
runtime: {
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
};
|
|
373
|
-
channel: "lts" | "stable" | "beta" | "unstable";
|
|
374
|
-
summary: string;
|
|
375
|
-
publishedAt: string;
|
|
376
|
-
}, {
|
|
377
|
-
ide: {
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
};
|
|
393
|
-
runtime: {
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
};
|
|
409
|
-
channel: "lts" | "stable" | "beta" | "unstable";
|
|
410
|
-
summary: string;
|
|
411
|
-
publishedAt: string;
|
|
412
|
-
}>;
|
|
413
|
-
export type GameMakerRelease = z.infer<typeof gameMakerReleaseSchema>;
|
|
414
|
-
export declare const gameMakerReleaseSchema: z.ZodObject<{
|
|
415
|
-
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
416
|
-
summary: z.ZodEffects<z.ZodString, string, string>;
|
|
417
|
-
publishedAt: z.ZodString;
|
|
418
|
-
ide: z.ZodObject<Omit<{
|
|
419
|
-
type: z.ZodEnum<["ide", "runtime"]>;
|
|
420
|
-
version: z.ZodString;
|
|
421
|
-
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
422
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
423
|
-
feedUrl: z.ZodString;
|
|
424
|
-
publishedAt: z.ZodString;
|
|
425
|
-
link: z.ZodOptional<z.ZodString>;
|
|
426
|
-
notesUrl: z.ZodString;
|
|
427
|
-
}, "summary">, "strip", z.ZodTypeAny, {
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
}, {
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
}>;
|
|
444
|
-
runtime: z.ZodObject<Omit<{
|
|
445
|
-
type: z.ZodEnum<["ide", "runtime"]>;
|
|
446
|
-
version: z.ZodString;
|
|
447
|
-
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
448
|
-
summary: z.ZodOptional<z.ZodString>;
|
|
449
|
-
feedUrl: z.ZodString;
|
|
450
|
-
publishedAt: z.ZodString;
|
|
451
|
-
link: z.ZodOptional<z.ZodString>;
|
|
452
|
-
notesUrl: z.ZodString;
|
|
453
|
-
}, "summary">, "strip", z.ZodTypeAny, {
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
}, {
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
}>;
|
|
470
|
-
}, "strip", z.ZodTypeAny, {
|
|
471
|
-
ide: {
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
};
|
|
480
|
-
runtime: {
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
};
|
|
489
|
-
channel: "lts" | "stable" | "beta" | "unstable";
|
|
490
|
-
summary: string;
|
|
491
|
-
publishedAt: string;
|
|
492
|
-
}, {
|
|
493
|
-
ide: {
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
};
|
|
502
|
-
runtime: {
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
};
|
|
511
|
-
channel: "lts" | "stable" | "beta" | "unstable";
|
|
512
|
-
summary: string;
|
|
513
|
-
publishedAt: string;
|
|
514
|
-
}>;
|
|
515
|
-
export type RawReleaseNote = z.infer<typeof rawReleaseNoteSchema>;
|
|
516
|
-
export declare const rawReleaseNoteSchema: z.ZodObject<{
|
|
517
|
-
type: z.ZodOptional<z.ZodEnum<["ide", "runtime"]>>;
|
|
518
|
-
version: z.ZodString;
|
|
519
|
-
release_notes: z.ZodArray<z.ZodString, "many">;
|
|
520
|
-
}, "strict", z.ZodTypeAny, {
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
}, {
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
}>;
|
|
529
|
-
export type RawReleaseNotesCache = Record<string, RawReleaseNote>;
|
|
530
|
-
export declare const rawReleaseNotesCacheSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
531
|
-
type: z.ZodOptional<z.ZodEnum<["ide", "runtime"]>>;
|
|
532
|
-
version: z.ZodString;
|
|
533
|
-
release_notes: z.ZodArray<z.ZodString, "many">;
|
|
534
|
-
}, "strict", z.ZodTypeAny, {
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
}, {
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
}>>;
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export interface RssFeedEntry {
|
|
3
|
+
title: string;
|
|
4
|
+
pubDate: string;
|
|
5
|
+
link?: string;
|
|
6
|
+
comments: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
}
|
|
9
|
+
export type Channel = typeof channels[number];
|
|
10
|
+
export declare const channels: readonly ["lts", "stable", "beta", "unstable"];
|
|
11
|
+
export declare const channelSchema: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
12
|
+
export type ArtifactType = typeof artifactTypes[number];
|
|
13
|
+
export declare const artifactTypes: readonly ["ide", "runtime"];
|
|
14
|
+
export declare const rssFeedSchema: z.ZodObject<{
|
|
15
|
+
rss: z.ZodObject<{
|
|
16
|
+
channel: z.ZodObject<{
|
|
17
|
+
title: z.ZodEffects<z.ZodString, string, string>;
|
|
18
|
+
description: z.ZodEffects<z.ZodString, string, string>;
|
|
19
|
+
link: z.ZodString;
|
|
20
|
+
item: z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
21
|
+
title: z.ZodString;
|
|
22
|
+
pubDate: z.ZodString;
|
|
23
|
+
link: z.ZodOptional<z.ZodString>;
|
|
24
|
+
comments: z.ZodString;
|
|
25
|
+
description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
26
|
+
}, "strip", z.ZodTypeAny, {
|
|
27
|
+
title: string;
|
|
28
|
+
pubDate: string;
|
|
29
|
+
comments: string;
|
|
30
|
+
link?: string | undefined;
|
|
31
|
+
description?: string | undefined;
|
|
32
|
+
}, {
|
|
33
|
+
title: string;
|
|
34
|
+
pubDate: string;
|
|
35
|
+
comments: string;
|
|
36
|
+
link?: string | undefined;
|
|
37
|
+
description?: string | undefined;
|
|
38
|
+
}>, "many">, {
|
|
39
|
+
title: string;
|
|
40
|
+
pubDate: string;
|
|
41
|
+
comments: string;
|
|
42
|
+
link?: string | undefined;
|
|
43
|
+
description?: string | undefined;
|
|
44
|
+
}[], unknown>;
|
|
45
|
+
}, "strip", z.ZodTypeAny, {
|
|
46
|
+
title: string;
|
|
47
|
+
description: string;
|
|
48
|
+
link: string;
|
|
49
|
+
item: {
|
|
50
|
+
title: string;
|
|
51
|
+
pubDate: string;
|
|
52
|
+
comments: string;
|
|
53
|
+
link?: string | undefined;
|
|
54
|
+
description?: string | undefined;
|
|
55
|
+
}[];
|
|
56
|
+
}, {
|
|
57
|
+
title: string;
|
|
58
|
+
description: string;
|
|
59
|
+
link: string;
|
|
60
|
+
item?: unknown;
|
|
61
|
+
}>;
|
|
62
|
+
}, "strip", z.ZodTypeAny, {
|
|
63
|
+
channel: {
|
|
64
|
+
title: string;
|
|
65
|
+
description: string;
|
|
66
|
+
link: string;
|
|
67
|
+
item: {
|
|
68
|
+
title: string;
|
|
69
|
+
pubDate: string;
|
|
70
|
+
comments: string;
|
|
71
|
+
link?: string | undefined;
|
|
72
|
+
description?: string | undefined;
|
|
73
|
+
}[];
|
|
74
|
+
};
|
|
75
|
+
}, {
|
|
76
|
+
channel: {
|
|
77
|
+
title: string;
|
|
78
|
+
description: string;
|
|
79
|
+
link: string;
|
|
80
|
+
item?: unknown;
|
|
81
|
+
};
|
|
82
|
+
}>;
|
|
83
|
+
}, "strip", z.ZodTypeAny, {
|
|
84
|
+
rss: {
|
|
85
|
+
channel: {
|
|
86
|
+
title: string;
|
|
87
|
+
description: string;
|
|
88
|
+
link: string;
|
|
89
|
+
item: {
|
|
90
|
+
title: string;
|
|
91
|
+
pubDate: string;
|
|
92
|
+
comments: string;
|
|
93
|
+
link?: string | undefined;
|
|
94
|
+
description?: string | undefined;
|
|
95
|
+
}[];
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
}, {
|
|
99
|
+
rss: {
|
|
100
|
+
channel: {
|
|
101
|
+
title: string;
|
|
102
|
+
description: string;
|
|
103
|
+
link: string;
|
|
104
|
+
item?: unknown;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
}>;
|
|
108
|
+
export type GameMakerArtifact = z.infer<typeof gameMakerArtifactSchema>;
|
|
109
|
+
export declare const gameMakerArtifactSchema: z.ZodObject<{
|
|
110
|
+
type: z.ZodEnum<["ide", "runtime"]>;
|
|
111
|
+
version: z.ZodString;
|
|
112
|
+
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
113
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
114
|
+
feedUrl: z.ZodString;
|
|
115
|
+
publishedAt: z.ZodString;
|
|
116
|
+
link: z.ZodOptional<z.ZodString>;
|
|
117
|
+
notesUrl: z.ZodString;
|
|
118
|
+
}, "strip", z.ZodTypeAny, {
|
|
119
|
+
type: "ide" | "runtime";
|
|
120
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
121
|
+
version: string;
|
|
122
|
+
feedUrl: string;
|
|
123
|
+
publishedAt: string;
|
|
124
|
+
notesUrl: string;
|
|
125
|
+
summary?: string | undefined;
|
|
126
|
+
link?: string | undefined;
|
|
127
|
+
}, {
|
|
128
|
+
type: "ide" | "runtime";
|
|
129
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
130
|
+
version: string;
|
|
131
|
+
feedUrl: string;
|
|
132
|
+
publishedAt: string;
|
|
133
|
+
notesUrl: string;
|
|
134
|
+
summary?: string | undefined;
|
|
135
|
+
link?: string | undefined;
|
|
136
|
+
}>;
|
|
137
|
+
export type GameMakerArtifactWithNotes = z.infer<typeof gameMakerArtifactWithNotesSchema>;
|
|
138
|
+
export declare const gameMakerArtifactWithNotesSchema: z.ZodObject<{
|
|
139
|
+
type: z.ZodEnum<["ide", "runtime"]>;
|
|
140
|
+
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
141
|
+
link: z.ZodOptional<z.ZodString>;
|
|
142
|
+
version: z.ZodString;
|
|
143
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
144
|
+
feedUrl: z.ZodString;
|
|
145
|
+
publishedAt: z.ZodString;
|
|
146
|
+
notesUrl: z.ZodString;
|
|
147
|
+
notes: z.ZodObject<{
|
|
148
|
+
since: z.ZodNullable<z.ZodString>;
|
|
149
|
+
groups: z.ZodArray<z.ZodObject<{
|
|
150
|
+
title: z.ZodEffects<z.ZodString, string, string>;
|
|
151
|
+
changes: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
152
|
+
}, "strip", z.ZodTypeAny, {
|
|
153
|
+
title: string;
|
|
154
|
+
changes: string[];
|
|
155
|
+
}, {
|
|
156
|
+
title: string;
|
|
157
|
+
changes: string[];
|
|
158
|
+
}>, "many">;
|
|
159
|
+
}, "strip", z.ZodTypeAny, {
|
|
160
|
+
since: string | null;
|
|
161
|
+
groups: {
|
|
162
|
+
title: string;
|
|
163
|
+
changes: string[];
|
|
164
|
+
}[];
|
|
165
|
+
}, {
|
|
166
|
+
since: string | null;
|
|
167
|
+
groups: {
|
|
168
|
+
title: string;
|
|
169
|
+
changes: string[];
|
|
170
|
+
}[];
|
|
171
|
+
}>;
|
|
172
|
+
}, "strip", z.ZodTypeAny, {
|
|
173
|
+
type: "ide" | "runtime";
|
|
174
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
175
|
+
version: string;
|
|
176
|
+
feedUrl: string;
|
|
177
|
+
publishedAt: string;
|
|
178
|
+
notesUrl: string;
|
|
179
|
+
notes: {
|
|
180
|
+
since: string | null;
|
|
181
|
+
groups: {
|
|
182
|
+
title: string;
|
|
183
|
+
changes: string[];
|
|
184
|
+
}[];
|
|
185
|
+
};
|
|
186
|
+
link?: string | undefined;
|
|
187
|
+
summary?: string | undefined;
|
|
188
|
+
}, {
|
|
189
|
+
type: "ide" | "runtime";
|
|
190
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
191
|
+
version: string;
|
|
192
|
+
feedUrl: string;
|
|
193
|
+
publishedAt: string;
|
|
194
|
+
notesUrl: string;
|
|
195
|
+
notes: {
|
|
196
|
+
since: string | null;
|
|
197
|
+
groups: {
|
|
198
|
+
title: string;
|
|
199
|
+
changes: string[];
|
|
200
|
+
}[];
|
|
201
|
+
};
|
|
202
|
+
link?: string | undefined;
|
|
203
|
+
summary?: string | undefined;
|
|
204
|
+
}>;
|
|
205
|
+
export type GameMakerReleaseWithNotes = z.infer<typeof gameMakerReleaseWithNotesSchema>;
|
|
206
|
+
export declare const gameMakerReleaseWithNotesSchema: z.ZodObject<{
|
|
207
|
+
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
208
|
+
summary: z.ZodEffects<z.ZodString, string, string>;
|
|
209
|
+
publishedAt: z.ZodString;
|
|
210
|
+
ide: z.ZodObject<Omit<{
|
|
211
|
+
type: z.ZodEnum<["ide", "runtime"]>;
|
|
212
|
+
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
213
|
+
link: z.ZodOptional<z.ZodString>;
|
|
214
|
+
version: z.ZodString;
|
|
215
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
216
|
+
feedUrl: z.ZodString;
|
|
217
|
+
publishedAt: z.ZodString;
|
|
218
|
+
notesUrl: z.ZodString;
|
|
219
|
+
notes: z.ZodObject<{
|
|
220
|
+
since: z.ZodNullable<z.ZodString>;
|
|
221
|
+
groups: z.ZodArray<z.ZodObject<{
|
|
222
|
+
title: z.ZodEffects<z.ZodString, string, string>;
|
|
223
|
+
changes: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
224
|
+
}, "strip", z.ZodTypeAny, {
|
|
225
|
+
title: string;
|
|
226
|
+
changes: string[];
|
|
227
|
+
}, {
|
|
228
|
+
title: string;
|
|
229
|
+
changes: string[];
|
|
230
|
+
}>, "many">;
|
|
231
|
+
}, "strip", z.ZodTypeAny, {
|
|
232
|
+
since: string | null;
|
|
233
|
+
groups: {
|
|
234
|
+
title: string;
|
|
235
|
+
changes: string[];
|
|
236
|
+
}[];
|
|
237
|
+
}, {
|
|
238
|
+
since: string | null;
|
|
239
|
+
groups: {
|
|
240
|
+
title: string;
|
|
241
|
+
changes: string[];
|
|
242
|
+
}[];
|
|
243
|
+
}>;
|
|
244
|
+
}, "summary">, "strip", z.ZodTypeAny, {
|
|
245
|
+
type: "ide" | "runtime";
|
|
246
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
247
|
+
version: string;
|
|
248
|
+
feedUrl: string;
|
|
249
|
+
publishedAt: string;
|
|
250
|
+
notesUrl: string;
|
|
251
|
+
notes: {
|
|
252
|
+
since: string | null;
|
|
253
|
+
groups: {
|
|
254
|
+
title: string;
|
|
255
|
+
changes: string[];
|
|
256
|
+
}[];
|
|
257
|
+
};
|
|
258
|
+
link?: string | undefined;
|
|
259
|
+
}, {
|
|
260
|
+
type: "ide" | "runtime";
|
|
261
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
262
|
+
version: string;
|
|
263
|
+
feedUrl: string;
|
|
264
|
+
publishedAt: string;
|
|
265
|
+
notesUrl: string;
|
|
266
|
+
notes: {
|
|
267
|
+
since: string | null;
|
|
268
|
+
groups: {
|
|
269
|
+
title: string;
|
|
270
|
+
changes: string[];
|
|
271
|
+
}[];
|
|
272
|
+
};
|
|
273
|
+
link?: string | undefined;
|
|
274
|
+
}>;
|
|
275
|
+
runtime: z.ZodObject<Omit<{
|
|
276
|
+
type: z.ZodEnum<["ide", "runtime"]>;
|
|
277
|
+
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
278
|
+
link: z.ZodOptional<z.ZodString>;
|
|
279
|
+
version: z.ZodString;
|
|
280
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
281
|
+
feedUrl: z.ZodString;
|
|
282
|
+
publishedAt: z.ZodString;
|
|
283
|
+
notesUrl: z.ZodString;
|
|
284
|
+
notes: z.ZodObject<{
|
|
285
|
+
since: z.ZodNullable<z.ZodString>;
|
|
286
|
+
groups: z.ZodArray<z.ZodObject<{
|
|
287
|
+
title: z.ZodEffects<z.ZodString, string, string>;
|
|
288
|
+
changes: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
289
|
+
}, "strip", z.ZodTypeAny, {
|
|
290
|
+
title: string;
|
|
291
|
+
changes: string[];
|
|
292
|
+
}, {
|
|
293
|
+
title: string;
|
|
294
|
+
changes: string[];
|
|
295
|
+
}>, "many">;
|
|
296
|
+
}, "strip", z.ZodTypeAny, {
|
|
297
|
+
since: string | null;
|
|
298
|
+
groups: {
|
|
299
|
+
title: string;
|
|
300
|
+
changes: string[];
|
|
301
|
+
}[];
|
|
302
|
+
}, {
|
|
303
|
+
since: string | null;
|
|
304
|
+
groups: {
|
|
305
|
+
title: string;
|
|
306
|
+
changes: string[];
|
|
307
|
+
}[];
|
|
308
|
+
}>;
|
|
309
|
+
}, "summary">, "strip", z.ZodTypeAny, {
|
|
310
|
+
type: "ide" | "runtime";
|
|
311
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
312
|
+
version: string;
|
|
313
|
+
feedUrl: string;
|
|
314
|
+
publishedAt: string;
|
|
315
|
+
notesUrl: string;
|
|
316
|
+
notes: {
|
|
317
|
+
since: string | null;
|
|
318
|
+
groups: {
|
|
319
|
+
title: string;
|
|
320
|
+
changes: string[];
|
|
321
|
+
}[];
|
|
322
|
+
};
|
|
323
|
+
link?: string | undefined;
|
|
324
|
+
}, {
|
|
325
|
+
type: "ide" | "runtime";
|
|
326
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
327
|
+
version: string;
|
|
328
|
+
feedUrl: string;
|
|
329
|
+
publishedAt: string;
|
|
330
|
+
notesUrl: string;
|
|
331
|
+
notes: {
|
|
332
|
+
since: string | null;
|
|
333
|
+
groups: {
|
|
334
|
+
title: string;
|
|
335
|
+
changes: string[];
|
|
336
|
+
}[];
|
|
337
|
+
};
|
|
338
|
+
link?: string | undefined;
|
|
339
|
+
}>;
|
|
340
|
+
}, "strip", z.ZodTypeAny, {
|
|
341
|
+
ide: {
|
|
342
|
+
type: "ide" | "runtime";
|
|
343
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
344
|
+
version: string;
|
|
345
|
+
feedUrl: string;
|
|
346
|
+
publishedAt: string;
|
|
347
|
+
notesUrl: string;
|
|
348
|
+
notes: {
|
|
349
|
+
since: string | null;
|
|
350
|
+
groups: {
|
|
351
|
+
title: string;
|
|
352
|
+
changes: string[];
|
|
353
|
+
}[];
|
|
354
|
+
};
|
|
355
|
+
link?: string | undefined;
|
|
356
|
+
};
|
|
357
|
+
runtime: {
|
|
358
|
+
type: "ide" | "runtime";
|
|
359
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
360
|
+
version: string;
|
|
361
|
+
feedUrl: string;
|
|
362
|
+
publishedAt: string;
|
|
363
|
+
notesUrl: string;
|
|
364
|
+
notes: {
|
|
365
|
+
since: string | null;
|
|
366
|
+
groups: {
|
|
367
|
+
title: string;
|
|
368
|
+
changes: string[];
|
|
369
|
+
}[];
|
|
370
|
+
};
|
|
371
|
+
link?: string | undefined;
|
|
372
|
+
};
|
|
373
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
374
|
+
summary: string;
|
|
375
|
+
publishedAt: string;
|
|
376
|
+
}, {
|
|
377
|
+
ide: {
|
|
378
|
+
type: "ide" | "runtime";
|
|
379
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
380
|
+
version: string;
|
|
381
|
+
feedUrl: string;
|
|
382
|
+
publishedAt: string;
|
|
383
|
+
notesUrl: string;
|
|
384
|
+
notes: {
|
|
385
|
+
since: string | null;
|
|
386
|
+
groups: {
|
|
387
|
+
title: string;
|
|
388
|
+
changes: string[];
|
|
389
|
+
}[];
|
|
390
|
+
};
|
|
391
|
+
link?: string | undefined;
|
|
392
|
+
};
|
|
393
|
+
runtime: {
|
|
394
|
+
type: "ide" | "runtime";
|
|
395
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
396
|
+
version: string;
|
|
397
|
+
feedUrl: string;
|
|
398
|
+
publishedAt: string;
|
|
399
|
+
notesUrl: string;
|
|
400
|
+
notes: {
|
|
401
|
+
since: string | null;
|
|
402
|
+
groups: {
|
|
403
|
+
title: string;
|
|
404
|
+
changes: string[];
|
|
405
|
+
}[];
|
|
406
|
+
};
|
|
407
|
+
link?: string | undefined;
|
|
408
|
+
};
|
|
409
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
410
|
+
summary: string;
|
|
411
|
+
publishedAt: string;
|
|
412
|
+
}>;
|
|
413
|
+
export type GameMakerRelease = z.infer<typeof gameMakerReleaseSchema>;
|
|
414
|
+
export declare const gameMakerReleaseSchema: z.ZodObject<{
|
|
415
|
+
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
416
|
+
summary: z.ZodEffects<z.ZodString, string, string>;
|
|
417
|
+
publishedAt: z.ZodString;
|
|
418
|
+
ide: z.ZodObject<Omit<{
|
|
419
|
+
type: z.ZodEnum<["ide", "runtime"]>;
|
|
420
|
+
version: z.ZodString;
|
|
421
|
+
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
422
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
423
|
+
feedUrl: z.ZodString;
|
|
424
|
+
publishedAt: z.ZodString;
|
|
425
|
+
link: z.ZodOptional<z.ZodString>;
|
|
426
|
+
notesUrl: z.ZodString;
|
|
427
|
+
}, "summary">, "strip", z.ZodTypeAny, {
|
|
428
|
+
type: "ide" | "runtime";
|
|
429
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
430
|
+
version: string;
|
|
431
|
+
feedUrl: string;
|
|
432
|
+
publishedAt: string;
|
|
433
|
+
notesUrl: string;
|
|
434
|
+
link?: string | undefined;
|
|
435
|
+
}, {
|
|
436
|
+
type: "ide" | "runtime";
|
|
437
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
438
|
+
version: string;
|
|
439
|
+
feedUrl: string;
|
|
440
|
+
publishedAt: string;
|
|
441
|
+
notesUrl: string;
|
|
442
|
+
link?: string | undefined;
|
|
443
|
+
}>;
|
|
444
|
+
runtime: z.ZodObject<Omit<{
|
|
445
|
+
type: z.ZodEnum<["ide", "runtime"]>;
|
|
446
|
+
version: z.ZodString;
|
|
447
|
+
channel: z.ZodEnum<["lts", "stable", "beta", "unstable"]>;
|
|
448
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
449
|
+
feedUrl: z.ZodString;
|
|
450
|
+
publishedAt: z.ZodString;
|
|
451
|
+
link: z.ZodOptional<z.ZodString>;
|
|
452
|
+
notesUrl: z.ZodString;
|
|
453
|
+
}, "summary">, "strip", z.ZodTypeAny, {
|
|
454
|
+
type: "ide" | "runtime";
|
|
455
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
456
|
+
version: string;
|
|
457
|
+
feedUrl: string;
|
|
458
|
+
publishedAt: string;
|
|
459
|
+
notesUrl: string;
|
|
460
|
+
link?: string | undefined;
|
|
461
|
+
}, {
|
|
462
|
+
type: "ide" | "runtime";
|
|
463
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
464
|
+
version: string;
|
|
465
|
+
feedUrl: string;
|
|
466
|
+
publishedAt: string;
|
|
467
|
+
notesUrl: string;
|
|
468
|
+
link?: string | undefined;
|
|
469
|
+
}>;
|
|
470
|
+
}, "strip", z.ZodTypeAny, {
|
|
471
|
+
ide: {
|
|
472
|
+
type: "ide" | "runtime";
|
|
473
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
474
|
+
version: string;
|
|
475
|
+
feedUrl: string;
|
|
476
|
+
publishedAt: string;
|
|
477
|
+
notesUrl: string;
|
|
478
|
+
link?: string | undefined;
|
|
479
|
+
};
|
|
480
|
+
runtime: {
|
|
481
|
+
type: "ide" | "runtime";
|
|
482
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
483
|
+
version: string;
|
|
484
|
+
feedUrl: string;
|
|
485
|
+
publishedAt: string;
|
|
486
|
+
notesUrl: string;
|
|
487
|
+
link?: string | undefined;
|
|
488
|
+
};
|
|
489
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
490
|
+
summary: string;
|
|
491
|
+
publishedAt: string;
|
|
492
|
+
}, {
|
|
493
|
+
ide: {
|
|
494
|
+
type: "ide" | "runtime";
|
|
495
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
496
|
+
version: string;
|
|
497
|
+
feedUrl: string;
|
|
498
|
+
publishedAt: string;
|
|
499
|
+
notesUrl: string;
|
|
500
|
+
link?: string | undefined;
|
|
501
|
+
};
|
|
502
|
+
runtime: {
|
|
503
|
+
type: "ide" | "runtime";
|
|
504
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
505
|
+
version: string;
|
|
506
|
+
feedUrl: string;
|
|
507
|
+
publishedAt: string;
|
|
508
|
+
notesUrl: string;
|
|
509
|
+
link?: string | undefined;
|
|
510
|
+
};
|
|
511
|
+
channel: "lts" | "stable" | "beta" | "unstable";
|
|
512
|
+
summary: string;
|
|
513
|
+
publishedAt: string;
|
|
514
|
+
}>;
|
|
515
|
+
export type RawReleaseNote = z.infer<typeof rawReleaseNoteSchema>;
|
|
516
|
+
export declare const rawReleaseNoteSchema: z.ZodObject<{
|
|
517
|
+
type: z.ZodOptional<z.ZodEnum<["ide", "runtime"]>>;
|
|
518
|
+
version: z.ZodString;
|
|
519
|
+
release_notes: z.ZodArray<z.ZodString, "many">;
|
|
520
|
+
}, "strict", z.ZodTypeAny, {
|
|
521
|
+
version: string;
|
|
522
|
+
release_notes: string[];
|
|
523
|
+
type?: "ide" | "runtime" | undefined;
|
|
524
|
+
}, {
|
|
525
|
+
version: string;
|
|
526
|
+
release_notes: string[];
|
|
527
|
+
type?: "ide" | "runtime" | undefined;
|
|
528
|
+
}>;
|
|
529
|
+
export type RawReleaseNotesCache = Record<string, RawReleaseNote>;
|
|
530
|
+
export declare const rawReleaseNotesCacheSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
531
|
+
type: z.ZodOptional<z.ZodEnum<["ide", "runtime"]>>;
|
|
532
|
+
version: z.ZodString;
|
|
533
|
+
release_notes: z.ZodArray<z.ZodString, "many">;
|
|
534
|
+
}, "strict", z.ZodTypeAny, {
|
|
535
|
+
version: string;
|
|
536
|
+
release_notes: string[];
|
|
537
|
+
type?: "ide" | "runtime" | undefined;
|
|
538
|
+
}, {
|
|
539
|
+
version: string;
|
|
540
|
+
release_notes: string[];
|
|
541
|
+
type?: "ide" | "runtime" | undefined;
|
|
542
|
+
}>>;
|
|
543
543
|
//# sourceMappingURL=feeds.types.d.ts.map
|