@learncard/sss-key-manager 0.1.0 → 0.1.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.
- package/dist/sss-key-manager.cjs.development.js +25 -1
- package/dist/sss-key-manager.cjs.development.js.map +2 -2
- package/dist/sss-key-manager.cjs.production.min.js +5 -5
- package/dist/sss-key-manager.cjs.production.min.js.map +3 -3
- package/dist/sss-key-manager.esm.js +25 -1
- package/dist/sss-key-manager.esm.js.map +2 -2
- package/package.json +2 -2
|
@@ -66,6 +66,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
66
66
|
AppEventValidator: /* @__PURE__ */ __name(() => AppEventValidator, "AppEventValidator"),
|
|
67
67
|
AppListingStatusValidator: /* @__PURE__ */ __name(() => AppListingStatusValidator, "AppListingStatusValidator"),
|
|
68
68
|
AppStoreListingCreateValidator: /* @__PURE__ */ __name(() => AppStoreListingCreateValidator, "AppStoreListingCreateValidator"),
|
|
69
|
+
AppStoreListingSubmitterValidator: /* @__PURE__ */ __name(() => AppStoreListingSubmitterValidator, "AppStoreListingSubmitterValidator"),
|
|
69
70
|
AppStoreListingUpdateValidator: /* @__PURE__ */ __name(() => AppStoreListingUpdateValidator, "AppStoreListingUpdateValidator"),
|
|
70
71
|
AppStoreListingValidator: /* @__PURE__ */ __name(() => AppStoreListingValidator, "AppStoreListingValidator"),
|
|
71
72
|
AuthGrantQueryValidator: /* @__PURE__ */ __name(() => AuthGrantQueryValidator, "AuthGrantQueryValidator"),
|
|
@@ -90,6 +91,10 @@ var require_types_cjs_development = __commonJS({
|
|
|
90
91
|
ConsentFlowContractDataValidator: /* @__PURE__ */ __name(() => ConsentFlowContractDataValidator, "ConsentFlowContractDataValidator"),
|
|
91
92
|
ConsentFlowContractDetailsValidator: /* @__PURE__ */ __name(() => ConsentFlowContractDetailsValidator, "ConsentFlowContractDetailsValidator"),
|
|
92
93
|
ConsentFlowContractQueryValidator: /* @__PURE__ */ __name(() => ConsentFlowContractQueryValidator, "ConsentFlowContractQueryValidator"),
|
|
94
|
+
ConsentFlowContractRequestForProfileListValidator: /* @__PURE__ */ __name(() => ConsentFlowContractRequestForProfileListValidator, "ConsentFlowContractRequestForProfileListValidator"),
|
|
95
|
+
ConsentFlowContractRequestForProfileValidator: /* @__PURE__ */ __name(() => ConsentFlowContractRequestForProfileValidator, "ConsentFlowContractRequestForProfileValidator"),
|
|
96
|
+
ConsentFlowContractRequestReadStatusValidator: /* @__PURE__ */ __name(() => ConsentFlowContractRequestReadStatusValidator, "ConsentFlowContractRequestReadStatusValidator"),
|
|
97
|
+
ConsentFlowContractRequestStatusValidator: /* @__PURE__ */ __name(() => ConsentFlowContractRequestStatusValidator, "ConsentFlowContractRequestStatusValidator"),
|
|
93
98
|
ConsentFlowContractValidator: /* @__PURE__ */ __name(() => ConsentFlowContractValidator, "ConsentFlowContractValidator"),
|
|
94
99
|
ConsentFlowDataForDidQueryValidator: /* @__PURE__ */ __name(() => ConsentFlowDataForDidQueryValidator, "ConsentFlowDataForDidQueryValidator"),
|
|
95
100
|
ConsentFlowDataQueryValidator: /* @__PURE__ */ __name(() => ConsentFlowDataQueryValidator, "ConsentFlowDataQueryValidator"),
|
|
@@ -14432,6 +14437,16 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14432
14437
|
autoBoosts: external_exports.string().array().optional(),
|
|
14433
14438
|
writers: external_exports.array(LCNProfileValidator).optional()
|
|
14434
14439
|
});
|
|
14440
|
+
var ConsentFlowContractRequestStatusValidator = external_exports.enum(["pending", "accepted", "denied"]).nullable();
|
|
14441
|
+
var ConsentFlowContractRequestReadStatusValidator = external_exports.enum(["unseen", "seen"]).nullable();
|
|
14442
|
+
var ConsentFlowContractRequestForProfileValidator = external_exports.object({
|
|
14443
|
+
profile: LCNProfileValidator,
|
|
14444
|
+
status: ConsentFlowContractRequestStatusValidator,
|
|
14445
|
+
readStatus: ConsentFlowContractRequestReadStatusValidator.optional()
|
|
14446
|
+
});
|
|
14447
|
+
var ConsentFlowContractRequestForProfileListValidator = external_exports.array(
|
|
14448
|
+
ConsentFlowContractRequestForProfileValidator
|
|
14449
|
+
);
|
|
14435
14450
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
14436
14451
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
14437
14452
|
});
|
|
@@ -14593,6 +14608,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14593
14608
|
"APP_LISTING_SUBMITTED",
|
|
14594
14609
|
"APP_LISTING_APPROVED",
|
|
14595
14610
|
"APP_LISTING_REJECTED",
|
|
14611
|
+
"APP_LISTING_WITHDRAWN",
|
|
14596
14612
|
"DEVICE_LINK_REQUEST"
|
|
14597
14613
|
]);
|
|
14598
14614
|
var LCNNotificationMessageValidator = external_exports.object({
|
|
@@ -15120,6 +15136,11 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15120
15136
|
"DEMOTED"
|
|
15121
15137
|
]);
|
|
15122
15138
|
var AgeRatingValidator = external_exports.enum(["4+", "9+", "12+", "17+"]);
|
|
15139
|
+
var AppStoreListingSubmitterValidator = external_exports.object({
|
|
15140
|
+
profileId: external_exports.string(),
|
|
15141
|
+
displayName: external_exports.string(),
|
|
15142
|
+
email: external_exports.string().optional()
|
|
15143
|
+
});
|
|
15123
15144
|
var AppStoreListingValidator = external_exports.object({
|
|
15124
15145
|
listing_id: external_exports.string(),
|
|
15125
15146
|
slug: external_exports.string().optional(),
|
|
@@ -15141,7 +15162,10 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15141
15162
|
screenshots: external_exports.array(external_exports.string()).optional(),
|
|
15142
15163
|
hero_background_color: external_exports.string().optional(),
|
|
15143
15164
|
min_age: external_exports.number().int().min(0).max(18).optional(),
|
|
15144
|
-
age_rating: AgeRatingValidator.optional()
|
|
15165
|
+
age_rating: AgeRatingValidator.optional(),
|
|
15166
|
+
submitted_at: external_exports.string().optional(),
|
|
15167
|
+
submitter: AppStoreListingSubmitterValidator.optional(),
|
|
15168
|
+
contact_email: external_exports.string().email().optional()
|
|
15145
15169
|
});
|
|
15146
15170
|
var AppStoreListingCreateValidator = AppStoreListingValidator.omit({
|
|
15147
15171
|
listing_id: true,
|