@triveria/wallet 0.0.226 → 0.0.228

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.
Files changed (3) hide show
  1. package/api.d.ts +18 -6
  2. package/api.js +4 -4
  3. package/package.json +1 -1
package/api.d.ts CHANGED
@@ -277,11 +277,17 @@ export interface CredentialIssuanceInitResult {
277
277
  */
278
278
  export interface CredentialIssuerDefinition {
279
279
  /**
280
- * Human readable template name
280
+ * Human readable issuer name
281
281
  * @type {string}
282
282
  * @memberof CredentialIssuerDefinition
283
283
  */
284
284
  'name': string;
285
+ /**
286
+ * Human readable issuer description
287
+ * @type {string}
288
+ * @memberof CredentialIssuerDefinition
289
+ */
290
+ 'description'?: string;
285
291
  /**
286
292
  * Unique identifier of the issuer
287
293
  * @type {string}
@@ -742,6 +748,12 @@ export interface CredentialVerifierDefinition {
742
748
  * @memberof CredentialVerifierDefinition
743
749
  */
744
750
  'name': string;
751
+ /**
752
+ *
753
+ * @type {string}
754
+ * @memberof CredentialVerifierDefinition
755
+ */
756
+ 'description'?: string;
745
757
  /**
746
758
  * Unique ID of the definition
747
759
  * @type {string}
@@ -2033,7 +2045,7 @@ export interface VPDrivenIssuerConfig {
2033
2045
  */
2034
2046
  export interface VcOffer {
2035
2047
  /**
2036
- *
2048
+ * The Verifiable Credential offer URL provided by the issuer
2037
2049
  * @type {string}
2038
2050
  * @memberof VcOffer
2039
2051
  */
@@ -2493,7 +2505,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2493
2505
  /**
2494
2506
  * Issue the Verifiable Credential using OIDC4VCI offer acceptance
2495
2507
  * @param {string} walletId
2496
- * @param {VcOffer} [vcOffer] Offer URL and optional PIN for the request
2508
+ * @param {VcOffer} [vcOffer] Verifiable Credential offer
2497
2509
  * @param {*} [options] Override http request option.
2498
2510
  * @throws {RequiredError}
2499
2511
  */
@@ -2874,7 +2886,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2874
2886
  /**
2875
2887
  * Issue the Verifiable Credential using OIDC4VCI offer acceptance
2876
2888
  * @param {string} walletId
2877
- * @param {VcOffer} [vcOffer] Offer URL and optional PIN for the request
2889
+ * @param {VcOffer} [vcOffer] Verifiable Credential offer
2878
2890
  * @param {*} [options] Override http request option.
2879
2891
  * @throws {RequiredError}
2880
2892
  */
@@ -3257,7 +3269,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3257
3269
  /**
3258
3270
  * Issue the Verifiable Credential using OIDC4VCI offer acceptance
3259
3271
  * @param {string} walletId
3260
- * @param {VcOffer} [vcOffer] Offer URL and optional PIN for the request
3272
+ * @param {VcOffer} [vcOffer] Verifiable Credential offer
3261
3273
  * @param {*} [options] Override http request option.
3262
3274
  * @throws {RequiredError}
3263
3275
  */
@@ -3662,7 +3674,7 @@ export declare class DefaultApi extends BaseAPI {
3662
3674
  /**
3663
3675
  * Issue the Verifiable Credential using OIDC4VCI offer acceptance
3664
3676
  * @param {string} walletId
3665
- * @param {VcOffer} [vcOffer] Offer URL and optional PIN for the request
3677
+ * @param {VcOffer} [vcOffer] Verifiable Credential offer
3666
3678
  * @param {*} [options] Override http request option.
3667
3679
  * @throws {RequiredError}
3668
3680
  * @memberof DefaultApi
package/api.js CHANGED
@@ -878,7 +878,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
878
878
  /**
879
879
  * Issue the Verifiable Credential using OIDC4VCI offer acceptance
880
880
  * @param {string} walletId
881
- * @param {VcOffer} [vcOffer] Offer URL and optional PIN for the request
881
+ * @param {VcOffer} [vcOffer] Verifiable Credential offer
882
882
  * @param {*} [options] Override http request option.
883
883
  * @throws {RequiredError}
884
884
  */
@@ -2133,7 +2133,7 @@ const DefaultApiFp = function (configuration) {
2133
2133
  /**
2134
2134
  * Issue the Verifiable Credential using OIDC4VCI offer acceptance
2135
2135
  * @param {string} walletId
2136
- * @param {VcOffer} [vcOffer] Offer URL and optional PIN for the request
2136
+ * @param {VcOffer} [vcOffer] Verifiable Credential offer
2137
2137
  * @param {*} [options] Override http request option.
2138
2138
  * @throws {RequiredError}
2139
2139
  */
@@ -2774,7 +2774,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2774
2774
  /**
2775
2775
  * Issue the Verifiable Credential using OIDC4VCI offer acceptance
2776
2776
  * @param {string} walletId
2777
- * @param {VcOffer} [vcOffer] Offer URL and optional PIN for the request
2777
+ * @param {VcOffer} [vcOffer] Verifiable Credential offer
2778
2778
  * @param {*} [options] Override http request option.
2779
2779
  * @throws {RequiredError}
2780
2780
  */
@@ -3273,7 +3273,7 @@ class DefaultApi extends base_1.BaseAPI {
3273
3273
  /**
3274
3274
  * Issue the Verifiable Credential using OIDC4VCI offer acceptance
3275
3275
  * @param {string} walletId
3276
- * @param {VcOffer} [vcOffer] Offer URL and optional PIN for the request
3276
+ * @param {VcOffer} [vcOffer] Verifiable Credential offer
3277
3277
  * @param {*} [options] Override http request option.
3278
3278
  * @throws {RequiredError}
3279
3279
  * @memberof DefaultApi
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@triveria/wallet",
3
3
  "private": false,
4
- "version": "0.0.226",
4
+ "version": "0.0.228",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {