@sphereon/ssi-sdk.ebsi-support 0.34.1-fix.103 → 0.34.1-fix.109
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/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +23 -23
package/dist/index.js
CHANGED
|
@@ -2554,12 +2554,12 @@ var EBSI_DID_SPEC_INFOS = {
|
|
|
2554
2554
|
method: "did:key:"
|
|
2555
2555
|
}
|
|
2556
2556
|
};
|
|
2557
|
-
var EbsiPublicKeyPurpose = /* @__PURE__ */ function(EbsiPublicKeyPurpose2) {
|
|
2557
|
+
var EbsiPublicKeyPurpose = /* @__PURE__ */ (function(EbsiPublicKeyPurpose2) {
|
|
2558
2558
|
EbsiPublicKeyPurpose2["Authentication"] = "authentication";
|
|
2559
2559
|
EbsiPublicKeyPurpose2["AssertionMethod"] = "assertionMethod";
|
|
2560
2560
|
EbsiPublicKeyPurpose2["CapabilityInvocation"] = "capabilityInvocation";
|
|
2561
2561
|
return EbsiPublicKeyPurpose2;
|
|
2562
|
-
}({});
|
|
2562
|
+
})({});
|
|
2563
2563
|
var JSON_RPC_VERSION = "2.0";
|
|
2564
2564
|
var BASE_CONTEXT_DOC = JSON.stringify({
|
|
2565
2565
|
"@context": [
|
|
@@ -2567,7 +2567,7 @@ var BASE_CONTEXT_DOC = JSON.stringify({
|
|
|
2567
2567
|
"https://w3id.org/security/suites/jws-2020/v1"
|
|
2568
2568
|
]
|
|
2569
2569
|
});
|
|
2570
|
-
var EbsiRpcMethod = /* @__PURE__ */ function(EbsiRpcMethod2) {
|
|
2570
|
+
var EbsiRpcMethod = /* @__PURE__ */ (function(EbsiRpcMethod2) {
|
|
2571
2571
|
EbsiRpcMethod2["INSERT_DID_DOCUMENT"] = "insertDidDocument";
|
|
2572
2572
|
EbsiRpcMethod2["UPDATE_DID_DOCUMENT"] = "updateBaseDocument";
|
|
2573
2573
|
EbsiRpcMethod2["ADD_VERIFICATION_METHOD"] = "addVerificationMethod";
|
|
@@ -2575,7 +2575,7 @@ var EbsiRpcMethod = /* @__PURE__ */ function(EbsiRpcMethod2) {
|
|
|
2575
2575
|
EbsiRpcMethod2["ADD_SERVICE"] = "addService";
|
|
2576
2576
|
EbsiRpcMethod2["SEND_SIGNED_TRANSACTION"] = "sendSignedTransaction";
|
|
2577
2577
|
return EbsiRpcMethod2;
|
|
2578
|
-
}({});
|
|
2578
|
+
})({});
|
|
2579
2579
|
|
|
2580
2580
|
// src/did/services/EbsiRPCService.ts
|
|
2581
2581
|
var callRpcMethod = /* @__PURE__ */ __name(async (args) => {
|
|
@@ -3296,10 +3296,10 @@ ${JSON.stringify(accessTokenResponse)}`);
|
|
|
3296
3296
|
};
|
|
3297
3297
|
|
|
3298
3298
|
// src/types/IEbsiSupport.ts
|
|
3299
|
-
var TokenType = /* @__PURE__ */ function(TokenType2) {
|
|
3299
|
+
var TokenType = /* @__PURE__ */ (function(TokenType2) {
|
|
3300
3300
|
TokenType2["BEARER"] = "Bearer";
|
|
3301
3301
|
return TokenType2;
|
|
3302
|
-
}({});
|
|
3302
|
+
})({});
|
|
3303
3303
|
|
|
3304
3304
|
// src/did/EbsiDidProvider.ts
|
|
3305
3305
|
import { getControllerKey as getControllerKey2, getEthereumAddressFromKey as getEthereumAddressFromKey2 } from "@sphereon/ssi-sdk-ext.did-utils";
|