@triveria/wallet 0.0.214 → 0.0.216

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 CHANGED
@@ -1186,6 +1186,12 @@ export interface InteractionAuthorizationRequirements {
1186
1186
  * @memberof InteractionAuthorizationRequirements
1187
1187
  */
1188
1188
  'offeredCredentialsTypes'?: Array<string>;
1189
+ /**
1190
+ * Array of objects, where each object contains display properties of a Credential Issuer for a certain language.
1191
+ * @type {Array<IssuerDisplayItem>}
1192
+ * @memberof InteractionAuthorizationRequirements
1193
+ */
1194
+ 'issuerDisplay'?: Array<IssuerDisplayItem>;
1189
1195
  }
1190
1196
  export declare const InteractionAuthorizationRequirementsRequirementTypeEnum: {
1191
1197
  readonly IdToken: "id_token";
@@ -1232,27 +1238,27 @@ export interface IssuerDisplayItem {
1232
1238
  'locale'?: string;
1233
1239
  /**
1234
1240
  *
1235
- * @type {IssuerLogoImage}
1241
+ * @type {IssuerLogo}
1236
1242
  * @memberof IssuerDisplayItem
1237
1243
  */
1238
- 'logo'?: IssuerLogoImage;
1244
+ 'logo'?: IssuerLogo;
1239
1245
  }
1240
1246
  /**
1241
1247
  *
1242
1248
  * @export
1243
- * @interface IssuerLogoImage
1249
+ * @interface IssuerLogo
1244
1250
  */
1245
- export interface IssuerLogoImage {
1251
+ export interface IssuerLogo {
1246
1252
  /**
1247
1253
  *
1248
1254
  * @type {string}
1249
- * @memberof IssuerLogoImage
1255
+ * @memberof IssuerLogo
1250
1256
  */
1251
1257
  'uri'?: string;
1252
1258
  /**
1253
1259
  *
1254
1260
  * @type {string}
1255
- * @memberof IssuerLogoImage
1261
+ * @memberof IssuerLogo
1256
1262
  */
1257
1263
  'alt_text'?: string;
1258
1264
  }
package/configuration.js CHANGED
@@ -16,13 +16,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.Configuration = void 0;
17
17
  class Configuration {
18
18
  constructor(param = {}) {
19
+ var _a;
19
20
  this.apiKey = param.apiKey;
20
21
  this.username = param.username;
21
22
  this.password = param.password;
22
23
  this.accessToken = param.accessToken;
23
24
  this.basePath = param.basePath;
24
25
  this.serverIndex = param.serverIndex;
25
- this.baseOptions = param.baseOptions;
26
+ this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/typescript-axios" }) }, param.baseOptions);
26
27
  this.formDataCtor = param.formDataCtor;
27
28
  }
28
29
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@triveria/wallet",
3
3
  "private": false,
4
- "version": "0.0.214",
4
+ "version": "0.0.216",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {