@learncard/types 5.12.2 → 5.12.3
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/lcn.d.ts +49 -0
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +5 -1
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +4 -4
- package/dist/types.cjs.production.min.js.map +3 -3
- package/dist/types.esm.js +5 -1
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/types.esm.js
CHANGED
|
@@ -1512,6 +1512,7 @@ var PromotionLevelValidator = z9.enum([
|
|
|
1512
1512
|
"STANDARD",
|
|
1513
1513
|
"DEMOTED"
|
|
1514
1514
|
]);
|
|
1515
|
+
var AgeRatingValidator = z9.enum(["4+", "9+", "12+", "17+"]);
|
|
1515
1516
|
var AppStoreListingValidator = z9.object({
|
|
1516
1517
|
listing_id: z9.string(),
|
|
1517
1518
|
slug: z9.string().optional(),
|
|
@@ -1531,7 +1532,9 @@ var AppStoreListingValidator = z9.object({
|
|
|
1531
1532
|
terms_url: z9.string().optional(),
|
|
1532
1533
|
highlights: z9.array(z9.string()).optional(),
|
|
1533
1534
|
screenshots: z9.array(z9.string()).optional(),
|
|
1534
|
-
hero_background_color: z9.string().optional()
|
|
1535
|
+
hero_background_color: z9.string().optional(),
|
|
1536
|
+
min_age: z9.number().int().min(0).max(18).optional(),
|
|
1537
|
+
age_rating: AgeRatingValidator.optional()
|
|
1535
1538
|
});
|
|
1536
1539
|
var AppStoreListingCreateValidator = AppStoreListingValidator.omit({
|
|
1537
1540
|
listing_id: true,
|
|
@@ -1633,6 +1636,7 @@ export {
|
|
|
1633
1636
|
AchievementValidator,
|
|
1634
1637
|
AddTagInputValidator,
|
|
1635
1638
|
AddressValidator,
|
|
1639
|
+
AgeRatingValidator,
|
|
1636
1640
|
AlignmentTargetTypeValidator,
|
|
1637
1641
|
AlignmentValidator,
|
|
1638
1642
|
AppBoostValidator,
|