@learncard/helpers 1.2.8 → 1.2.9
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.
|
@@ -63,6 +63,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
63
63
|
AchievementValidator: /* @__PURE__ */ __name(() => AchievementValidator, "AchievementValidator"),
|
|
64
64
|
AddTagInputValidator: /* @__PURE__ */ __name(() => AddTagInputValidator, "AddTagInputValidator"),
|
|
65
65
|
AddressValidator: /* @__PURE__ */ __name(() => AddressValidator, "AddressValidator"),
|
|
66
|
+
AgeRatingValidator: /* @__PURE__ */ __name(() => AgeRatingValidator, "AgeRatingValidator"),
|
|
66
67
|
AlignmentTargetTypeValidator: /* @__PURE__ */ __name(() => AlignmentTargetTypeValidator, "AlignmentTargetTypeValidator"),
|
|
67
68
|
AlignmentValidator: /* @__PURE__ */ __name(() => AlignmentValidator, "AlignmentValidator"),
|
|
68
69
|
AppBoostValidator: /* @__PURE__ */ __name(() => AppBoostValidator, "AppBoostValidator"),
|
|
@@ -15116,6 +15117,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15116
15117
|
"STANDARD",
|
|
15117
15118
|
"DEMOTED"
|
|
15118
15119
|
]);
|
|
15120
|
+
var AgeRatingValidator = external_exports.enum(["4+", "9+", "12+", "17+"]);
|
|
15119
15121
|
var AppStoreListingValidator = external_exports.object({
|
|
15120
15122
|
listing_id: external_exports.string(),
|
|
15121
15123
|
slug: external_exports.string().optional(),
|
|
@@ -15135,7 +15137,9 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15135
15137
|
terms_url: external_exports.string().optional(),
|
|
15136
15138
|
highlights: external_exports.array(external_exports.string()).optional(),
|
|
15137
15139
|
screenshots: external_exports.array(external_exports.string()).optional(),
|
|
15138
|
-
hero_background_color: external_exports.string().optional()
|
|
15140
|
+
hero_background_color: external_exports.string().optional(),
|
|
15141
|
+
min_age: external_exports.number().int().min(0).max(18).optional(),
|
|
15142
|
+
age_rating: AgeRatingValidator.optional()
|
|
15139
15143
|
});
|
|
15140
15144
|
var AppStoreListingCreateValidator = AppStoreListingValidator.omit({
|
|
15141
15145
|
listing_id: true,
|