@triveria/wallet 0.0.169 → 0.0.171

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 (2) hide show
  1. package/api.d.ts +9 -3
  2. package/package.json +1 -1
package/api.d.ts CHANGED
@@ -243,6 +243,12 @@ export interface CredentialIssuerDefinition {
243
243
  * @memberof CredentialIssuerDefinition
244
244
  */
245
245
  'credentialIssuer': CredentialIssuerDefinitionCredentialIssuerEnum;
246
+ /**
247
+ * Format of the issued credential
248
+ * @type {string}
249
+ * @memberof CredentialIssuerDefinition
250
+ */
251
+ 'credentialFormat'?: string;
246
252
  /**
247
253
  * JSON paths of credential claims which will support being disclosed partially.
248
254
  * @type {Array<string>}
@@ -2307,7 +2313,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2307
2313
  * @param {*} [options] Override http request option.
2308
2314
  * @throws {RequiredError}
2309
2315
  */
2310
- oidcCredentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InteractionAuthorizationRequirements>>;
2316
+ oidcCredentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
2311
2317
  /**
2312
2318
  * Initiates issuing of the credential using the authorized deferred flow, in which the holder will receive credential asynchronously.
2313
2319
  * @param {string} walletId
@@ -2633,7 +2639,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2633
2639
  * @param {*} [options] Override http request option.
2634
2640
  * @throws {RequiredError}
2635
2641
  */
2636
- oidcCredentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?: any): AxiosPromise<InteractionAuthorizationRequirements>;
2642
+ oidcCredentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?: any): AxiosPromise<Array<string>>;
2637
2643
  /**
2638
2644
  * Initiates issuing of the credential using the authorized deferred flow, in which the holder will receive credential asynchronously.
2639
2645
  * @param {string} walletId
@@ -2979,7 +2985,7 @@ export declare class DefaultApi extends BaseAPI {
2979
2985
  * @throws {RequiredError}
2980
2986
  * @memberof DefaultApi
2981
2987
  */
2982
- oidcCredentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InteractionAuthorizationRequirements, any>>;
2988
+ oidcCredentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
2983
2989
  /**
2984
2990
  * Initiates issuing of the credential using the authorized deferred flow, in which the holder will receive credential asynchronously.
2985
2991
  * @param {string} walletId
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@triveria/wallet",
3
3
  "private": false,
4
- "version": "0.0.169",
4
+ "version": "0.0.171",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {