@cheqd/did-provider-cheqd 4.4.0-develop.1 → 4.4.1-develop.1
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/build/cjs/agent/ICheqd.js +2 -2
- package/build/cjs/agent/ICheqd.js.map +1 -1
- package/build/cjs/dkg-threshold/lit-protocol/v6.d.ts +1 -1
- package/build/cjs/dkg-threshold/lit-protocol/v6.d.ts.map +1 -1
- package/build/cjs/dkg-threshold/lit-protocol/v6.js +1 -1
- package/build/cjs/dkg-threshold/lit-protocol/v6.js.map +1 -1
- package/build/esm/agent/ICheqd.js +2 -2
- package/build/esm/agent/ICheqd.js.map +1 -1
- package/build/esm/dkg-threshold/lit-protocol/v6.d.ts +1 -1
- package/build/esm/dkg-threshold/lit-protocol/v6.d.ts.map +1 -1
- package/build/esm/dkg-threshold/lit-protocol/v6.js +1 -1
- package/build/esm/dkg-threshold/lit-protocol/v6.js.map +1 -1
- package/build/tsconfig.cjs.tsbuildinfo +1 -1
- package/build/tsconfig.esm.tsbuildinfo +1 -1
- package/build/tsconfig.types.tsbuildinfo +1 -1
- package/build/types/dkg-threshold/lit-protocol/v6.d.ts +1 -1
- package/build/types/dkg-threshold/lit-protocol/v6.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/agent/ICheqd.ts +2 -2
- package/src/dkg-threshold/lit-protocol/v6.ts +2 -2
|
@@ -3914,7 +3914,7 @@ class Cheqd {
|
|
|
3914
3914
|
throw new Error(`[did-provider-cheqd]: check: revocation: Unsupported status purpose: ${credential.credentialStatus?.statusPurpose}`);
|
|
3915
3915
|
}
|
|
3916
3916
|
// validate dkgOptions
|
|
3917
|
-
if (!options?.topArgs?.dkgOptions
|
|
3917
|
+
if (!options?.topArgs?.dkgOptions) {
|
|
3918
3918
|
throw new Error('[did-provider-cheqd]: dkgOptions is required');
|
|
3919
3919
|
}
|
|
3920
3920
|
// fetch status list 2021
|
|
@@ -4005,7 +4005,7 @@ class Cheqd {
|
|
|
4005
4005
|
throw new Error(`[did-provider-cheqd]: check: suspension: Unsupported status purpose: ${credential.credentialStatus?.statusPurpose}`);
|
|
4006
4006
|
}
|
|
4007
4007
|
// validate dkgOptions
|
|
4008
|
-
if (!options?.topArgs?.dkgOptions
|
|
4008
|
+
if (!options?.topArgs?.dkgOptions) {
|
|
4009
4009
|
throw new Error('[did-provider-cheqd]: dkgOptions is required');
|
|
4010
4010
|
}
|
|
4011
4011
|
// fetch status list 2021
|