@sphereon/did-auth-siop-web-demo-shared 0.1.3-UNSTABLE.8 → 0.1.3-next.9

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sphereon/did-auth-siop-web-demo-shared",
3
- "version": "0.1.3-UNSTABLE.8",
3
+ "version": "0.1.3-next.9",
4
4
  "description": "Shared types between modules",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "devDependencies": {
15
15
  "@types/typescript": "^2.0.0",
16
- "@sphereon/did-auth-siop": "^0.2.12-UNSTABLE.0"
16
+ "@sphereon/did-auth-siop": "^0.2.12-next.3"
17
17
  },
18
18
  "files": [
19
19
  "dist"
@@ -1,33 +0,0 @@
1
- import { ClaimOpts } from "@sphereon/did-auth-siop/dist/main/types/SIOP.types";
2
- export declare class QRVariables {
3
- redirectUrl?: string;
4
- requestorDID?: string;
5
- id: string;
6
- }
7
- export declare class StateMapping {
8
- redirectUrl?: string;
9
- stateId?: string;
10
- requestorDID?: string;
11
- sessionId?: string;
12
- pollCount?: number;
13
- authRequestCreated: boolean;
14
- authResponse?: AuthResponse;
15
- claims?: ClaimOpts;
16
- }
17
- export declare class AuthResponse {
18
- constructor(kvkNummer: string);
19
- naam: string;
20
- kvkNummer: string;
21
- rechtsvorm: string;
22
- straatnaam?: string;
23
- aanduidingBijHuisnummer?: string;
24
- huisnummer: string;
25
- huisnummerToevoeging?: string;
26
- huisletter?: string;
27
- postbusnummer?: string;
28
- postcode: string;
29
- plaats: string;
30
- bagId?: string;
31
- datumAkteOprichting: string;
32
- token?: string;
33
- }
@@ -1,19 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AuthResponse = exports.StateMapping = exports.QRVariables = void 0;
4
- class QRVariables {
5
- }
6
- exports.QRVariables = QRVariables;
7
- class StateMapping {
8
- constructor() {
9
- this.authRequestCreated = false;
10
- }
11
- }
12
- exports.StateMapping = StateMapping;
13
- class AuthResponse {
14
- constructor(kvkNummer) {
15
- this.kvkNummer = kvkNummer;
16
- // this.userName = userName;
17
- }
18
- }
19
- exports.AuthResponse = AuthResponse;
package/dist/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export { QRVariables, StateMapping, AuthResponse } from './auth-model';
package/dist/index.js DELETED
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AuthResponse = exports.StateMapping = exports.QRVariables = void 0;
4
- var auth_model_1 = require("./auth-model");
5
- Object.defineProperty(exports, "QRVariables", { enumerable: true, get: function () { return auth_model_1.QRVariables; } });
6
- Object.defineProperty(exports, "StateMapping", { enumerable: true, get: function () { return auth_model_1.StateMapping; } });
7
- Object.defineProperty(exports, "AuthResponse", { enumerable: true, get: function () { return auth_model_1.AuthResponse; } });