@learncard/simple-signing-plugin 1.1.4 → 1.1.8
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/plugin.d.ts.map +1 -1
- package/dist/simple-signing-plugin.cjs.development.cjs +3 -2
- package/dist/simple-signing-plugin.cjs.development.cjs.map +2 -2
- package/dist/simple-signing-plugin.cjs.production.min.cjs +1 -1
- package/dist/simple-signing-plugin.cjs.production.min.cjs.map +3 -3
- package/dist/simple-signing-plugin.esm.js +3 -2
- package/dist/simple-signing-plugin.esm.js.map +2 -2
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -14560,11 +14560,12 @@ var getSimpleSigningPlugin = /* @__PURE__ */ __name(async (initialLearnCard, url
|
|
|
14560
14560
|
displayName: "Simple Signing Authority Plugin",
|
|
14561
14561
|
description: "Lets you create and use Signing Authorities",
|
|
14562
14562
|
methods: {
|
|
14563
|
-
createSigningAuthority: /* @__PURE__ */ __name(async (_learnCard, name) => {
|
|
14563
|
+
createSigningAuthority: /* @__PURE__ */ __name(async (_learnCard, name, ownerDid) => {
|
|
14564
14564
|
await initialized;
|
|
14565
14565
|
await updateLearnCard(_learnCard);
|
|
14566
14566
|
return client.signingAuthority.createSigningAuthority.mutate({
|
|
14567
|
-
name
|
|
14567
|
+
name,
|
|
14568
|
+
ownerDid
|
|
14568
14569
|
});
|
|
14569
14570
|
}, "createSigningAuthority"),
|
|
14570
14571
|
getSigningAuthorities: /* @__PURE__ */ __name(async (_learnCard) => {
|