@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.
@@ -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
- 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<{
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
- link?: string | undefined;
174
- summary?: string | undefined;
175
- type: "ide" | "runtime";
176
- channel: "lts" | "stable" | "beta" | "unstable";
177
- version: string;
178
- feedUrl: string;
179
- publishedAt: string;
180
- notesUrl: string;
181
- notes: {
182
- since: string | null;
183
- groups: {
184
- title: string;
185
- changes: string[];
186
- }[];
187
- };
188
- }, {
189
- link?: string | undefined;
190
- summary?: string | undefined;
191
- type: "ide" | "runtime";
192
- channel: "lts" | "stable" | "beta" | "unstable";
193
- version: string;
194
- feedUrl: string;
195
- publishedAt: string;
196
- notesUrl: string;
197
- notes: {
198
- since: string | null;
199
- groups: {
200
- title: string;
201
- changes: string[];
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
- link?: string | undefined;
246
- type: "ide" | "runtime";
247
- channel: "lts" | "stable" | "beta" | "unstable";
248
- version: string;
249
- feedUrl: string;
250
- publishedAt: string;
251
- notesUrl: string;
252
- notes: {
253
- since: string | null;
254
- groups: {
255
- title: string;
256
- changes: string[];
257
- }[];
258
- };
259
- }, {
260
- link?: string | undefined;
261
- type: "ide" | "runtime";
262
- channel: "lts" | "stable" | "beta" | "unstable";
263
- version: string;
264
- feedUrl: string;
265
- publishedAt: string;
266
- notesUrl: string;
267
- notes: {
268
- since: string | null;
269
- groups: {
270
- title: string;
271
- changes: string[];
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
- link?: string | undefined;
311
- type: "ide" | "runtime";
312
- channel: "lts" | "stable" | "beta" | "unstable";
313
- version: string;
314
- feedUrl: string;
315
- publishedAt: string;
316
- notesUrl: string;
317
- notes: {
318
- since: string | null;
319
- groups: {
320
- title: string;
321
- changes: string[];
322
- }[];
323
- };
324
- }, {
325
- link?: string | undefined;
326
- type: "ide" | "runtime";
327
- channel: "lts" | "stable" | "beta" | "unstable";
328
- version: string;
329
- feedUrl: string;
330
- publishedAt: string;
331
- notesUrl: string;
332
- notes: {
333
- since: string | null;
334
- groups: {
335
- title: string;
336
- changes: string[];
337
- }[];
338
- };
339
- }>;
340
- }, "strip", z.ZodTypeAny, {
341
- ide: {
342
- link?: string | undefined;
343
- type: "ide" | "runtime";
344
- channel: "lts" | "stable" | "beta" | "unstable";
345
- version: string;
346
- feedUrl: string;
347
- publishedAt: string;
348
- notesUrl: string;
349
- notes: {
350
- since: string | null;
351
- groups: {
352
- title: string;
353
- changes: string[];
354
- }[];
355
- };
356
- };
357
- runtime: {
358
- link?: string | undefined;
359
- type: "ide" | "runtime";
360
- channel: "lts" | "stable" | "beta" | "unstable";
361
- version: string;
362
- feedUrl: string;
363
- publishedAt: string;
364
- notesUrl: string;
365
- notes: {
366
- since: string | null;
367
- groups: {
368
- title: string;
369
- changes: string[];
370
- }[];
371
- };
372
- };
373
- channel: "lts" | "stable" | "beta" | "unstable";
374
- summary: string;
375
- publishedAt: string;
376
- }, {
377
- ide: {
378
- link?: string | undefined;
379
- type: "ide" | "runtime";
380
- channel: "lts" | "stable" | "beta" | "unstable";
381
- version: string;
382
- feedUrl: string;
383
- publishedAt: string;
384
- notesUrl: string;
385
- notes: {
386
- since: string | null;
387
- groups: {
388
- title: string;
389
- changes: string[];
390
- }[];
391
- };
392
- };
393
- runtime: {
394
- link?: string | undefined;
395
- type: "ide" | "runtime";
396
- channel: "lts" | "stable" | "beta" | "unstable";
397
- version: string;
398
- feedUrl: string;
399
- publishedAt: string;
400
- notesUrl: string;
401
- notes: {
402
- since: string | null;
403
- groups: {
404
- title: string;
405
- changes: string[];
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
- link?: string | undefined;
429
- type: "ide" | "runtime";
430
- channel: "lts" | "stable" | "beta" | "unstable";
431
- version: string;
432
- feedUrl: string;
433
- publishedAt: string;
434
- notesUrl: string;
435
- }, {
436
- link?: string | undefined;
437
- type: "ide" | "runtime";
438
- channel: "lts" | "stable" | "beta" | "unstable";
439
- version: string;
440
- feedUrl: string;
441
- publishedAt: string;
442
- notesUrl: string;
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
- link?: string | undefined;
455
- type: "ide" | "runtime";
456
- channel: "lts" | "stable" | "beta" | "unstable";
457
- version: string;
458
- feedUrl: string;
459
- publishedAt: string;
460
- notesUrl: string;
461
- }, {
462
- link?: string | undefined;
463
- type: "ide" | "runtime";
464
- channel: "lts" | "stable" | "beta" | "unstable";
465
- version: string;
466
- feedUrl: string;
467
- publishedAt: string;
468
- notesUrl: string;
469
- }>;
470
- }, "strip", z.ZodTypeAny, {
471
- ide: {
472
- link?: string | undefined;
473
- type: "ide" | "runtime";
474
- channel: "lts" | "stable" | "beta" | "unstable";
475
- version: string;
476
- feedUrl: string;
477
- publishedAt: string;
478
- notesUrl: string;
479
- };
480
- runtime: {
481
- link?: string | undefined;
482
- type: "ide" | "runtime";
483
- channel: "lts" | "stable" | "beta" | "unstable";
484
- version: string;
485
- feedUrl: string;
486
- publishedAt: string;
487
- notesUrl: string;
488
- };
489
- channel: "lts" | "stable" | "beta" | "unstable";
490
- summary: string;
491
- publishedAt: string;
492
- }, {
493
- ide: {
494
- link?: string | undefined;
495
- type: "ide" | "runtime";
496
- channel: "lts" | "stable" | "beta" | "unstable";
497
- version: string;
498
- feedUrl: string;
499
- publishedAt: string;
500
- notesUrl: string;
501
- };
502
- runtime: {
503
- link?: string | undefined;
504
- type: "ide" | "runtime";
505
- channel: "lts" | "stable" | "beta" | "unstable";
506
- version: string;
507
- feedUrl: string;
508
- publishedAt: string;
509
- notesUrl: string;
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
- type?: "ide" | "runtime" | undefined;
522
- version: string;
523
- release_notes: string[];
524
- }, {
525
- type?: "ide" | "runtime" | undefined;
526
- version: string;
527
- release_notes: string[];
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
- type?: "ide" | "runtime" | undefined;
536
- version: string;
537
- release_notes: string[];
538
- }, {
539
- type?: "ide" | "runtime" | undefined;
540
- version: string;
541
- release_notes: string[];
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