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