@learncard/helpers 1.2.10 → 1.2.12
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.
|
@@ -72,6 +72,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
72
72
|
AppEventValidator: /* @__PURE__ */ __name(() => AppEventValidator, "AppEventValidator"),
|
|
73
73
|
AppListingStatusValidator: /* @__PURE__ */ __name(() => AppListingStatusValidator, "AppListingStatusValidator"),
|
|
74
74
|
AppStoreListingCreateValidator: /* @__PURE__ */ __name(() => AppStoreListingCreateValidator, "AppStoreListingCreateValidator"),
|
|
75
|
+
AppStoreListingSubmitterValidator: /* @__PURE__ */ __name(() => AppStoreListingSubmitterValidator, "AppStoreListingSubmitterValidator"),
|
|
75
76
|
AppStoreListingUpdateValidator: /* @__PURE__ */ __name(() => AppStoreListingUpdateValidator, "AppStoreListingUpdateValidator"),
|
|
76
77
|
AppStoreListingValidator: /* @__PURE__ */ __name(() => AppStoreListingValidator, "AppStoreListingValidator"),
|
|
77
78
|
AuthGrantQueryValidator: /* @__PURE__ */ __name(() => AuthGrantQueryValidator, "AuthGrantQueryValidator"),
|
|
@@ -96,6 +97,10 @@ var require_types_cjs_development = __commonJS({
|
|
|
96
97
|
ConsentFlowContractDataValidator: /* @__PURE__ */ __name(() => ConsentFlowContractDataValidator, "ConsentFlowContractDataValidator"),
|
|
97
98
|
ConsentFlowContractDetailsValidator: /* @__PURE__ */ __name(() => ConsentFlowContractDetailsValidator, "ConsentFlowContractDetailsValidator"),
|
|
98
99
|
ConsentFlowContractQueryValidator: /* @__PURE__ */ __name(() => ConsentFlowContractQueryValidator, "ConsentFlowContractQueryValidator"),
|
|
100
|
+
ConsentFlowContractRequestForProfileListValidator: /* @__PURE__ */ __name(() => ConsentFlowContractRequestForProfileListValidator, "ConsentFlowContractRequestForProfileListValidator"),
|
|
101
|
+
ConsentFlowContractRequestForProfileValidator: /* @__PURE__ */ __name(() => ConsentFlowContractRequestForProfileValidator, "ConsentFlowContractRequestForProfileValidator"),
|
|
102
|
+
ConsentFlowContractRequestReadStatusValidator: /* @__PURE__ */ __name(() => ConsentFlowContractRequestReadStatusValidator, "ConsentFlowContractRequestReadStatusValidator"),
|
|
103
|
+
ConsentFlowContractRequestStatusValidator: /* @__PURE__ */ __name(() => ConsentFlowContractRequestStatusValidator, "ConsentFlowContractRequestStatusValidator"),
|
|
99
104
|
ConsentFlowContractValidator: /* @__PURE__ */ __name(() => ConsentFlowContractValidator, "ConsentFlowContractValidator"),
|
|
100
105
|
ConsentFlowDataForDidQueryValidator: /* @__PURE__ */ __name(() => ConsentFlowDataForDidQueryValidator, "ConsentFlowDataForDidQueryValidator"),
|
|
101
106
|
ConsentFlowDataQueryValidator: /* @__PURE__ */ __name(() => ConsentFlowDataQueryValidator, "ConsentFlowDataQueryValidator"),
|
|
@@ -14438,6 +14443,16 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14438
14443
|
autoBoosts: external_exports.string().array().optional(),
|
|
14439
14444
|
writers: external_exports.array(LCNProfileValidator).optional()
|
|
14440
14445
|
});
|
|
14446
|
+
var ConsentFlowContractRequestStatusValidator = external_exports.enum(["pending", "accepted", "denied"]).nullable();
|
|
14447
|
+
var ConsentFlowContractRequestReadStatusValidator = external_exports.enum(["unseen", "seen"]).nullable();
|
|
14448
|
+
var ConsentFlowContractRequestForProfileValidator = external_exports.object({
|
|
14449
|
+
profile: LCNProfileValidator,
|
|
14450
|
+
status: ConsentFlowContractRequestStatusValidator,
|
|
14451
|
+
readStatus: ConsentFlowContractRequestReadStatusValidator.optional()
|
|
14452
|
+
});
|
|
14453
|
+
var ConsentFlowContractRequestForProfileListValidator = external_exports.array(
|
|
14454
|
+
ConsentFlowContractRequestForProfileValidator
|
|
14455
|
+
);
|
|
14441
14456
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
14442
14457
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
14443
14458
|
});
|
|
@@ -14599,6 +14614,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14599
14614
|
"APP_LISTING_SUBMITTED",
|
|
14600
14615
|
"APP_LISTING_APPROVED",
|
|
14601
14616
|
"APP_LISTING_REJECTED",
|
|
14617
|
+
"APP_LISTING_WITHDRAWN",
|
|
14602
14618
|
"DEVICE_LINK_REQUEST"
|
|
14603
14619
|
]);
|
|
14604
14620
|
var LCNNotificationMessageValidator = external_exports.object({
|
|
@@ -15126,6 +15142,11 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15126
15142
|
"DEMOTED"
|
|
15127
15143
|
]);
|
|
15128
15144
|
var AgeRatingValidator = external_exports.enum(["4+", "9+", "12+", "17+"]);
|
|
15145
|
+
var AppStoreListingSubmitterValidator = external_exports.object({
|
|
15146
|
+
profileId: external_exports.string(),
|
|
15147
|
+
displayName: external_exports.string(),
|
|
15148
|
+
email: external_exports.string().optional()
|
|
15149
|
+
});
|
|
15129
15150
|
var AppStoreListingValidator = external_exports.object({
|
|
15130
15151
|
listing_id: external_exports.string(),
|
|
15131
15152
|
slug: external_exports.string().optional(),
|
|
@@ -15147,7 +15168,10 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15147
15168
|
screenshots: external_exports.array(external_exports.string()).optional(),
|
|
15148
15169
|
hero_background_color: external_exports.string().optional(),
|
|
15149
15170
|
min_age: external_exports.number().int().min(0).max(18).optional(),
|
|
15150
|
-
age_rating: AgeRatingValidator.optional()
|
|
15171
|
+
age_rating: AgeRatingValidator.optional(),
|
|
15172
|
+
submitted_at: external_exports.string().optional(),
|
|
15173
|
+
submitter: AppStoreListingSubmitterValidator.optional(),
|
|
15174
|
+
contact_email: external_exports.string().email().optional()
|
|
15151
15175
|
});
|
|
15152
15176
|
var AppStoreListingCreateValidator = AppStoreListingValidator.omit({
|
|
15153
15177
|
listing_id: true,
|