@moonbase.sh/storefront-api 0.1.82 → 0.1.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +252 -191
- package/dist/index.d.cts +1427 -1
- package/dist/index.d.ts +1427 -1
- package/dist/index.js +251 -191
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -202,6 +202,475 @@ declare class MoonbaseApi {
|
|
|
202
202
|
fetch(path: string, method?: HttpMethods, body?: any): Promise<any>;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
+
declare const activationRequestSchema: z.ZodObject<{
|
|
206
|
+
id: z.ZodString;
|
|
207
|
+
status: z.ZodNativeEnum<typeof ActivationRequestStatus>;
|
|
208
|
+
product: z.ZodObject<{
|
|
209
|
+
id: z.ZodString;
|
|
210
|
+
name: z.ZodString;
|
|
211
|
+
tagline: z.ZodString;
|
|
212
|
+
iconUrl: z.ZodNullable<z.ZodString>;
|
|
213
|
+
owned: z.ZodBoolean;
|
|
214
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
215
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
216
|
+
name: z.ZodString;
|
|
217
|
+
key: z.ZodString;
|
|
218
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
219
|
+
size: z.ZodNumber;
|
|
220
|
+
path: z.ZodNullable<z.ZodString>;
|
|
221
|
+
}, "strip", z.ZodTypeAny, {
|
|
222
|
+
path: string | null;
|
|
223
|
+
name: string;
|
|
224
|
+
key: string;
|
|
225
|
+
platform: Platform;
|
|
226
|
+
size: number;
|
|
227
|
+
}, {
|
|
228
|
+
path: string | null;
|
|
229
|
+
name: string;
|
|
230
|
+
key: string;
|
|
231
|
+
platform: Platform;
|
|
232
|
+
size: number;
|
|
233
|
+
}>, "many">>;
|
|
234
|
+
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
235
|
+
id: z.ZodString;
|
|
236
|
+
name: z.ZodString;
|
|
237
|
+
originalPrice: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
238
|
+
price: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
239
|
+
hasDiscount: z.ZodBoolean;
|
|
240
|
+
discount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
241
|
+
type: z.ZodLiteral<"PercentageOffDiscount">;
|
|
242
|
+
name: z.ZodString;
|
|
243
|
+
description: z.ZodOptional<z.ZodString>;
|
|
244
|
+
percentage: z.ZodNumber;
|
|
245
|
+
total: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
246
|
+
}, "strip", z.ZodTypeAny, {
|
|
247
|
+
type: "PercentageOffDiscount";
|
|
248
|
+
name: string;
|
|
249
|
+
percentage: number;
|
|
250
|
+
total: Record<string, number>;
|
|
251
|
+
description?: string | undefined;
|
|
252
|
+
}, {
|
|
253
|
+
type: "PercentageOffDiscount";
|
|
254
|
+
name: string;
|
|
255
|
+
percentage: number;
|
|
256
|
+
total: Record<string, number>;
|
|
257
|
+
description?: string | undefined;
|
|
258
|
+
}>, z.ZodObject<{
|
|
259
|
+
type: z.ZodLiteral<"FlatAmountOffDiscount">;
|
|
260
|
+
name: z.ZodString;
|
|
261
|
+
description: z.ZodOptional<z.ZodString>;
|
|
262
|
+
total: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
263
|
+
}, "strip", z.ZodTypeAny, {
|
|
264
|
+
type: "FlatAmountOffDiscount";
|
|
265
|
+
name: string;
|
|
266
|
+
total: Record<string, number>;
|
|
267
|
+
description?: string | undefined;
|
|
268
|
+
}, {
|
|
269
|
+
type: "FlatAmountOffDiscount";
|
|
270
|
+
name: string;
|
|
271
|
+
total: Record<string, number>;
|
|
272
|
+
description?: string | undefined;
|
|
273
|
+
}>]>>;
|
|
274
|
+
}, "strip", z.ZodTypeAny, {
|
|
275
|
+
id: string;
|
|
276
|
+
name: string;
|
|
277
|
+
originalPrice: Record<string, number>;
|
|
278
|
+
price: Record<string, number>;
|
|
279
|
+
hasDiscount: boolean;
|
|
280
|
+
discount?: {
|
|
281
|
+
type: "PercentageOffDiscount";
|
|
282
|
+
name: string;
|
|
283
|
+
percentage: number;
|
|
284
|
+
total: Record<string, number>;
|
|
285
|
+
description?: string | undefined;
|
|
286
|
+
} | {
|
|
287
|
+
type: "FlatAmountOffDiscount";
|
|
288
|
+
name: string;
|
|
289
|
+
total: Record<string, number>;
|
|
290
|
+
description?: string | undefined;
|
|
291
|
+
} | undefined;
|
|
292
|
+
}, {
|
|
293
|
+
id: string;
|
|
294
|
+
name: string;
|
|
295
|
+
originalPrice: Record<string, number>;
|
|
296
|
+
price: Record<string, number>;
|
|
297
|
+
hasDiscount: boolean;
|
|
298
|
+
discount?: {
|
|
299
|
+
type: "PercentageOffDiscount";
|
|
300
|
+
name: string;
|
|
301
|
+
percentage: number;
|
|
302
|
+
total: Record<string, number>;
|
|
303
|
+
description?: string | undefined;
|
|
304
|
+
} | {
|
|
305
|
+
type: "FlatAmountOffDiscount";
|
|
306
|
+
name: string;
|
|
307
|
+
total: Record<string, number>;
|
|
308
|
+
description?: string | undefined;
|
|
309
|
+
} | undefined;
|
|
310
|
+
}>>;
|
|
311
|
+
variations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
312
|
+
id: z.ZodString;
|
|
313
|
+
name: z.ZodString;
|
|
314
|
+
originalPrice: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
315
|
+
price: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
316
|
+
hasDiscount: z.ZodBoolean;
|
|
317
|
+
discount: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
318
|
+
type: z.ZodLiteral<"PercentageOffDiscount">;
|
|
319
|
+
name: z.ZodString;
|
|
320
|
+
description: z.ZodOptional<z.ZodString>;
|
|
321
|
+
percentage: z.ZodNumber;
|
|
322
|
+
total: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
323
|
+
}, "strip", z.ZodTypeAny, {
|
|
324
|
+
type: "PercentageOffDiscount";
|
|
325
|
+
name: string;
|
|
326
|
+
percentage: number;
|
|
327
|
+
total: Record<string, number>;
|
|
328
|
+
description?: string | undefined;
|
|
329
|
+
}, {
|
|
330
|
+
type: "PercentageOffDiscount";
|
|
331
|
+
name: string;
|
|
332
|
+
percentage: number;
|
|
333
|
+
total: Record<string, number>;
|
|
334
|
+
description?: string | undefined;
|
|
335
|
+
}>, z.ZodObject<{
|
|
336
|
+
type: z.ZodLiteral<"FlatAmountOffDiscount">;
|
|
337
|
+
name: z.ZodString;
|
|
338
|
+
description: z.ZodOptional<z.ZodString>;
|
|
339
|
+
total: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
340
|
+
}, "strip", z.ZodTypeAny, {
|
|
341
|
+
type: "FlatAmountOffDiscount";
|
|
342
|
+
name: string;
|
|
343
|
+
total: Record<string, number>;
|
|
344
|
+
description?: string | undefined;
|
|
345
|
+
}, {
|
|
346
|
+
type: "FlatAmountOffDiscount";
|
|
347
|
+
name: string;
|
|
348
|
+
total: Record<string, number>;
|
|
349
|
+
description?: string | undefined;
|
|
350
|
+
}>]>>;
|
|
351
|
+
}, "strip", z.ZodTypeAny, {
|
|
352
|
+
id: string;
|
|
353
|
+
name: string;
|
|
354
|
+
originalPrice: Record<string, number>;
|
|
355
|
+
price: Record<string, number>;
|
|
356
|
+
hasDiscount: boolean;
|
|
357
|
+
discount?: {
|
|
358
|
+
type: "PercentageOffDiscount";
|
|
359
|
+
name: string;
|
|
360
|
+
percentage: number;
|
|
361
|
+
total: Record<string, number>;
|
|
362
|
+
description?: string | undefined;
|
|
363
|
+
} | {
|
|
364
|
+
type: "FlatAmountOffDiscount";
|
|
365
|
+
name: string;
|
|
366
|
+
total: Record<string, number>;
|
|
367
|
+
description?: string | undefined;
|
|
368
|
+
} | undefined;
|
|
369
|
+
}, {
|
|
370
|
+
id: string;
|
|
371
|
+
name: string;
|
|
372
|
+
originalPrice: Record<string, number>;
|
|
373
|
+
price: Record<string, number>;
|
|
374
|
+
hasDiscount: boolean;
|
|
375
|
+
discount?: {
|
|
376
|
+
type: "PercentageOffDiscount";
|
|
377
|
+
name: string;
|
|
378
|
+
percentage: number;
|
|
379
|
+
total: Record<string, number>;
|
|
380
|
+
description?: string | undefined;
|
|
381
|
+
} | {
|
|
382
|
+
type: "FlatAmountOffDiscount";
|
|
383
|
+
name: string;
|
|
384
|
+
total: Record<string, number>;
|
|
385
|
+
description?: string | undefined;
|
|
386
|
+
} | undefined;
|
|
387
|
+
}>, "many">>;
|
|
388
|
+
type: z.ZodPipeline<z.ZodEffects<z.ZodVoid, string, void>, z.ZodLiteral<"product">>;
|
|
389
|
+
}, "strip", z.ZodTypeAny, {
|
|
390
|
+
type: "product";
|
|
391
|
+
id: string;
|
|
392
|
+
name: string;
|
|
393
|
+
tagline: string;
|
|
394
|
+
iconUrl: string | null;
|
|
395
|
+
owned: boolean;
|
|
396
|
+
currentVersion?: string | undefined;
|
|
397
|
+
downloads?: {
|
|
398
|
+
path: string | null;
|
|
399
|
+
name: string;
|
|
400
|
+
key: string;
|
|
401
|
+
platform: Platform;
|
|
402
|
+
size: number;
|
|
403
|
+
}[] | undefined;
|
|
404
|
+
defaultVariation?: {
|
|
405
|
+
id: string;
|
|
406
|
+
name: string;
|
|
407
|
+
originalPrice: Record<string, number>;
|
|
408
|
+
price: Record<string, number>;
|
|
409
|
+
hasDiscount: boolean;
|
|
410
|
+
discount?: {
|
|
411
|
+
type: "PercentageOffDiscount";
|
|
412
|
+
name: string;
|
|
413
|
+
percentage: number;
|
|
414
|
+
total: Record<string, number>;
|
|
415
|
+
description?: string | undefined;
|
|
416
|
+
} | {
|
|
417
|
+
type: "FlatAmountOffDiscount";
|
|
418
|
+
name: string;
|
|
419
|
+
total: Record<string, number>;
|
|
420
|
+
description?: string | undefined;
|
|
421
|
+
} | undefined;
|
|
422
|
+
} | undefined;
|
|
423
|
+
variations?: {
|
|
424
|
+
id: string;
|
|
425
|
+
name: string;
|
|
426
|
+
originalPrice: Record<string, number>;
|
|
427
|
+
price: Record<string, number>;
|
|
428
|
+
hasDiscount: boolean;
|
|
429
|
+
discount?: {
|
|
430
|
+
type: "PercentageOffDiscount";
|
|
431
|
+
name: string;
|
|
432
|
+
percentage: number;
|
|
433
|
+
total: Record<string, number>;
|
|
434
|
+
description?: string | undefined;
|
|
435
|
+
} | {
|
|
436
|
+
type: "FlatAmountOffDiscount";
|
|
437
|
+
name: string;
|
|
438
|
+
total: Record<string, number>;
|
|
439
|
+
description?: string | undefined;
|
|
440
|
+
} | undefined;
|
|
441
|
+
}[] | undefined;
|
|
442
|
+
}, {
|
|
443
|
+
id: string;
|
|
444
|
+
name: string;
|
|
445
|
+
tagline: string;
|
|
446
|
+
iconUrl: string | null;
|
|
447
|
+
owned: boolean;
|
|
448
|
+
currentVersion?: string | undefined;
|
|
449
|
+
downloads?: {
|
|
450
|
+
path: string | null;
|
|
451
|
+
name: string;
|
|
452
|
+
key: string;
|
|
453
|
+
platform: Platform;
|
|
454
|
+
size: number;
|
|
455
|
+
}[] | undefined;
|
|
456
|
+
defaultVariation?: {
|
|
457
|
+
id: string;
|
|
458
|
+
name: string;
|
|
459
|
+
originalPrice: Record<string, number>;
|
|
460
|
+
price: Record<string, number>;
|
|
461
|
+
hasDiscount: boolean;
|
|
462
|
+
discount?: {
|
|
463
|
+
type: "PercentageOffDiscount";
|
|
464
|
+
name: string;
|
|
465
|
+
percentage: number;
|
|
466
|
+
total: Record<string, number>;
|
|
467
|
+
description?: string | undefined;
|
|
468
|
+
} | {
|
|
469
|
+
type: "FlatAmountOffDiscount";
|
|
470
|
+
name: string;
|
|
471
|
+
total: Record<string, number>;
|
|
472
|
+
description?: string | undefined;
|
|
473
|
+
} | undefined;
|
|
474
|
+
} | undefined;
|
|
475
|
+
variations?: {
|
|
476
|
+
id: string;
|
|
477
|
+
name: string;
|
|
478
|
+
originalPrice: Record<string, number>;
|
|
479
|
+
price: Record<string, number>;
|
|
480
|
+
hasDiscount: boolean;
|
|
481
|
+
discount?: {
|
|
482
|
+
type: "PercentageOffDiscount";
|
|
483
|
+
name: string;
|
|
484
|
+
percentage: number;
|
|
485
|
+
total: Record<string, number>;
|
|
486
|
+
description?: string | undefined;
|
|
487
|
+
} | {
|
|
488
|
+
type: "FlatAmountOffDiscount";
|
|
489
|
+
name: string;
|
|
490
|
+
total: Record<string, number>;
|
|
491
|
+
description?: string | undefined;
|
|
492
|
+
} | undefined;
|
|
493
|
+
}[] | undefined;
|
|
494
|
+
type?: void | undefined;
|
|
495
|
+
}>;
|
|
496
|
+
trialEligibility: z.ZodOptional<z.ZodObject<{
|
|
497
|
+
eligible: z.ZodBoolean;
|
|
498
|
+
existing: z.ZodBoolean;
|
|
499
|
+
requiresAccount: z.ZodBoolean;
|
|
500
|
+
numberOfDaysPerProduct: z.ZodNumber;
|
|
501
|
+
numberOfDaysRemaining: z.ZodNumber;
|
|
502
|
+
}, "strip", z.ZodTypeAny, {
|
|
503
|
+
eligible: boolean;
|
|
504
|
+
existing: boolean;
|
|
505
|
+
requiresAccount: boolean;
|
|
506
|
+
numberOfDaysPerProduct: number;
|
|
507
|
+
numberOfDaysRemaining: number;
|
|
508
|
+
}, {
|
|
509
|
+
eligible: boolean;
|
|
510
|
+
existing: boolean;
|
|
511
|
+
requiresAccount: boolean;
|
|
512
|
+
numberOfDaysPerProduct: number;
|
|
513
|
+
numberOfDaysRemaining: number;
|
|
514
|
+
}>>;
|
|
515
|
+
licenseEligibility: z.ZodOptional<z.ZodObject<{
|
|
516
|
+
eligible: z.ZodBoolean;
|
|
517
|
+
}, "strip", z.ZodTypeAny, {
|
|
518
|
+
eligible: boolean;
|
|
519
|
+
}, {
|
|
520
|
+
eligible: boolean;
|
|
521
|
+
}>>;
|
|
522
|
+
}, "strip", z.ZodTypeAny, {
|
|
523
|
+
status: ActivationRequestStatus;
|
|
524
|
+
id: string;
|
|
525
|
+
product: {
|
|
526
|
+
type: "product";
|
|
527
|
+
id: string;
|
|
528
|
+
name: string;
|
|
529
|
+
tagline: string;
|
|
530
|
+
iconUrl: string | null;
|
|
531
|
+
owned: boolean;
|
|
532
|
+
currentVersion?: string | undefined;
|
|
533
|
+
downloads?: {
|
|
534
|
+
path: string | null;
|
|
535
|
+
name: string;
|
|
536
|
+
key: string;
|
|
537
|
+
platform: Platform;
|
|
538
|
+
size: number;
|
|
539
|
+
}[] | undefined;
|
|
540
|
+
defaultVariation?: {
|
|
541
|
+
id: string;
|
|
542
|
+
name: string;
|
|
543
|
+
originalPrice: Record<string, number>;
|
|
544
|
+
price: Record<string, number>;
|
|
545
|
+
hasDiscount: boolean;
|
|
546
|
+
discount?: {
|
|
547
|
+
type: "PercentageOffDiscount";
|
|
548
|
+
name: string;
|
|
549
|
+
percentage: number;
|
|
550
|
+
total: Record<string, number>;
|
|
551
|
+
description?: string | undefined;
|
|
552
|
+
} | {
|
|
553
|
+
type: "FlatAmountOffDiscount";
|
|
554
|
+
name: string;
|
|
555
|
+
total: Record<string, number>;
|
|
556
|
+
description?: string | undefined;
|
|
557
|
+
} | undefined;
|
|
558
|
+
} | undefined;
|
|
559
|
+
variations?: {
|
|
560
|
+
id: string;
|
|
561
|
+
name: string;
|
|
562
|
+
originalPrice: Record<string, number>;
|
|
563
|
+
price: Record<string, number>;
|
|
564
|
+
hasDiscount: boolean;
|
|
565
|
+
discount?: {
|
|
566
|
+
type: "PercentageOffDiscount";
|
|
567
|
+
name: string;
|
|
568
|
+
percentage: number;
|
|
569
|
+
total: Record<string, number>;
|
|
570
|
+
description?: string | undefined;
|
|
571
|
+
} | {
|
|
572
|
+
type: "FlatAmountOffDiscount";
|
|
573
|
+
name: string;
|
|
574
|
+
total: Record<string, number>;
|
|
575
|
+
description?: string | undefined;
|
|
576
|
+
} | undefined;
|
|
577
|
+
}[] | undefined;
|
|
578
|
+
};
|
|
579
|
+
trialEligibility?: {
|
|
580
|
+
eligible: boolean;
|
|
581
|
+
existing: boolean;
|
|
582
|
+
requiresAccount: boolean;
|
|
583
|
+
numberOfDaysPerProduct: number;
|
|
584
|
+
numberOfDaysRemaining: number;
|
|
585
|
+
} | undefined;
|
|
586
|
+
licenseEligibility?: {
|
|
587
|
+
eligible: boolean;
|
|
588
|
+
} | undefined;
|
|
589
|
+
}, {
|
|
590
|
+
status: ActivationRequestStatus;
|
|
591
|
+
id: string;
|
|
592
|
+
product: {
|
|
593
|
+
id: string;
|
|
594
|
+
name: string;
|
|
595
|
+
tagline: string;
|
|
596
|
+
iconUrl: string | null;
|
|
597
|
+
owned: boolean;
|
|
598
|
+
currentVersion?: string | undefined;
|
|
599
|
+
downloads?: {
|
|
600
|
+
path: string | null;
|
|
601
|
+
name: string;
|
|
602
|
+
key: string;
|
|
603
|
+
platform: Platform;
|
|
604
|
+
size: number;
|
|
605
|
+
}[] | undefined;
|
|
606
|
+
defaultVariation?: {
|
|
607
|
+
id: string;
|
|
608
|
+
name: string;
|
|
609
|
+
originalPrice: Record<string, number>;
|
|
610
|
+
price: Record<string, number>;
|
|
611
|
+
hasDiscount: boolean;
|
|
612
|
+
discount?: {
|
|
613
|
+
type: "PercentageOffDiscount";
|
|
614
|
+
name: string;
|
|
615
|
+
percentage: number;
|
|
616
|
+
total: Record<string, number>;
|
|
617
|
+
description?: string | undefined;
|
|
618
|
+
} | {
|
|
619
|
+
type: "FlatAmountOffDiscount";
|
|
620
|
+
name: string;
|
|
621
|
+
total: Record<string, number>;
|
|
622
|
+
description?: string | undefined;
|
|
623
|
+
} | undefined;
|
|
624
|
+
} | undefined;
|
|
625
|
+
variations?: {
|
|
626
|
+
id: string;
|
|
627
|
+
name: string;
|
|
628
|
+
originalPrice: Record<string, number>;
|
|
629
|
+
price: Record<string, number>;
|
|
630
|
+
hasDiscount: boolean;
|
|
631
|
+
discount?: {
|
|
632
|
+
type: "PercentageOffDiscount";
|
|
633
|
+
name: string;
|
|
634
|
+
percentage: number;
|
|
635
|
+
total: Record<string, number>;
|
|
636
|
+
description?: string | undefined;
|
|
637
|
+
} | {
|
|
638
|
+
type: "FlatAmountOffDiscount";
|
|
639
|
+
name: string;
|
|
640
|
+
total: Record<string, number>;
|
|
641
|
+
description?: string | undefined;
|
|
642
|
+
} | undefined;
|
|
643
|
+
}[] | undefined;
|
|
644
|
+
type?: void | undefined;
|
|
645
|
+
};
|
|
646
|
+
trialEligibility?: {
|
|
647
|
+
eligible: boolean;
|
|
648
|
+
existing: boolean;
|
|
649
|
+
requiresAccount: boolean;
|
|
650
|
+
numberOfDaysPerProduct: number;
|
|
651
|
+
numberOfDaysRemaining: number;
|
|
652
|
+
} | undefined;
|
|
653
|
+
licenseEligibility?: {
|
|
654
|
+
eligible: boolean;
|
|
655
|
+
} | undefined;
|
|
656
|
+
}>;
|
|
657
|
+
|
|
658
|
+
declare enum ActivationRequestStatus {
|
|
659
|
+
Requested = "Requested",
|
|
660
|
+
Fulfilled = "Fulfilled",
|
|
661
|
+
Completed = "Completed"
|
|
662
|
+
}
|
|
663
|
+
type ActivationRequest = z.infer<typeof activationRequestSchema>;
|
|
664
|
+
|
|
665
|
+
declare class ActivationRequestEndpoints {
|
|
666
|
+
private api;
|
|
667
|
+
constructor(api: MoonbaseApi);
|
|
668
|
+
get(requestId: string): Promise<ActivationRequest>;
|
|
669
|
+
isCompleted(requestId: string): Promise<boolean>;
|
|
670
|
+
fulfillLicense(requestId: string): Promise<ActivationRequest>;
|
|
671
|
+
fulfillTrial(requestId: string): Promise<ActivationRequest>;
|
|
672
|
+
}
|
|
673
|
+
|
|
205
674
|
type CommunicationPreferences = z.infer<typeof communicationPreferencesSchema>;
|
|
206
675
|
type User = z.infer<typeof userSchema>;
|
|
207
676
|
type Address = z.infer<typeof addressSchema>;
|
|
@@ -580,6 +1049,26 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
580
1049
|
tagline: z.ZodString;
|
|
581
1050
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
582
1051
|
owned: z.ZodBoolean;
|
|
1052
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
1053
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1054
|
+
name: z.ZodString;
|
|
1055
|
+
key: z.ZodString;
|
|
1056
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
1057
|
+
size: z.ZodNumber;
|
|
1058
|
+
path: z.ZodNullable<z.ZodString>;
|
|
1059
|
+
}, "strip", z.ZodTypeAny, {
|
|
1060
|
+
path: string | null;
|
|
1061
|
+
name: string;
|
|
1062
|
+
key: string;
|
|
1063
|
+
platform: Platform;
|
|
1064
|
+
size: number;
|
|
1065
|
+
}, {
|
|
1066
|
+
path: string | null;
|
|
1067
|
+
name: string;
|
|
1068
|
+
key: string;
|
|
1069
|
+
platform: Platform;
|
|
1070
|
+
size: number;
|
|
1071
|
+
}>, "many">>;
|
|
583
1072
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
584
1073
|
id: z.ZodString;
|
|
585
1074
|
name: z.ZodString;
|
|
@@ -742,6 +1231,14 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
742
1231
|
tagline: string;
|
|
743
1232
|
iconUrl: string | null;
|
|
744
1233
|
owned: boolean;
|
|
1234
|
+
currentVersion?: string | undefined;
|
|
1235
|
+
downloads?: {
|
|
1236
|
+
path: string | null;
|
|
1237
|
+
name: string;
|
|
1238
|
+
key: string;
|
|
1239
|
+
platform: Platform;
|
|
1240
|
+
size: number;
|
|
1241
|
+
}[] | undefined;
|
|
745
1242
|
defaultVariation?: {
|
|
746
1243
|
id: string;
|
|
747
1244
|
name: string;
|
|
@@ -786,6 +1283,14 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
786
1283
|
tagline: string;
|
|
787
1284
|
iconUrl: string | null;
|
|
788
1285
|
owned: boolean;
|
|
1286
|
+
currentVersion?: string | undefined;
|
|
1287
|
+
downloads?: {
|
|
1288
|
+
path: string | null;
|
|
1289
|
+
name: string;
|
|
1290
|
+
key: string;
|
|
1291
|
+
platform: Platform;
|
|
1292
|
+
size: number;
|
|
1293
|
+
}[] | undefined;
|
|
789
1294
|
defaultVariation?: {
|
|
790
1295
|
id: string;
|
|
791
1296
|
name: string;
|
|
@@ -899,6 +1404,14 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
899
1404
|
tagline: string;
|
|
900
1405
|
iconUrl: string | null;
|
|
901
1406
|
owned: boolean;
|
|
1407
|
+
currentVersion?: string | undefined;
|
|
1408
|
+
downloads?: {
|
|
1409
|
+
path: string | null;
|
|
1410
|
+
name: string;
|
|
1411
|
+
key: string;
|
|
1412
|
+
platform: Platform;
|
|
1413
|
+
size: number;
|
|
1414
|
+
}[] | undefined;
|
|
902
1415
|
defaultVariation?: {
|
|
903
1416
|
id: string;
|
|
904
1417
|
name: string;
|
|
@@ -984,6 +1497,14 @@ declare const openProductLineItem: z.ZodObject<{
|
|
|
984
1497
|
tagline: string;
|
|
985
1498
|
iconUrl: string | null;
|
|
986
1499
|
owned: boolean;
|
|
1500
|
+
currentVersion?: string | undefined;
|
|
1501
|
+
downloads?: {
|
|
1502
|
+
path: string | null;
|
|
1503
|
+
name: string;
|
|
1504
|
+
key: string;
|
|
1505
|
+
platform: Platform;
|
|
1506
|
+
size: number;
|
|
1507
|
+
}[] | undefined;
|
|
987
1508
|
defaultVariation?: {
|
|
988
1509
|
id: string;
|
|
989
1510
|
name: string;
|
|
@@ -1136,6 +1657,26 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1136
1657
|
tagline: z.ZodString;
|
|
1137
1658
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
1138
1659
|
owned: z.ZodBoolean;
|
|
1660
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
1661
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1662
|
+
name: z.ZodString;
|
|
1663
|
+
key: z.ZodString;
|
|
1664
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
1665
|
+
size: z.ZodNumber;
|
|
1666
|
+
path: z.ZodNullable<z.ZodString>;
|
|
1667
|
+
}, "strip", z.ZodTypeAny, {
|
|
1668
|
+
path: string | null;
|
|
1669
|
+
name: string;
|
|
1670
|
+
key: string;
|
|
1671
|
+
platform: Platform;
|
|
1672
|
+
size: number;
|
|
1673
|
+
}, {
|
|
1674
|
+
path: string | null;
|
|
1675
|
+
name: string;
|
|
1676
|
+
key: string;
|
|
1677
|
+
platform: Platform;
|
|
1678
|
+
size: number;
|
|
1679
|
+
}>, "many">>;
|
|
1139
1680
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
1140
1681
|
id: z.ZodString;
|
|
1141
1682
|
name: z.ZodString;
|
|
@@ -1298,6 +1839,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1298
1839
|
tagline: string;
|
|
1299
1840
|
iconUrl: string | null;
|
|
1300
1841
|
owned: boolean;
|
|
1842
|
+
currentVersion?: string | undefined;
|
|
1843
|
+
downloads?: {
|
|
1844
|
+
path: string | null;
|
|
1845
|
+
name: string;
|
|
1846
|
+
key: string;
|
|
1847
|
+
platform: Platform;
|
|
1848
|
+
size: number;
|
|
1849
|
+
}[] | undefined;
|
|
1301
1850
|
defaultVariation?: {
|
|
1302
1851
|
id: string;
|
|
1303
1852
|
name: string;
|
|
@@ -1342,6 +1891,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1342
1891
|
tagline: string;
|
|
1343
1892
|
iconUrl: string | null;
|
|
1344
1893
|
owned: boolean;
|
|
1894
|
+
currentVersion?: string | undefined;
|
|
1895
|
+
downloads?: {
|
|
1896
|
+
path: string | null;
|
|
1897
|
+
name: string;
|
|
1898
|
+
key: string;
|
|
1899
|
+
platform: Platform;
|
|
1900
|
+
size: number;
|
|
1901
|
+
}[] | undefined;
|
|
1345
1902
|
defaultVariation?: {
|
|
1346
1903
|
id: string;
|
|
1347
1904
|
name: string;
|
|
@@ -1558,6 +2115,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1558
2115
|
tagline: string;
|
|
1559
2116
|
iconUrl: string | null;
|
|
1560
2117
|
owned: boolean;
|
|
2118
|
+
currentVersion?: string | undefined;
|
|
2119
|
+
downloads?: {
|
|
2120
|
+
path: string | null;
|
|
2121
|
+
name: string;
|
|
2122
|
+
key: string;
|
|
2123
|
+
platform: Platform;
|
|
2124
|
+
size: number;
|
|
2125
|
+
}[] | undefined;
|
|
1561
2126
|
defaultVariation?: {
|
|
1562
2127
|
id: string;
|
|
1563
2128
|
name: string;
|
|
@@ -1650,6 +2215,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1650
2215
|
tagline: string;
|
|
1651
2216
|
iconUrl: string | null;
|
|
1652
2217
|
owned: boolean;
|
|
2218
|
+
currentVersion?: string | undefined;
|
|
2219
|
+
downloads?: {
|
|
2220
|
+
path: string | null;
|
|
2221
|
+
name: string;
|
|
2222
|
+
key: string;
|
|
2223
|
+
platform: Platform;
|
|
2224
|
+
size: number;
|
|
2225
|
+
}[] | undefined;
|
|
1653
2226
|
defaultVariation?: {
|
|
1654
2227
|
id: string;
|
|
1655
2228
|
name: string;
|
|
@@ -1813,6 +2386,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1813
2386
|
tagline: string;
|
|
1814
2387
|
iconUrl: string | null;
|
|
1815
2388
|
owned: boolean;
|
|
2389
|
+
currentVersion?: string | undefined;
|
|
2390
|
+
downloads?: {
|
|
2391
|
+
path: string | null;
|
|
2392
|
+
name: string;
|
|
2393
|
+
key: string;
|
|
2394
|
+
platform: Platform;
|
|
2395
|
+
size: number;
|
|
2396
|
+
}[] | undefined;
|
|
1816
2397
|
defaultVariation?: {
|
|
1817
2398
|
id: string;
|
|
1818
2399
|
name: string;
|
|
@@ -1946,6 +2527,14 @@ declare const openBundleLineItem: z.ZodObject<{
|
|
|
1946
2527
|
tagline: string;
|
|
1947
2528
|
iconUrl: string | null;
|
|
1948
2529
|
owned: boolean;
|
|
2530
|
+
currentVersion?: string | undefined;
|
|
2531
|
+
downloads?: {
|
|
2532
|
+
path: string | null;
|
|
2533
|
+
name: string;
|
|
2534
|
+
key: string;
|
|
2535
|
+
platform: Platform;
|
|
2536
|
+
size: number;
|
|
2537
|
+
}[] | undefined;
|
|
1949
2538
|
defaultVariation?: {
|
|
1950
2539
|
id: string;
|
|
1951
2540
|
name: string;
|
|
@@ -2133,6 +2722,26 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2133
2722
|
tagline: z.ZodString;
|
|
2134
2723
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
2135
2724
|
owned: z.ZodBoolean;
|
|
2725
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
2726
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2727
|
+
name: z.ZodString;
|
|
2728
|
+
key: z.ZodString;
|
|
2729
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
2730
|
+
size: z.ZodNumber;
|
|
2731
|
+
path: z.ZodNullable<z.ZodString>;
|
|
2732
|
+
}, "strip", z.ZodTypeAny, {
|
|
2733
|
+
path: string | null;
|
|
2734
|
+
name: string;
|
|
2735
|
+
key: string;
|
|
2736
|
+
platform: Platform;
|
|
2737
|
+
size: number;
|
|
2738
|
+
}, {
|
|
2739
|
+
path: string | null;
|
|
2740
|
+
name: string;
|
|
2741
|
+
key: string;
|
|
2742
|
+
platform: Platform;
|
|
2743
|
+
size: number;
|
|
2744
|
+
}>, "many">>;
|
|
2136
2745
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
2137
2746
|
id: z.ZodString;
|
|
2138
2747
|
name: z.ZodString;
|
|
@@ -2295,6 +2904,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2295
2904
|
tagline: string;
|
|
2296
2905
|
iconUrl: string | null;
|
|
2297
2906
|
owned: boolean;
|
|
2907
|
+
currentVersion?: string | undefined;
|
|
2908
|
+
downloads?: {
|
|
2909
|
+
path: string | null;
|
|
2910
|
+
name: string;
|
|
2911
|
+
key: string;
|
|
2912
|
+
platform: Platform;
|
|
2913
|
+
size: number;
|
|
2914
|
+
}[] | undefined;
|
|
2298
2915
|
defaultVariation?: {
|
|
2299
2916
|
id: string;
|
|
2300
2917
|
name: string;
|
|
@@ -2339,6 +2956,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2339
2956
|
tagline: string;
|
|
2340
2957
|
iconUrl: string | null;
|
|
2341
2958
|
owned: boolean;
|
|
2959
|
+
currentVersion?: string | undefined;
|
|
2960
|
+
downloads?: {
|
|
2961
|
+
path: string | null;
|
|
2962
|
+
name: string;
|
|
2963
|
+
key: string;
|
|
2964
|
+
platform: Platform;
|
|
2965
|
+
size: number;
|
|
2966
|
+
}[] | undefined;
|
|
2342
2967
|
defaultVariation?: {
|
|
2343
2968
|
id: string;
|
|
2344
2969
|
name: string;
|
|
@@ -2452,6 +3077,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2452
3077
|
tagline: string;
|
|
2453
3078
|
iconUrl: string | null;
|
|
2454
3079
|
owned: boolean;
|
|
3080
|
+
currentVersion?: string | undefined;
|
|
3081
|
+
downloads?: {
|
|
3082
|
+
path: string | null;
|
|
3083
|
+
name: string;
|
|
3084
|
+
key: string;
|
|
3085
|
+
platform: Platform;
|
|
3086
|
+
size: number;
|
|
3087
|
+
}[] | undefined;
|
|
2455
3088
|
defaultVariation?: {
|
|
2456
3089
|
id: string;
|
|
2457
3090
|
name: string;
|
|
@@ -2537,6 +3170,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2537
3170
|
tagline: string;
|
|
2538
3171
|
iconUrl: string | null;
|
|
2539
3172
|
owned: boolean;
|
|
3173
|
+
currentVersion?: string | undefined;
|
|
3174
|
+
downloads?: {
|
|
3175
|
+
path: string | null;
|
|
3176
|
+
name: string;
|
|
3177
|
+
key: string;
|
|
3178
|
+
platform: Platform;
|
|
3179
|
+
size: number;
|
|
3180
|
+
}[] | undefined;
|
|
2540
3181
|
defaultVariation?: {
|
|
2541
3182
|
id: string;
|
|
2542
3183
|
name: string;
|
|
@@ -2688,6 +3329,26 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2688
3329
|
tagline: z.ZodString;
|
|
2689
3330
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
2690
3331
|
owned: z.ZodBoolean;
|
|
3332
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
3333
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3334
|
+
name: z.ZodString;
|
|
3335
|
+
key: z.ZodString;
|
|
3336
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
3337
|
+
size: z.ZodNumber;
|
|
3338
|
+
path: z.ZodNullable<z.ZodString>;
|
|
3339
|
+
}, "strip", z.ZodTypeAny, {
|
|
3340
|
+
path: string | null;
|
|
3341
|
+
name: string;
|
|
3342
|
+
key: string;
|
|
3343
|
+
platform: Platform;
|
|
3344
|
+
size: number;
|
|
3345
|
+
}, {
|
|
3346
|
+
path: string | null;
|
|
3347
|
+
name: string;
|
|
3348
|
+
key: string;
|
|
3349
|
+
platform: Platform;
|
|
3350
|
+
size: number;
|
|
3351
|
+
}>, "many">>;
|
|
2691
3352
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
2692
3353
|
id: z.ZodString;
|
|
2693
3354
|
name: z.ZodString;
|
|
@@ -2850,6 +3511,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2850
3511
|
tagline: string;
|
|
2851
3512
|
iconUrl: string | null;
|
|
2852
3513
|
owned: boolean;
|
|
3514
|
+
currentVersion?: string | undefined;
|
|
3515
|
+
downloads?: {
|
|
3516
|
+
path: string | null;
|
|
3517
|
+
name: string;
|
|
3518
|
+
key: string;
|
|
3519
|
+
platform: Platform;
|
|
3520
|
+
size: number;
|
|
3521
|
+
}[] | undefined;
|
|
2853
3522
|
defaultVariation?: {
|
|
2854
3523
|
id: string;
|
|
2855
3524
|
name: string;
|
|
@@ -2894,6 +3563,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2894
3563
|
tagline: string;
|
|
2895
3564
|
iconUrl: string | null;
|
|
2896
3565
|
owned: boolean;
|
|
3566
|
+
currentVersion?: string | undefined;
|
|
3567
|
+
downloads?: {
|
|
3568
|
+
path: string | null;
|
|
3569
|
+
name: string;
|
|
3570
|
+
key: string;
|
|
3571
|
+
platform: Platform;
|
|
3572
|
+
size: number;
|
|
3573
|
+
}[] | undefined;
|
|
2897
3574
|
defaultVariation?: {
|
|
2898
3575
|
id: string;
|
|
2899
3576
|
name: string;
|
|
@@ -3110,6 +3787,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3110
3787
|
tagline: string;
|
|
3111
3788
|
iconUrl: string | null;
|
|
3112
3789
|
owned: boolean;
|
|
3790
|
+
currentVersion?: string | undefined;
|
|
3791
|
+
downloads?: {
|
|
3792
|
+
path: string | null;
|
|
3793
|
+
name: string;
|
|
3794
|
+
key: string;
|
|
3795
|
+
platform: Platform;
|
|
3796
|
+
size: number;
|
|
3797
|
+
}[] | undefined;
|
|
3113
3798
|
defaultVariation?: {
|
|
3114
3799
|
id: string;
|
|
3115
3800
|
name: string;
|
|
@@ -3202,6 +3887,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3202
3887
|
tagline: string;
|
|
3203
3888
|
iconUrl: string | null;
|
|
3204
3889
|
owned: boolean;
|
|
3890
|
+
currentVersion?: string | undefined;
|
|
3891
|
+
downloads?: {
|
|
3892
|
+
path: string | null;
|
|
3893
|
+
name: string;
|
|
3894
|
+
key: string;
|
|
3895
|
+
platform: Platform;
|
|
3896
|
+
size: number;
|
|
3897
|
+
}[] | undefined;
|
|
3205
3898
|
defaultVariation?: {
|
|
3206
3899
|
id: string;
|
|
3207
3900
|
name: string;
|
|
@@ -3365,6 +4058,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3365
4058
|
tagline: string;
|
|
3366
4059
|
iconUrl: string | null;
|
|
3367
4060
|
owned: boolean;
|
|
4061
|
+
currentVersion?: string | undefined;
|
|
4062
|
+
downloads?: {
|
|
4063
|
+
path: string | null;
|
|
4064
|
+
name: string;
|
|
4065
|
+
key: string;
|
|
4066
|
+
platform: Platform;
|
|
4067
|
+
size: number;
|
|
4068
|
+
}[] | undefined;
|
|
3368
4069
|
defaultVariation?: {
|
|
3369
4070
|
id: string;
|
|
3370
4071
|
name: string;
|
|
@@ -3498,6 +4199,14 @@ declare const openOrderLineItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3498
4199
|
tagline: string;
|
|
3499
4200
|
iconUrl: string | null;
|
|
3500
4201
|
owned: boolean;
|
|
4202
|
+
currentVersion?: string | undefined;
|
|
4203
|
+
downloads?: {
|
|
4204
|
+
path: string | null;
|
|
4205
|
+
name: string;
|
|
4206
|
+
key: string;
|
|
4207
|
+
platform: Platform;
|
|
4208
|
+
size: number;
|
|
4209
|
+
}[] | undefined;
|
|
3501
4210
|
defaultVariation?: {
|
|
3502
4211
|
id: string;
|
|
3503
4212
|
name: string;
|
|
@@ -3689,6 +4398,26 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
3689
4398
|
tagline: z.ZodString;
|
|
3690
4399
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
3691
4400
|
owned: z.ZodBoolean;
|
|
4401
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
4402
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4403
|
+
name: z.ZodString;
|
|
4404
|
+
key: z.ZodString;
|
|
4405
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
4406
|
+
size: z.ZodNumber;
|
|
4407
|
+
path: z.ZodNullable<z.ZodString>;
|
|
4408
|
+
}, "strip", z.ZodTypeAny, {
|
|
4409
|
+
path: string | null;
|
|
4410
|
+
name: string;
|
|
4411
|
+
key: string;
|
|
4412
|
+
platform: Platform;
|
|
4413
|
+
size: number;
|
|
4414
|
+
}, {
|
|
4415
|
+
path: string | null;
|
|
4416
|
+
name: string;
|
|
4417
|
+
key: string;
|
|
4418
|
+
platform: Platform;
|
|
4419
|
+
size: number;
|
|
4420
|
+
}>, "many">>;
|
|
3692
4421
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
3693
4422
|
id: z.ZodString;
|
|
3694
4423
|
name: z.ZodString;
|
|
@@ -3851,6 +4580,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
3851
4580
|
tagline: string;
|
|
3852
4581
|
iconUrl: string | null;
|
|
3853
4582
|
owned: boolean;
|
|
4583
|
+
currentVersion?: string | undefined;
|
|
4584
|
+
downloads?: {
|
|
4585
|
+
path: string | null;
|
|
4586
|
+
name: string;
|
|
4587
|
+
key: string;
|
|
4588
|
+
platform: Platform;
|
|
4589
|
+
size: number;
|
|
4590
|
+
}[] | undefined;
|
|
3854
4591
|
defaultVariation?: {
|
|
3855
4592
|
id: string;
|
|
3856
4593
|
name: string;
|
|
@@ -3895,6 +4632,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
3895
4632
|
tagline: string;
|
|
3896
4633
|
iconUrl: string | null;
|
|
3897
4634
|
owned: boolean;
|
|
4635
|
+
currentVersion?: string | undefined;
|
|
4636
|
+
downloads?: {
|
|
4637
|
+
path: string | null;
|
|
4638
|
+
name: string;
|
|
4639
|
+
key: string;
|
|
4640
|
+
platform: Platform;
|
|
4641
|
+
size: number;
|
|
4642
|
+
}[] | undefined;
|
|
3898
4643
|
defaultVariation?: {
|
|
3899
4644
|
id: string;
|
|
3900
4645
|
name: string;
|
|
@@ -4008,6 +4753,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4008
4753
|
tagline: string;
|
|
4009
4754
|
iconUrl: string | null;
|
|
4010
4755
|
owned: boolean;
|
|
4756
|
+
currentVersion?: string | undefined;
|
|
4757
|
+
downloads?: {
|
|
4758
|
+
path: string | null;
|
|
4759
|
+
name: string;
|
|
4760
|
+
key: string;
|
|
4761
|
+
platform: Platform;
|
|
4762
|
+
size: number;
|
|
4763
|
+
}[] | undefined;
|
|
4011
4764
|
defaultVariation?: {
|
|
4012
4765
|
id: string;
|
|
4013
4766
|
name: string;
|
|
@@ -4093,6 +4846,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4093
4846
|
tagline: string;
|
|
4094
4847
|
iconUrl: string | null;
|
|
4095
4848
|
owned: boolean;
|
|
4849
|
+
currentVersion?: string | undefined;
|
|
4850
|
+
downloads?: {
|
|
4851
|
+
path: string | null;
|
|
4852
|
+
name: string;
|
|
4853
|
+
key: string;
|
|
4854
|
+
platform: Platform;
|
|
4855
|
+
size: number;
|
|
4856
|
+
}[] | undefined;
|
|
4096
4857
|
defaultVariation?: {
|
|
4097
4858
|
id: string;
|
|
4098
4859
|
name: string;
|
|
@@ -4244,6 +5005,26 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4244
5005
|
tagline: z.ZodString;
|
|
4245
5006
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
4246
5007
|
owned: z.ZodBoolean;
|
|
5008
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
5009
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5010
|
+
name: z.ZodString;
|
|
5011
|
+
key: z.ZodString;
|
|
5012
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
5013
|
+
size: z.ZodNumber;
|
|
5014
|
+
path: z.ZodNullable<z.ZodString>;
|
|
5015
|
+
}, "strip", z.ZodTypeAny, {
|
|
5016
|
+
path: string | null;
|
|
5017
|
+
name: string;
|
|
5018
|
+
key: string;
|
|
5019
|
+
platform: Platform;
|
|
5020
|
+
size: number;
|
|
5021
|
+
}, {
|
|
5022
|
+
path: string | null;
|
|
5023
|
+
name: string;
|
|
5024
|
+
key: string;
|
|
5025
|
+
platform: Platform;
|
|
5026
|
+
size: number;
|
|
5027
|
+
}>, "many">>;
|
|
4247
5028
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
4248
5029
|
id: z.ZodString;
|
|
4249
5030
|
name: z.ZodString;
|
|
@@ -4406,6 +5187,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4406
5187
|
tagline: string;
|
|
4407
5188
|
iconUrl: string | null;
|
|
4408
5189
|
owned: boolean;
|
|
5190
|
+
currentVersion?: string | undefined;
|
|
5191
|
+
downloads?: {
|
|
5192
|
+
path: string | null;
|
|
5193
|
+
name: string;
|
|
5194
|
+
key: string;
|
|
5195
|
+
platform: Platform;
|
|
5196
|
+
size: number;
|
|
5197
|
+
}[] | undefined;
|
|
4409
5198
|
defaultVariation?: {
|
|
4410
5199
|
id: string;
|
|
4411
5200
|
name: string;
|
|
@@ -4450,6 +5239,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4450
5239
|
tagline: string;
|
|
4451
5240
|
iconUrl: string | null;
|
|
4452
5241
|
owned: boolean;
|
|
5242
|
+
currentVersion?: string | undefined;
|
|
5243
|
+
downloads?: {
|
|
5244
|
+
path: string | null;
|
|
5245
|
+
name: string;
|
|
5246
|
+
key: string;
|
|
5247
|
+
platform: Platform;
|
|
5248
|
+
size: number;
|
|
5249
|
+
}[] | undefined;
|
|
4453
5250
|
defaultVariation?: {
|
|
4454
5251
|
id: string;
|
|
4455
5252
|
name: string;
|
|
@@ -4666,6 +5463,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4666
5463
|
tagline: string;
|
|
4667
5464
|
iconUrl: string | null;
|
|
4668
5465
|
owned: boolean;
|
|
5466
|
+
currentVersion?: string | undefined;
|
|
5467
|
+
downloads?: {
|
|
5468
|
+
path: string | null;
|
|
5469
|
+
name: string;
|
|
5470
|
+
key: string;
|
|
5471
|
+
platform: Platform;
|
|
5472
|
+
size: number;
|
|
5473
|
+
}[] | undefined;
|
|
4669
5474
|
defaultVariation?: {
|
|
4670
5475
|
id: string;
|
|
4671
5476
|
name: string;
|
|
@@ -4758,6 +5563,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4758
5563
|
tagline: string;
|
|
4759
5564
|
iconUrl: string | null;
|
|
4760
5565
|
owned: boolean;
|
|
5566
|
+
currentVersion?: string | undefined;
|
|
5567
|
+
downloads?: {
|
|
5568
|
+
path: string | null;
|
|
5569
|
+
name: string;
|
|
5570
|
+
key: string;
|
|
5571
|
+
platform: Platform;
|
|
5572
|
+
size: number;
|
|
5573
|
+
}[] | undefined;
|
|
4761
5574
|
defaultVariation?: {
|
|
4762
5575
|
id: string;
|
|
4763
5576
|
name: string;
|
|
@@ -4921,6 +5734,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
4921
5734
|
tagline: string;
|
|
4922
5735
|
iconUrl: string | null;
|
|
4923
5736
|
owned: boolean;
|
|
5737
|
+
currentVersion?: string | undefined;
|
|
5738
|
+
downloads?: {
|
|
5739
|
+
path: string | null;
|
|
5740
|
+
name: string;
|
|
5741
|
+
key: string;
|
|
5742
|
+
platform: Platform;
|
|
5743
|
+
size: number;
|
|
5744
|
+
}[] | undefined;
|
|
4924
5745
|
defaultVariation?: {
|
|
4925
5746
|
id: string;
|
|
4926
5747
|
name: string;
|
|
@@ -5054,6 +5875,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5054
5875
|
tagline: string;
|
|
5055
5876
|
iconUrl: string | null;
|
|
5056
5877
|
owned: boolean;
|
|
5878
|
+
currentVersion?: string | undefined;
|
|
5879
|
+
downloads?: {
|
|
5880
|
+
path: string | null;
|
|
5881
|
+
name: string;
|
|
5882
|
+
key: string;
|
|
5883
|
+
platform: Platform;
|
|
5884
|
+
size: number;
|
|
5885
|
+
}[] | undefined;
|
|
5057
5886
|
defaultVariation?: {
|
|
5058
5887
|
id: string;
|
|
5059
5888
|
name: string;
|
|
@@ -5201,6 +6030,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5201
6030
|
tagline: string;
|
|
5202
6031
|
iconUrl: string | null;
|
|
5203
6032
|
owned: boolean;
|
|
6033
|
+
currentVersion?: string | undefined;
|
|
6034
|
+
downloads?: {
|
|
6035
|
+
path: string | null;
|
|
6036
|
+
name: string;
|
|
6037
|
+
key: string;
|
|
6038
|
+
platform: Platform;
|
|
6039
|
+
size: number;
|
|
6040
|
+
}[] | undefined;
|
|
5204
6041
|
defaultVariation?: {
|
|
5205
6042
|
id: string;
|
|
5206
6043
|
name: string;
|
|
@@ -5295,6 +6132,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5295
6132
|
tagline: string;
|
|
5296
6133
|
iconUrl: string | null;
|
|
5297
6134
|
owned: boolean;
|
|
6135
|
+
currentVersion?: string | undefined;
|
|
6136
|
+
downloads?: {
|
|
6137
|
+
path: string | null;
|
|
6138
|
+
name: string;
|
|
6139
|
+
key: string;
|
|
6140
|
+
platform: Platform;
|
|
6141
|
+
size: number;
|
|
6142
|
+
}[] | undefined;
|
|
5298
6143
|
defaultVariation?: {
|
|
5299
6144
|
id: string;
|
|
5300
6145
|
name: string;
|
|
@@ -5432,6 +6277,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5432
6277
|
tagline: string;
|
|
5433
6278
|
iconUrl: string | null;
|
|
5434
6279
|
owned: boolean;
|
|
6280
|
+
currentVersion?: string | undefined;
|
|
6281
|
+
downloads?: {
|
|
6282
|
+
path: string | null;
|
|
6283
|
+
name: string;
|
|
6284
|
+
key: string;
|
|
6285
|
+
platform: Platform;
|
|
6286
|
+
size: number;
|
|
6287
|
+
}[] | undefined;
|
|
5435
6288
|
defaultVariation?: {
|
|
5436
6289
|
id: string;
|
|
5437
6290
|
name: string;
|
|
@@ -5525,6 +6378,14 @@ declare const openOrderSchema: z.ZodObject<{
|
|
|
5525
6378
|
tagline: string;
|
|
5526
6379
|
iconUrl: string | null;
|
|
5527
6380
|
owned: boolean;
|
|
6381
|
+
currentVersion?: string | undefined;
|
|
6382
|
+
downloads?: {
|
|
6383
|
+
path: string | null;
|
|
6384
|
+
name: string;
|
|
6385
|
+
key: string;
|
|
6386
|
+
platform: Platform;
|
|
6387
|
+
size: number;
|
|
6388
|
+
}[] | undefined;
|
|
5528
6389
|
defaultVariation?: {
|
|
5529
6390
|
id: string;
|
|
5530
6391
|
name: string;
|
|
@@ -5724,6 +6585,26 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
5724
6585
|
tagline: z.ZodString;
|
|
5725
6586
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
5726
6587
|
owned: z.ZodBoolean;
|
|
6588
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
6589
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6590
|
+
name: z.ZodString;
|
|
6591
|
+
key: z.ZodString;
|
|
6592
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
6593
|
+
size: z.ZodNumber;
|
|
6594
|
+
path: z.ZodNullable<z.ZodString>;
|
|
6595
|
+
}, "strip", z.ZodTypeAny, {
|
|
6596
|
+
path: string | null;
|
|
6597
|
+
name: string;
|
|
6598
|
+
key: string;
|
|
6599
|
+
platform: Platform;
|
|
6600
|
+
size: number;
|
|
6601
|
+
}, {
|
|
6602
|
+
path: string | null;
|
|
6603
|
+
name: string;
|
|
6604
|
+
key: string;
|
|
6605
|
+
platform: Platform;
|
|
6606
|
+
size: number;
|
|
6607
|
+
}>, "many">>;
|
|
5727
6608
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
5728
6609
|
id: z.ZodString;
|
|
5729
6610
|
name: z.ZodString;
|
|
@@ -5886,6 +6767,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
5886
6767
|
tagline: string;
|
|
5887
6768
|
iconUrl: string | null;
|
|
5888
6769
|
owned: boolean;
|
|
6770
|
+
currentVersion?: string | undefined;
|
|
6771
|
+
downloads?: {
|
|
6772
|
+
path: string | null;
|
|
6773
|
+
name: string;
|
|
6774
|
+
key: string;
|
|
6775
|
+
platform: Platform;
|
|
6776
|
+
size: number;
|
|
6777
|
+
}[] | undefined;
|
|
5889
6778
|
defaultVariation?: {
|
|
5890
6779
|
id: string;
|
|
5891
6780
|
name: string;
|
|
@@ -5930,6 +6819,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
5930
6819
|
tagline: string;
|
|
5931
6820
|
iconUrl: string | null;
|
|
5932
6821
|
owned: boolean;
|
|
6822
|
+
currentVersion?: string | undefined;
|
|
6823
|
+
downloads?: {
|
|
6824
|
+
path: string | null;
|
|
6825
|
+
name: string;
|
|
6826
|
+
key: string;
|
|
6827
|
+
platform: Platform;
|
|
6828
|
+
size: number;
|
|
6829
|
+
}[] | undefined;
|
|
5933
6830
|
defaultVariation?: {
|
|
5934
6831
|
id: string;
|
|
5935
6832
|
name: string;
|
|
@@ -6043,6 +6940,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6043
6940
|
tagline: string;
|
|
6044
6941
|
iconUrl: string | null;
|
|
6045
6942
|
owned: boolean;
|
|
6943
|
+
currentVersion?: string | undefined;
|
|
6944
|
+
downloads?: {
|
|
6945
|
+
path: string | null;
|
|
6946
|
+
name: string;
|
|
6947
|
+
key: string;
|
|
6948
|
+
platform: Platform;
|
|
6949
|
+
size: number;
|
|
6950
|
+
}[] | undefined;
|
|
6046
6951
|
defaultVariation?: {
|
|
6047
6952
|
id: string;
|
|
6048
6953
|
name: string;
|
|
@@ -6128,6 +7033,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6128
7033
|
tagline: string;
|
|
6129
7034
|
iconUrl: string | null;
|
|
6130
7035
|
owned: boolean;
|
|
7036
|
+
currentVersion?: string | undefined;
|
|
7037
|
+
downloads?: {
|
|
7038
|
+
path: string | null;
|
|
7039
|
+
name: string;
|
|
7040
|
+
key: string;
|
|
7041
|
+
platform: Platform;
|
|
7042
|
+
size: number;
|
|
7043
|
+
}[] | undefined;
|
|
6131
7044
|
defaultVariation?: {
|
|
6132
7045
|
id: string;
|
|
6133
7046
|
name: string;
|
|
@@ -6279,6 +7192,26 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6279
7192
|
tagline: z.ZodString;
|
|
6280
7193
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
6281
7194
|
owned: z.ZodBoolean;
|
|
7195
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
7196
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7197
|
+
name: z.ZodString;
|
|
7198
|
+
key: z.ZodString;
|
|
7199
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
7200
|
+
size: z.ZodNumber;
|
|
7201
|
+
path: z.ZodNullable<z.ZodString>;
|
|
7202
|
+
}, "strip", z.ZodTypeAny, {
|
|
7203
|
+
path: string | null;
|
|
7204
|
+
name: string;
|
|
7205
|
+
key: string;
|
|
7206
|
+
platform: Platform;
|
|
7207
|
+
size: number;
|
|
7208
|
+
}, {
|
|
7209
|
+
path: string | null;
|
|
7210
|
+
name: string;
|
|
7211
|
+
key: string;
|
|
7212
|
+
platform: Platform;
|
|
7213
|
+
size: number;
|
|
7214
|
+
}>, "many">>;
|
|
6282
7215
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
6283
7216
|
id: z.ZodString;
|
|
6284
7217
|
name: z.ZodString;
|
|
@@ -6441,6 +7374,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6441
7374
|
tagline: string;
|
|
6442
7375
|
iconUrl: string | null;
|
|
6443
7376
|
owned: boolean;
|
|
7377
|
+
currentVersion?: string | undefined;
|
|
7378
|
+
downloads?: {
|
|
7379
|
+
path: string | null;
|
|
7380
|
+
name: string;
|
|
7381
|
+
key: string;
|
|
7382
|
+
platform: Platform;
|
|
7383
|
+
size: number;
|
|
7384
|
+
}[] | undefined;
|
|
6444
7385
|
defaultVariation?: {
|
|
6445
7386
|
id: string;
|
|
6446
7387
|
name: string;
|
|
@@ -6485,6 +7426,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6485
7426
|
tagline: string;
|
|
6486
7427
|
iconUrl: string | null;
|
|
6487
7428
|
owned: boolean;
|
|
7429
|
+
currentVersion?: string | undefined;
|
|
7430
|
+
downloads?: {
|
|
7431
|
+
path: string | null;
|
|
7432
|
+
name: string;
|
|
7433
|
+
key: string;
|
|
7434
|
+
platform: Platform;
|
|
7435
|
+
size: number;
|
|
7436
|
+
}[] | undefined;
|
|
6488
7437
|
defaultVariation?: {
|
|
6489
7438
|
id: string;
|
|
6490
7439
|
name: string;
|
|
@@ -6701,6 +7650,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6701
7650
|
tagline: string;
|
|
6702
7651
|
iconUrl: string | null;
|
|
6703
7652
|
owned: boolean;
|
|
7653
|
+
currentVersion?: string | undefined;
|
|
7654
|
+
downloads?: {
|
|
7655
|
+
path: string | null;
|
|
7656
|
+
name: string;
|
|
7657
|
+
key: string;
|
|
7658
|
+
platform: Platform;
|
|
7659
|
+
size: number;
|
|
7660
|
+
}[] | undefined;
|
|
6704
7661
|
defaultVariation?: {
|
|
6705
7662
|
id: string;
|
|
6706
7663
|
name: string;
|
|
@@ -6793,6 +7750,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6793
7750
|
tagline: string;
|
|
6794
7751
|
iconUrl: string | null;
|
|
6795
7752
|
owned: boolean;
|
|
7753
|
+
currentVersion?: string | undefined;
|
|
7754
|
+
downloads?: {
|
|
7755
|
+
path: string | null;
|
|
7756
|
+
name: string;
|
|
7757
|
+
key: string;
|
|
7758
|
+
platform: Platform;
|
|
7759
|
+
size: number;
|
|
7760
|
+
}[] | undefined;
|
|
6796
7761
|
defaultVariation?: {
|
|
6797
7762
|
id: string;
|
|
6798
7763
|
name: string;
|
|
@@ -6956,6 +7921,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
6956
7921
|
tagline: string;
|
|
6957
7922
|
iconUrl: string | null;
|
|
6958
7923
|
owned: boolean;
|
|
7924
|
+
currentVersion?: string | undefined;
|
|
7925
|
+
downloads?: {
|
|
7926
|
+
path: string | null;
|
|
7927
|
+
name: string;
|
|
7928
|
+
key: string;
|
|
7929
|
+
platform: Platform;
|
|
7930
|
+
size: number;
|
|
7931
|
+
}[] | undefined;
|
|
6959
7932
|
defaultVariation?: {
|
|
6960
7933
|
id: string;
|
|
6961
7934
|
name: string;
|
|
@@ -7089,6 +8062,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7089
8062
|
tagline: string;
|
|
7090
8063
|
iconUrl: string | null;
|
|
7091
8064
|
owned: boolean;
|
|
8065
|
+
currentVersion?: string | undefined;
|
|
8066
|
+
downloads?: {
|
|
8067
|
+
path: string | null;
|
|
8068
|
+
name: string;
|
|
8069
|
+
key: string;
|
|
8070
|
+
platform: Platform;
|
|
8071
|
+
size: number;
|
|
8072
|
+
}[] | undefined;
|
|
7092
8073
|
defaultVariation?: {
|
|
7093
8074
|
id: string;
|
|
7094
8075
|
name: string;
|
|
@@ -7236,6 +8217,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7236
8217
|
tagline: string;
|
|
7237
8218
|
iconUrl: string | null;
|
|
7238
8219
|
owned: boolean;
|
|
8220
|
+
currentVersion?: string | undefined;
|
|
8221
|
+
downloads?: {
|
|
8222
|
+
path: string | null;
|
|
8223
|
+
name: string;
|
|
8224
|
+
key: string;
|
|
8225
|
+
platform: Platform;
|
|
8226
|
+
size: number;
|
|
8227
|
+
}[] | undefined;
|
|
7239
8228
|
defaultVariation?: {
|
|
7240
8229
|
id: string;
|
|
7241
8230
|
name: string;
|
|
@@ -7330,6 +8319,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7330
8319
|
tagline: string;
|
|
7331
8320
|
iconUrl: string | null;
|
|
7332
8321
|
owned: boolean;
|
|
8322
|
+
currentVersion?: string | undefined;
|
|
8323
|
+
downloads?: {
|
|
8324
|
+
path: string | null;
|
|
8325
|
+
name: string;
|
|
8326
|
+
key: string;
|
|
8327
|
+
platform: Platform;
|
|
8328
|
+
size: number;
|
|
8329
|
+
}[] | undefined;
|
|
7333
8330
|
defaultVariation?: {
|
|
7334
8331
|
id: string;
|
|
7335
8332
|
name: string;
|
|
@@ -7467,6 +8464,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7467
8464
|
tagline: string;
|
|
7468
8465
|
iconUrl: string | null;
|
|
7469
8466
|
owned: boolean;
|
|
8467
|
+
currentVersion?: string | undefined;
|
|
8468
|
+
downloads?: {
|
|
8469
|
+
path: string | null;
|
|
8470
|
+
name: string;
|
|
8471
|
+
key: string;
|
|
8472
|
+
platform: Platform;
|
|
8473
|
+
size: number;
|
|
8474
|
+
}[] | undefined;
|
|
7470
8475
|
defaultVariation?: {
|
|
7471
8476
|
id: string;
|
|
7472
8477
|
name: string;
|
|
@@ -7560,6 +8565,14 @@ declare const orderSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
|
7560
8565
|
tagline: string;
|
|
7561
8566
|
iconUrl: string | null;
|
|
7562
8567
|
owned: boolean;
|
|
8568
|
+
currentVersion?: string | undefined;
|
|
8569
|
+
downloads?: {
|
|
8570
|
+
path: string | null;
|
|
8571
|
+
name: string;
|
|
8572
|
+
key: string;
|
|
8573
|
+
platform: Platform;
|
|
8574
|
+
size: number;
|
|
8575
|
+
}[] | undefined;
|
|
7563
8576
|
defaultVariation?: {
|
|
7564
8577
|
id: string;
|
|
7565
8578
|
name: string;
|
|
@@ -7719,6 +8732,14 @@ declare class OrderEndpoints {
|
|
|
7719
8732
|
tagline: string;
|
|
7720
8733
|
iconUrl: string | null;
|
|
7721
8734
|
owned: boolean;
|
|
8735
|
+
currentVersion?: string | undefined;
|
|
8736
|
+
downloads?: {
|
|
8737
|
+
path: string | null;
|
|
8738
|
+
name: string;
|
|
8739
|
+
key: string;
|
|
8740
|
+
platform: Platform;
|
|
8741
|
+
size: number;
|
|
8742
|
+
}[] | undefined;
|
|
7722
8743
|
defaultVariation?: {
|
|
7723
8744
|
id: string;
|
|
7724
8745
|
name: string;
|
|
@@ -7813,6 +8834,14 @@ declare class OrderEndpoints {
|
|
|
7813
8834
|
tagline: string;
|
|
7814
8835
|
iconUrl: string | null;
|
|
7815
8836
|
owned: boolean;
|
|
8837
|
+
currentVersion?: string | undefined;
|
|
8838
|
+
downloads?: {
|
|
8839
|
+
path: string | null;
|
|
8840
|
+
name: string;
|
|
8841
|
+
key: string;
|
|
8842
|
+
platform: Platform;
|
|
8843
|
+
size: number;
|
|
8844
|
+
}[] | undefined;
|
|
7816
8845
|
defaultVariation?: {
|
|
7817
8846
|
id: string;
|
|
7818
8847
|
name: string;
|
|
@@ -7921,6 +8950,25 @@ declare class OrderEndpoints {
|
|
|
7921
8950
|
}): Promise<OpenOrder>;
|
|
7922
8951
|
}
|
|
7923
8952
|
|
|
8953
|
+
declare const downloadSchema: z.ZodObject<{
|
|
8954
|
+
name: z.ZodString;
|
|
8955
|
+
key: z.ZodString;
|
|
8956
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
8957
|
+
size: z.ZodNumber;
|
|
8958
|
+
path: z.ZodNullable<z.ZodString>;
|
|
8959
|
+
}, "strip", z.ZodTypeAny, {
|
|
8960
|
+
path: string | null;
|
|
8961
|
+
name: string;
|
|
8962
|
+
key: string;
|
|
8963
|
+
platform: Platform;
|
|
8964
|
+
size: number;
|
|
8965
|
+
}, {
|
|
8966
|
+
path: string | null;
|
|
8967
|
+
name: string;
|
|
8968
|
+
key: string;
|
|
8969
|
+
platform: Platform;
|
|
8970
|
+
size: number;
|
|
8971
|
+
}>;
|
|
7924
8972
|
declare const productSummarySchema: z.ZodObject<{
|
|
7925
8973
|
id: z.ZodString;
|
|
7926
8974
|
name: z.ZodString;
|
|
@@ -8001,6 +9049,7 @@ declare enum Platform {
|
|
|
8001
9049
|
Linux = "Linux",
|
|
8002
9050
|
Mac = "Mac"
|
|
8003
9051
|
}
|
|
9052
|
+
type Download = z.infer<typeof downloadSchema>;
|
|
8004
9053
|
type OwnedProduct = z.infer<typeof productSummarySchema>;
|
|
8005
9054
|
|
|
8006
9055
|
declare class ProductEndpoints {
|
|
@@ -8022,6 +9071,14 @@ declare class StorefrontEndpoints {
|
|
|
8022
9071
|
tagline: string;
|
|
8023
9072
|
iconUrl: string | null;
|
|
8024
9073
|
owned: boolean;
|
|
9074
|
+
currentVersion?: string | undefined;
|
|
9075
|
+
downloads?: {
|
|
9076
|
+
path: string | null;
|
|
9077
|
+
name: string;
|
|
9078
|
+
key: string;
|
|
9079
|
+
platform: Platform;
|
|
9080
|
+
size: number;
|
|
9081
|
+
}[] | undefined;
|
|
8025
9082
|
defaultVariation?: {
|
|
8026
9083
|
id: string;
|
|
8027
9084
|
name: string;
|
|
@@ -8077,6 +9134,14 @@ declare class StorefrontEndpoints {
|
|
|
8077
9134
|
tagline: string;
|
|
8078
9135
|
iconUrl: string | null;
|
|
8079
9136
|
owned: boolean;
|
|
9137
|
+
currentVersion?: string | undefined;
|
|
9138
|
+
downloads?: {
|
|
9139
|
+
path: string | null;
|
|
9140
|
+
name: string;
|
|
9141
|
+
key: string;
|
|
9142
|
+
platform: Platform;
|
|
9143
|
+
size: number;
|
|
9144
|
+
}[] | undefined;
|
|
8080
9145
|
defaultVariation?: {
|
|
8081
9146
|
id: string;
|
|
8082
9147
|
name: string;
|
|
@@ -8173,6 +9238,26 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8173
9238
|
tagline: z.ZodString;
|
|
8174
9239
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
8175
9240
|
owned: z.ZodBoolean;
|
|
9241
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
9242
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9243
|
+
name: z.ZodString;
|
|
9244
|
+
key: z.ZodString;
|
|
9245
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
9246
|
+
size: z.ZodNumber;
|
|
9247
|
+
path: z.ZodNullable<z.ZodString>;
|
|
9248
|
+
}, "strip", z.ZodTypeAny, {
|
|
9249
|
+
path: string | null;
|
|
9250
|
+
name: string;
|
|
9251
|
+
key: string;
|
|
9252
|
+
platform: Platform;
|
|
9253
|
+
size: number;
|
|
9254
|
+
}, {
|
|
9255
|
+
path: string | null;
|
|
9256
|
+
name: string;
|
|
9257
|
+
key: string;
|
|
9258
|
+
platform: Platform;
|
|
9259
|
+
size: number;
|
|
9260
|
+
}>, "many">>;
|
|
8176
9261
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
8177
9262
|
id: z.ZodString;
|
|
8178
9263
|
name: z.ZodString;
|
|
@@ -8335,6 +9420,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8335
9420
|
tagline: string;
|
|
8336
9421
|
iconUrl: string | null;
|
|
8337
9422
|
owned: boolean;
|
|
9423
|
+
currentVersion?: string | undefined;
|
|
9424
|
+
downloads?: {
|
|
9425
|
+
path: string | null;
|
|
9426
|
+
name: string;
|
|
9427
|
+
key: string;
|
|
9428
|
+
platform: Platform;
|
|
9429
|
+
size: number;
|
|
9430
|
+
}[] | undefined;
|
|
8338
9431
|
defaultVariation?: {
|
|
8339
9432
|
id: string;
|
|
8340
9433
|
name: string;
|
|
@@ -8379,6 +9472,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8379
9472
|
tagline: string;
|
|
8380
9473
|
iconUrl: string | null;
|
|
8381
9474
|
owned: boolean;
|
|
9475
|
+
currentVersion?: string | undefined;
|
|
9476
|
+
downloads?: {
|
|
9477
|
+
path: string | null;
|
|
9478
|
+
name: string;
|
|
9479
|
+
key: string;
|
|
9480
|
+
platform: Platform;
|
|
9481
|
+
size: number;
|
|
9482
|
+
}[] | undefined;
|
|
8382
9483
|
defaultVariation?: {
|
|
8383
9484
|
id: string;
|
|
8384
9485
|
name: string;
|
|
@@ -8428,6 +9529,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8428
9529
|
tagline: string;
|
|
8429
9530
|
iconUrl: string | null;
|
|
8430
9531
|
owned: boolean;
|
|
9532
|
+
currentVersion?: string | undefined;
|
|
9533
|
+
downloads?: {
|
|
9534
|
+
path: string | null;
|
|
9535
|
+
name: string;
|
|
9536
|
+
key: string;
|
|
9537
|
+
platform: Platform;
|
|
9538
|
+
size: number;
|
|
9539
|
+
}[] | undefined;
|
|
8431
9540
|
defaultVariation?: {
|
|
8432
9541
|
id: string;
|
|
8433
9542
|
name: string;
|
|
@@ -8475,6 +9584,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8475
9584
|
tagline: string;
|
|
8476
9585
|
iconUrl: string | null;
|
|
8477
9586
|
owned: boolean;
|
|
9587
|
+
currentVersion?: string | undefined;
|
|
9588
|
+
downloads?: {
|
|
9589
|
+
path: string | null;
|
|
9590
|
+
name: string;
|
|
9591
|
+
key: string;
|
|
9592
|
+
platform: Platform;
|
|
9593
|
+
size: number;
|
|
9594
|
+
}[] | undefined;
|
|
8478
9595
|
defaultVariation?: {
|
|
8479
9596
|
id: string;
|
|
8480
9597
|
name: string;
|
|
@@ -8531,6 +9648,26 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8531
9648
|
tagline: z.ZodString;
|
|
8532
9649
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
8533
9650
|
owned: z.ZodBoolean;
|
|
9651
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
9652
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9653
|
+
name: z.ZodString;
|
|
9654
|
+
key: z.ZodString;
|
|
9655
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
9656
|
+
size: z.ZodNumber;
|
|
9657
|
+
path: z.ZodNullable<z.ZodString>;
|
|
9658
|
+
}, "strip", z.ZodTypeAny, {
|
|
9659
|
+
path: string | null;
|
|
9660
|
+
name: string;
|
|
9661
|
+
key: string;
|
|
9662
|
+
platform: Platform;
|
|
9663
|
+
size: number;
|
|
9664
|
+
}, {
|
|
9665
|
+
path: string | null;
|
|
9666
|
+
name: string;
|
|
9667
|
+
key: string;
|
|
9668
|
+
platform: Platform;
|
|
9669
|
+
size: number;
|
|
9670
|
+
}>, "many">>;
|
|
8534
9671
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
8535
9672
|
id: z.ZodString;
|
|
8536
9673
|
name: z.ZodString;
|
|
@@ -8693,6 +9830,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8693
9830
|
tagline: string;
|
|
8694
9831
|
iconUrl: string | null;
|
|
8695
9832
|
owned: boolean;
|
|
9833
|
+
currentVersion?: string | undefined;
|
|
9834
|
+
downloads?: {
|
|
9835
|
+
path: string | null;
|
|
9836
|
+
name: string;
|
|
9837
|
+
key: string;
|
|
9838
|
+
platform: Platform;
|
|
9839
|
+
size: number;
|
|
9840
|
+
}[] | undefined;
|
|
8696
9841
|
defaultVariation?: {
|
|
8697
9842
|
id: string;
|
|
8698
9843
|
name: string;
|
|
@@ -8737,6 +9882,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8737
9882
|
tagline: string;
|
|
8738
9883
|
iconUrl: string | null;
|
|
8739
9884
|
owned: boolean;
|
|
9885
|
+
currentVersion?: string | undefined;
|
|
9886
|
+
downloads?: {
|
|
9887
|
+
path: string | null;
|
|
9888
|
+
name: string;
|
|
9889
|
+
key: string;
|
|
9890
|
+
platform: Platform;
|
|
9891
|
+
size: number;
|
|
9892
|
+
}[] | undefined;
|
|
8740
9893
|
defaultVariation?: {
|
|
8741
9894
|
id: string;
|
|
8742
9895
|
name: string;
|
|
@@ -8953,6 +10106,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
8953
10106
|
tagline: string;
|
|
8954
10107
|
iconUrl: string | null;
|
|
8955
10108
|
owned: boolean;
|
|
10109
|
+
currentVersion?: string | undefined;
|
|
10110
|
+
downloads?: {
|
|
10111
|
+
path: string | null;
|
|
10112
|
+
name: string;
|
|
10113
|
+
key: string;
|
|
10114
|
+
platform: Platform;
|
|
10115
|
+
size: number;
|
|
10116
|
+
}[] | undefined;
|
|
8956
10117
|
defaultVariation?: {
|
|
8957
10118
|
id: string;
|
|
8958
10119
|
name: string;
|
|
@@ -9045,6 +10206,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9045
10206
|
tagline: string;
|
|
9046
10207
|
iconUrl: string | null;
|
|
9047
10208
|
owned: boolean;
|
|
10209
|
+
currentVersion?: string | undefined;
|
|
10210
|
+
downloads?: {
|
|
10211
|
+
path: string | null;
|
|
10212
|
+
name: string;
|
|
10213
|
+
key: string;
|
|
10214
|
+
platform: Platform;
|
|
10215
|
+
size: number;
|
|
10216
|
+
}[] | undefined;
|
|
9048
10217
|
defaultVariation?: {
|
|
9049
10218
|
id: string;
|
|
9050
10219
|
name: string;
|
|
@@ -9144,6 +10313,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9144
10313
|
tagline: string;
|
|
9145
10314
|
iconUrl: string | null;
|
|
9146
10315
|
owned: boolean;
|
|
10316
|
+
currentVersion?: string | undefined;
|
|
10317
|
+
downloads?: {
|
|
10318
|
+
path: string | null;
|
|
10319
|
+
name: string;
|
|
10320
|
+
key: string;
|
|
10321
|
+
platform: Platform;
|
|
10322
|
+
size: number;
|
|
10323
|
+
}[] | undefined;
|
|
9147
10324
|
defaultVariation?: {
|
|
9148
10325
|
id: string;
|
|
9149
10326
|
name: string;
|
|
@@ -9239,6 +10416,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9239
10416
|
tagline: string;
|
|
9240
10417
|
iconUrl: string | null;
|
|
9241
10418
|
owned: boolean;
|
|
10419
|
+
currentVersion?: string | undefined;
|
|
10420
|
+
downloads?: {
|
|
10421
|
+
path: string | null;
|
|
10422
|
+
name: string;
|
|
10423
|
+
key: string;
|
|
10424
|
+
platform: Platform;
|
|
10425
|
+
size: number;
|
|
10426
|
+
}[] | undefined;
|
|
9242
10427
|
defaultVariation?: {
|
|
9243
10428
|
id: string;
|
|
9244
10429
|
name: string;
|
|
@@ -9337,6 +10522,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9337
10522
|
tagline: string;
|
|
9338
10523
|
iconUrl: string | null;
|
|
9339
10524
|
owned: boolean;
|
|
10525
|
+
currentVersion?: string | undefined;
|
|
10526
|
+
downloads?: {
|
|
10527
|
+
path: string | null;
|
|
10528
|
+
name: string;
|
|
10529
|
+
key: string;
|
|
10530
|
+
platform: Platform;
|
|
10531
|
+
size: number;
|
|
10532
|
+
}[] | undefined;
|
|
9340
10533
|
defaultVariation?: {
|
|
9341
10534
|
id: string;
|
|
9342
10535
|
name: string;
|
|
@@ -9394,6 +10587,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9394
10587
|
tagline: string;
|
|
9395
10588
|
iconUrl: string | null;
|
|
9396
10589
|
owned: boolean;
|
|
10590
|
+
currentVersion?: string | undefined;
|
|
10591
|
+
downloads?: {
|
|
10592
|
+
path: string | null;
|
|
10593
|
+
name: string;
|
|
10594
|
+
key: string;
|
|
10595
|
+
platform: Platform;
|
|
10596
|
+
size: number;
|
|
10597
|
+
}[] | undefined;
|
|
9397
10598
|
defaultVariation?: {
|
|
9398
10599
|
id: string;
|
|
9399
10600
|
name: string;
|
|
@@ -9489,6 +10690,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9489
10690
|
tagline: string;
|
|
9490
10691
|
iconUrl: string | null;
|
|
9491
10692
|
owned: boolean;
|
|
10693
|
+
currentVersion?: string | undefined;
|
|
10694
|
+
downloads?: {
|
|
10695
|
+
path: string | null;
|
|
10696
|
+
name: string;
|
|
10697
|
+
key: string;
|
|
10698
|
+
platform: Platform;
|
|
10699
|
+
size: number;
|
|
10700
|
+
}[] | undefined;
|
|
9492
10701
|
defaultVariation?: {
|
|
9493
10702
|
id: string;
|
|
9494
10703
|
name: string;
|
|
@@ -9545,6 +10754,14 @@ declare const voucherSchema: z.ZodObject<{
|
|
|
9545
10754
|
tagline: string;
|
|
9546
10755
|
iconUrl: string | null;
|
|
9547
10756
|
owned: boolean;
|
|
10757
|
+
currentVersion?: string | undefined;
|
|
10758
|
+
downloads?: {
|
|
10759
|
+
path: string | null;
|
|
10760
|
+
name: string;
|
|
10761
|
+
key: string;
|
|
10762
|
+
platform: Platform;
|
|
10763
|
+
size: number;
|
|
10764
|
+
}[] | undefined;
|
|
9548
10765
|
defaultVariation?: {
|
|
9549
10766
|
id: string;
|
|
9550
10767
|
name: string;
|
|
@@ -9646,6 +10863,26 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
9646
10863
|
tagline: z.ZodString;
|
|
9647
10864
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
9648
10865
|
owned: z.ZodBoolean;
|
|
10866
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
10867
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10868
|
+
name: z.ZodString;
|
|
10869
|
+
key: z.ZodString;
|
|
10870
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
10871
|
+
size: z.ZodNumber;
|
|
10872
|
+
path: z.ZodNullable<z.ZodString>;
|
|
10873
|
+
}, "strip", z.ZodTypeAny, {
|
|
10874
|
+
path: string | null;
|
|
10875
|
+
name: string;
|
|
10876
|
+
key: string;
|
|
10877
|
+
platform: Platform;
|
|
10878
|
+
size: number;
|
|
10879
|
+
}, {
|
|
10880
|
+
path: string | null;
|
|
10881
|
+
name: string;
|
|
10882
|
+
key: string;
|
|
10883
|
+
platform: Platform;
|
|
10884
|
+
size: number;
|
|
10885
|
+
}>, "many">>;
|
|
9649
10886
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
9650
10887
|
id: z.ZodString;
|
|
9651
10888
|
name: z.ZodString;
|
|
@@ -9808,6 +11045,14 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
9808
11045
|
tagline: string;
|
|
9809
11046
|
iconUrl: string | null;
|
|
9810
11047
|
owned: boolean;
|
|
11048
|
+
currentVersion?: string | undefined;
|
|
11049
|
+
downloads?: {
|
|
11050
|
+
path: string | null;
|
|
11051
|
+
name: string;
|
|
11052
|
+
key: string;
|
|
11053
|
+
platform: Platform;
|
|
11054
|
+
size: number;
|
|
11055
|
+
}[] | undefined;
|
|
9811
11056
|
defaultVariation?: {
|
|
9812
11057
|
id: string;
|
|
9813
11058
|
name: string;
|
|
@@ -9852,6 +11097,14 @@ declare const storefrontProductSchema: z.ZodObject<{
|
|
|
9852
11097
|
tagline: string;
|
|
9853
11098
|
iconUrl: string | null;
|
|
9854
11099
|
owned: boolean;
|
|
11100
|
+
currentVersion?: string | undefined;
|
|
11101
|
+
downloads?: {
|
|
11102
|
+
path: string | null;
|
|
11103
|
+
name: string;
|
|
11104
|
+
key: string;
|
|
11105
|
+
platform: Platform;
|
|
11106
|
+
size: number;
|
|
11107
|
+
}[] | undefined;
|
|
9855
11108
|
defaultVariation?: {
|
|
9856
11109
|
id: string;
|
|
9857
11110
|
name: string;
|
|
@@ -9905,6 +11158,26 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
9905
11158
|
tagline: z.ZodString;
|
|
9906
11159
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
9907
11160
|
owned: z.ZodBoolean;
|
|
11161
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
11162
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11163
|
+
name: z.ZodString;
|
|
11164
|
+
key: z.ZodString;
|
|
11165
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
11166
|
+
size: z.ZodNumber;
|
|
11167
|
+
path: z.ZodNullable<z.ZodString>;
|
|
11168
|
+
}, "strip", z.ZodTypeAny, {
|
|
11169
|
+
path: string | null;
|
|
11170
|
+
name: string;
|
|
11171
|
+
key: string;
|
|
11172
|
+
platform: Platform;
|
|
11173
|
+
size: number;
|
|
11174
|
+
}, {
|
|
11175
|
+
path: string | null;
|
|
11176
|
+
name: string;
|
|
11177
|
+
key: string;
|
|
11178
|
+
platform: Platform;
|
|
11179
|
+
size: number;
|
|
11180
|
+
}>, "many">>;
|
|
9908
11181
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
9909
11182
|
id: z.ZodString;
|
|
9910
11183
|
name: z.ZodString;
|
|
@@ -10067,6 +11340,14 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
10067
11340
|
tagline: string;
|
|
10068
11341
|
iconUrl: string | null;
|
|
10069
11342
|
owned: boolean;
|
|
11343
|
+
currentVersion?: string | undefined;
|
|
11344
|
+
downloads?: {
|
|
11345
|
+
path: string | null;
|
|
11346
|
+
name: string;
|
|
11347
|
+
key: string;
|
|
11348
|
+
platform: Platform;
|
|
11349
|
+
size: number;
|
|
11350
|
+
}[] | undefined;
|
|
10070
11351
|
defaultVariation?: {
|
|
10071
11352
|
id: string;
|
|
10072
11353
|
name: string;
|
|
@@ -10111,6 +11392,14 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
10111
11392
|
tagline: string;
|
|
10112
11393
|
iconUrl: string | null;
|
|
10113
11394
|
owned: boolean;
|
|
11395
|
+
currentVersion?: string | undefined;
|
|
11396
|
+
downloads?: {
|
|
11397
|
+
path: string | null;
|
|
11398
|
+
name: string;
|
|
11399
|
+
key: string;
|
|
11400
|
+
platform: Platform;
|
|
11401
|
+
size: number;
|
|
11402
|
+
}[] | undefined;
|
|
10114
11403
|
defaultVariation?: {
|
|
10115
11404
|
id: string;
|
|
10116
11405
|
name: string;
|
|
@@ -10327,6 +11616,14 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
10327
11616
|
tagline: string;
|
|
10328
11617
|
iconUrl: string | null;
|
|
10329
11618
|
owned: boolean;
|
|
11619
|
+
currentVersion?: string | undefined;
|
|
11620
|
+
downloads?: {
|
|
11621
|
+
path: string | null;
|
|
11622
|
+
name: string;
|
|
11623
|
+
key: string;
|
|
11624
|
+
platform: Platform;
|
|
11625
|
+
size: number;
|
|
11626
|
+
}[] | undefined;
|
|
10330
11627
|
defaultVariation?: {
|
|
10331
11628
|
id: string;
|
|
10332
11629
|
name: string;
|
|
@@ -10419,6 +11716,14 @@ declare const storefrontBundleSchema: z.ZodObject<{
|
|
|
10419
11716
|
tagline: string;
|
|
10420
11717
|
iconUrl: string | null;
|
|
10421
11718
|
owned: boolean;
|
|
11719
|
+
currentVersion?: string | undefined;
|
|
11720
|
+
downloads?: {
|
|
11721
|
+
path: string | null;
|
|
11722
|
+
name: string;
|
|
11723
|
+
key: string;
|
|
11724
|
+
platform: Platform;
|
|
11725
|
+
size: number;
|
|
11726
|
+
}[] | undefined;
|
|
10422
11727
|
defaultVariation?: {
|
|
10423
11728
|
id: string;
|
|
10424
11729
|
name: string;
|
|
@@ -10509,6 +11814,26 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10509
11814
|
tagline: z.ZodString;
|
|
10510
11815
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
10511
11816
|
owned: z.ZodBoolean;
|
|
11817
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
11818
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11819
|
+
name: z.ZodString;
|
|
11820
|
+
key: z.ZodString;
|
|
11821
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
11822
|
+
size: z.ZodNumber;
|
|
11823
|
+
path: z.ZodNullable<z.ZodString>;
|
|
11824
|
+
}, "strip", z.ZodTypeAny, {
|
|
11825
|
+
path: string | null;
|
|
11826
|
+
name: string;
|
|
11827
|
+
key: string;
|
|
11828
|
+
platform: Platform;
|
|
11829
|
+
size: number;
|
|
11830
|
+
}, {
|
|
11831
|
+
path: string | null;
|
|
11832
|
+
name: string;
|
|
11833
|
+
key: string;
|
|
11834
|
+
platform: Platform;
|
|
11835
|
+
size: number;
|
|
11836
|
+
}>, "many">>;
|
|
10512
11837
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
10513
11838
|
id: z.ZodString;
|
|
10514
11839
|
name: z.ZodString;
|
|
@@ -10671,6 +11996,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10671
11996
|
tagline: string;
|
|
10672
11997
|
iconUrl: string | null;
|
|
10673
11998
|
owned: boolean;
|
|
11999
|
+
currentVersion?: string | undefined;
|
|
12000
|
+
downloads?: {
|
|
12001
|
+
path: string | null;
|
|
12002
|
+
name: string;
|
|
12003
|
+
key: string;
|
|
12004
|
+
platform: Platform;
|
|
12005
|
+
size: number;
|
|
12006
|
+
}[] | undefined;
|
|
10674
12007
|
defaultVariation?: {
|
|
10675
12008
|
id: string;
|
|
10676
12009
|
name: string;
|
|
@@ -10715,6 +12048,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10715
12048
|
tagline: string;
|
|
10716
12049
|
iconUrl: string | null;
|
|
10717
12050
|
owned: boolean;
|
|
12051
|
+
currentVersion?: string | undefined;
|
|
12052
|
+
downloads?: {
|
|
12053
|
+
path: string | null;
|
|
12054
|
+
name: string;
|
|
12055
|
+
key: string;
|
|
12056
|
+
platform: Platform;
|
|
12057
|
+
size: number;
|
|
12058
|
+
}[] | undefined;
|
|
10718
12059
|
defaultVariation?: {
|
|
10719
12060
|
id: string;
|
|
10720
12061
|
name: string;
|
|
@@ -10768,6 +12109,26 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10768
12109
|
tagline: z.ZodString;
|
|
10769
12110
|
iconUrl: z.ZodNullable<z.ZodString>;
|
|
10770
12111
|
owned: z.ZodBoolean;
|
|
12112
|
+
currentVersion: z.ZodOptional<z.ZodString>;
|
|
12113
|
+
downloads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12114
|
+
name: z.ZodString;
|
|
12115
|
+
key: z.ZodString;
|
|
12116
|
+
platform: z.ZodNativeEnum<typeof Platform>;
|
|
12117
|
+
size: z.ZodNumber;
|
|
12118
|
+
path: z.ZodNullable<z.ZodString>;
|
|
12119
|
+
}, "strip", z.ZodTypeAny, {
|
|
12120
|
+
path: string | null;
|
|
12121
|
+
name: string;
|
|
12122
|
+
key: string;
|
|
12123
|
+
platform: Platform;
|
|
12124
|
+
size: number;
|
|
12125
|
+
}, {
|
|
12126
|
+
path: string | null;
|
|
12127
|
+
name: string;
|
|
12128
|
+
key: string;
|
|
12129
|
+
platform: Platform;
|
|
12130
|
+
size: number;
|
|
12131
|
+
}>, "many">>;
|
|
10771
12132
|
defaultVariation: z.ZodOptional<z.ZodObject<{
|
|
10772
12133
|
id: z.ZodString;
|
|
10773
12134
|
name: z.ZodString;
|
|
@@ -10930,6 +12291,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10930
12291
|
tagline: string;
|
|
10931
12292
|
iconUrl: string | null;
|
|
10932
12293
|
owned: boolean;
|
|
12294
|
+
currentVersion?: string | undefined;
|
|
12295
|
+
downloads?: {
|
|
12296
|
+
path: string | null;
|
|
12297
|
+
name: string;
|
|
12298
|
+
key: string;
|
|
12299
|
+
platform: Platform;
|
|
12300
|
+
size: number;
|
|
12301
|
+
}[] | undefined;
|
|
10933
12302
|
defaultVariation?: {
|
|
10934
12303
|
id: string;
|
|
10935
12304
|
name: string;
|
|
@@ -10974,6 +12343,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
10974
12343
|
tagline: string;
|
|
10975
12344
|
iconUrl: string | null;
|
|
10976
12345
|
owned: boolean;
|
|
12346
|
+
currentVersion?: string | undefined;
|
|
12347
|
+
downloads?: {
|
|
12348
|
+
path: string | null;
|
|
12349
|
+
name: string;
|
|
12350
|
+
key: string;
|
|
12351
|
+
platform: Platform;
|
|
12352
|
+
size: number;
|
|
12353
|
+
}[] | undefined;
|
|
10977
12354
|
defaultVariation?: {
|
|
10978
12355
|
id: string;
|
|
10979
12356
|
name: string;
|
|
@@ -11190,6 +12567,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11190
12567
|
tagline: string;
|
|
11191
12568
|
iconUrl: string | null;
|
|
11192
12569
|
owned: boolean;
|
|
12570
|
+
currentVersion?: string | undefined;
|
|
12571
|
+
downloads?: {
|
|
12572
|
+
path: string | null;
|
|
12573
|
+
name: string;
|
|
12574
|
+
key: string;
|
|
12575
|
+
platform: Platform;
|
|
12576
|
+
size: number;
|
|
12577
|
+
}[] | undefined;
|
|
11193
12578
|
defaultVariation?: {
|
|
11194
12579
|
id: string;
|
|
11195
12580
|
name: string;
|
|
@@ -11282,6 +12667,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11282
12667
|
tagline: string;
|
|
11283
12668
|
iconUrl: string | null;
|
|
11284
12669
|
owned: boolean;
|
|
12670
|
+
currentVersion?: string | undefined;
|
|
12671
|
+
downloads?: {
|
|
12672
|
+
path: string | null;
|
|
12673
|
+
name: string;
|
|
12674
|
+
key: string;
|
|
12675
|
+
platform: Platform;
|
|
12676
|
+
size: number;
|
|
12677
|
+
}[] | undefined;
|
|
11285
12678
|
defaultVariation?: {
|
|
11286
12679
|
id: string;
|
|
11287
12680
|
name: string;
|
|
@@ -11372,6 +12765,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11372
12765
|
tagline: string;
|
|
11373
12766
|
iconUrl: string | null;
|
|
11374
12767
|
owned: boolean;
|
|
12768
|
+
currentVersion?: string | undefined;
|
|
12769
|
+
downloads?: {
|
|
12770
|
+
path: string | null;
|
|
12771
|
+
name: string;
|
|
12772
|
+
key: string;
|
|
12773
|
+
platform: Platform;
|
|
12774
|
+
size: number;
|
|
12775
|
+
}[] | undefined;
|
|
11375
12776
|
defaultVariation?: {
|
|
11376
12777
|
id: string;
|
|
11377
12778
|
name: string;
|
|
@@ -11427,6 +12828,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11427
12828
|
tagline: string;
|
|
11428
12829
|
iconUrl: string | null;
|
|
11429
12830
|
owned: boolean;
|
|
12831
|
+
currentVersion?: string | undefined;
|
|
12832
|
+
downloads?: {
|
|
12833
|
+
path: string | null;
|
|
12834
|
+
name: string;
|
|
12835
|
+
key: string;
|
|
12836
|
+
platform: Platform;
|
|
12837
|
+
size: number;
|
|
12838
|
+
}[] | undefined;
|
|
11430
12839
|
defaultVariation?: {
|
|
11431
12840
|
id: string;
|
|
11432
12841
|
name: string;
|
|
@@ -11514,6 +12923,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11514
12923
|
tagline: string;
|
|
11515
12924
|
iconUrl: string | null;
|
|
11516
12925
|
owned: boolean;
|
|
12926
|
+
currentVersion?: string | undefined;
|
|
12927
|
+
downloads?: {
|
|
12928
|
+
path: string | null;
|
|
12929
|
+
name: string;
|
|
12930
|
+
key: string;
|
|
12931
|
+
platform: Platform;
|
|
12932
|
+
size: number;
|
|
12933
|
+
}[] | undefined;
|
|
11517
12934
|
defaultVariation?: {
|
|
11518
12935
|
id: string;
|
|
11519
12936
|
name: string;
|
|
@@ -11568,6 +12985,14 @@ declare const storefrontSchema: z.ZodObject<{
|
|
|
11568
12985
|
tagline: string;
|
|
11569
12986
|
iconUrl: string | null;
|
|
11570
12987
|
owned: boolean;
|
|
12988
|
+
currentVersion?: string | undefined;
|
|
12989
|
+
downloads?: {
|
|
12990
|
+
path: string | null;
|
|
12991
|
+
name: string;
|
|
12992
|
+
key: string;
|
|
12993
|
+
platform: Platform;
|
|
12994
|
+
size: number;
|
|
12995
|
+
}[] | undefined;
|
|
11571
12996
|
defaultVariation?: {
|
|
11572
12997
|
id: string;
|
|
11573
12998
|
name: string;
|
|
@@ -11677,8 +13102,9 @@ declare class MoonbaseClient {
|
|
|
11677
13102
|
identity: IdentityEndpoints;
|
|
11678
13103
|
vouchers: VoucherEndpoints;
|
|
11679
13104
|
licenses: LicenseEndpoints;
|
|
13105
|
+
activationRequests: ActivationRequestEndpoints;
|
|
11680
13106
|
products: ProductEndpoints;
|
|
11681
13107
|
orders: OrderEndpoints;
|
|
11682
13108
|
}
|
|
11683
13109
|
|
|
11684
|
-
export { type Activation, ActivationMethod, ActivationStatus, type Address, type BundleLineItem, type CommunicationPreferences, type License, LicenseStatus, type LineItem, MoonbaseClient, type MoonbaseConfiguration, NotAuthenticatedError, NotAuthorizedError, NotFoundError, type OpenOrder, type Order, OrderStatus, type OwnedProduct, type Page, Platform, type PricingVariation, type ProductLineItem, type Quantifiable, type Storefront, type StorefrontBundle, type StorefrontProduct, type User, type Voucher };
|
|
13110
|
+
export { type Activation, ActivationMethod, type ActivationRequest, ActivationRequestStatus, ActivationStatus, type Address, type BundleLineItem, type CommunicationPreferences, type Download, type License, LicenseStatus, type LineItem, MoonbaseClient, type MoonbaseConfiguration, NotAuthenticatedError, NotAuthorizedError, NotFoundError, type OpenOrder, type Order, OrderStatus, type OwnedProduct, type Page, Platform, type PricingVariation, type ProductLineItem, type Quantifiable, type Storefront, type StorefrontBundle, type StorefrontProduct, type User, type Voucher };
|