@triveria/wallet 0.0.249 → 0.0.251
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/api.d.ts +4 -0
- package/base.js +1 -1
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -865,6 +865,10 @@ export interface VerifiedWrapper {
|
|
|
865
865
|
* The Verifiable Presentation that was presented during the interaction.
|
|
866
866
|
*/
|
|
867
867
|
'vp': string;
|
|
868
|
+
/**
|
|
869
|
+
* The holder property of the Verifiable Presentation provided for convenience in case the client needs to verify the holder of enclosed Verifiable Credentials.
|
|
870
|
+
*/
|
|
871
|
+
'holder': string;
|
|
868
872
|
}
|
|
869
873
|
/**
|
|
870
874
|
* Request for the creation of URL used by holder to present credentials to a verifier.
|
package/base.js
CHANGED
|
@@ -18,7 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
|
|
20
20
|
const axios_1 = __importDefault(require("axios"));
|
|
21
|
-
exports.BASE_PATH = "/api/v1".replace(/\/+$/, "");
|
|
21
|
+
exports.BASE_PATH = "https://wallet.dev.triveria.io/api/v1".replace(/\/+$/, "");
|
|
22
22
|
exports.COLLECTION_FORMATS = {
|
|
23
23
|
csv: ",",
|
|
24
24
|
ssv: " ",
|