@learncard/sss-key-manager 0.1.9 → 0.1.10
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 +35 -5
- 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 +35 -5
- package/dist/sss-key-manager.esm.js.map +2 -2
- package/package.json +2 -2
|
@@ -143,6 +143,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
143
143
|
CredentialActivityStatsValidator: /* @__PURE__ */ __name(() => CredentialActivityStatsValidator, "CredentialActivityStatsValidator"),
|
|
144
144
|
CredentialActivityValidator: /* @__PURE__ */ __name(() => CredentialActivityValidator, "CredentialActivityValidator"),
|
|
145
145
|
CredentialActivityWithDetailsValidator: /* @__PURE__ */ __name(() => CredentialActivityWithDetailsValidator, "CredentialActivityWithDetailsValidator"),
|
|
146
|
+
CredentialFormatValidator: /* @__PURE__ */ __name(() => CredentialFormatValidator, "CredentialFormatValidator"),
|
|
146
147
|
CredentialInfoValidator: /* @__PURE__ */ __name(() => CredentialInfoValidator, "CredentialInfoValidator"),
|
|
147
148
|
CredentialNameRefValidator: /* @__PURE__ */ __name(() => CredentialNameRefValidator, "CredentialNameRefValidator"),
|
|
148
149
|
CredentialRecordValidator: /* @__PURE__ */ __name(() => CredentialRecordValidator, "CredentialRecordValidator"),
|
|
@@ -171,6 +172,8 @@ var require_types_cjs_development = __commonJS({
|
|
|
171
172
|
GetSkillPathResultValidator: /* @__PURE__ */ __name(() => GetSkillPathResultValidator, "GetSkillPathResultValidator"),
|
|
172
173
|
GetTemplateRecipientsEventValidator: /* @__PURE__ */ __name(() => GetTemplateRecipientsEventValidator, "GetTemplateRecipientsEventValidator"),
|
|
173
174
|
GuardianStatusValidator: /* @__PURE__ */ __name(() => GuardianStatusValidator, "GuardianStatusValidator"),
|
|
175
|
+
HolderExportConsentRecordValidator: /* @__PURE__ */ __name(() => HolderExportConsentRecordValidator, "HolderExportConsentRecordValidator"),
|
|
176
|
+
HolderExportMetadataValidator: /* @__PURE__ */ __name(() => HolderExportMetadataValidator, "HolderExportMetadataValidator"),
|
|
174
177
|
IdentifierEntryValidator: /* @__PURE__ */ __name(() => IdentifierEntryValidator, "IdentifierEntryValidator"),
|
|
175
178
|
IdentifierTypeValidator: /* @__PURE__ */ __name(() => IdentifierTypeValidator, "IdentifierTypeValidator"),
|
|
176
179
|
IdentityObjectValidator: /* @__PURE__ */ __name(() => IdentityObjectValidator, "IdentityObjectValidator"),
|
|
@@ -14118,6 +14121,14 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14118
14121
|
var ClrCredentialValidator = UnsignedClrCredentialValidator.extend({
|
|
14119
14122
|
proof: ProofValidator.or(ProofValidator.array())
|
|
14120
14123
|
});
|
|
14124
|
+
var CredentialFormatValidator = external_exports.enum([
|
|
14125
|
+
"w3c-vc-2.0",
|
|
14126
|
+
"w3c-vc-1.1",
|
|
14127
|
+
"jwt-vc-json",
|
|
14128
|
+
"dc+sd-jwt",
|
|
14129
|
+
"vc+sd-jwt",
|
|
14130
|
+
"mso_mdoc"
|
|
14131
|
+
]);
|
|
14121
14132
|
var StatusCheckEntryValidator = external_exports.object({
|
|
14122
14133
|
/**
|
|
14123
14134
|
* The `credentialStatus.type` as it appeared on the credential.
|
|
@@ -14173,7 +14184,13 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14173
14184
|
issuee: ProfileValidator.optional(),
|
|
14174
14185
|
credentialSubject: CredentialSubjectValidator.optional()
|
|
14175
14186
|
});
|
|
14176
|
-
var CredentialRecordValidator = external_exports.object({
|
|
14187
|
+
var CredentialRecordValidator = external_exports.object({
|
|
14188
|
+
id: external_exports.string(),
|
|
14189
|
+
uri: external_exports.string(),
|
|
14190
|
+
format: CredentialFormatValidator.optional(),
|
|
14191
|
+
semanticType: external_exports.string().optional(),
|
|
14192
|
+
rawWireForm: external_exports.string().optional()
|
|
14193
|
+
}).catchall(external_exports.any());
|
|
14177
14194
|
var PaginationOptionsValidator = external_exports.object({
|
|
14178
14195
|
limit: external_exports.number(),
|
|
14179
14196
|
cursor: external_exports.string().optional(),
|
|
@@ -14741,6 +14758,22 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14741
14758
|
date: external_exports.string(),
|
|
14742
14759
|
uris: external_exports.string().array().optional()
|
|
14743
14760
|
});
|
|
14761
|
+
var HolderExportConsentRecordValidator = external_exports.object({
|
|
14762
|
+
termsUri: external_exports.string(),
|
|
14763
|
+
status: ConsentFlowTermsStatusValidator,
|
|
14764
|
+
contract: ConsentFlowContractDetailsValidator,
|
|
14765
|
+
terms: ConsentFlowTermsValidator,
|
|
14766
|
+
transactions: ConsentFlowTransactionValidator.array()
|
|
14767
|
+
});
|
|
14768
|
+
var HolderExportMetadataValidator = external_exports.object({
|
|
14769
|
+
consentRecords: HolderExportConsentRecordValidator.array(),
|
|
14770
|
+
truncated: external_exports.boolean().optional(),
|
|
14771
|
+
warnings: external_exports.string().array().optional(),
|
|
14772
|
+
limits: external_exports.object({
|
|
14773
|
+
maxConsentRecords: external_exports.number(),
|
|
14774
|
+
maxTransactionsPerConsentRecord: external_exports.number()
|
|
14775
|
+
}).optional()
|
|
14776
|
+
});
|
|
14744
14777
|
var PaginatedConsentFlowTransactionsValidator = PaginationResponseValidator.extend({
|
|
14745
14778
|
records: ConsentFlowTransactionValidator.array()
|
|
14746
14779
|
});
|
|
@@ -14827,10 +14860,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14827
14860
|
var LCNNotificationValidator = external_exports.object({
|
|
14828
14861
|
type: LCNNotificationTypeEnumValidator,
|
|
14829
14862
|
to: LCNProfileValidator.partial().and(external_exports.object({ did: external_exports.string() })),
|
|
14830
|
-
from: external_exports.union([
|
|
14831
|
-
external_exports.string(),
|
|
14832
|
-
LCNProfileValidator.partial().and(external_exports.object({ did: external_exports.string() }))
|
|
14833
|
-
]),
|
|
14863
|
+
from: external_exports.union([external_exports.string(), LCNProfileValidator.partial().and(external_exports.object({ did: external_exports.string() }))]),
|
|
14834
14864
|
message: LCNNotificationMessageValidator.optional(),
|
|
14835
14865
|
data: LCNNotificationDataValidator.optional(),
|
|
14836
14866
|
sent: external_exports.iso.datetime().optional(),
|