@royalinvest/dto 0.63.0 → 0.63.1

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.
@@ -1,8 +1,10 @@
1
+ import { SignatureMethodType } from "./signature-party";
1
2
  export interface ISavedSignature {
2
3
  initials: string;
3
4
  signature: string;
4
5
  timestamp: string;
5
6
  answers: SavedSignatureAnswers;
7
+ signatureMethod?: SignatureMethodType;
6
8
  }
7
9
  export type SavedSignatureAnswers = {
8
10
  [key: string]: any;
@@ -1,5 +1,4 @@
1
1
  import { PartyTypeEnum } from "./enum";
2
- import { SignatureMethodType } from "./signature-party";
3
2
  export interface ISignConfirmation {
4
3
  code: string;
5
4
  signatureId: string;
@@ -12,5 +11,4 @@ export interface ISignConfirmation {
12
11
  party_email: string;
13
12
  party_role: PartyTypeEnum;
14
13
  user_id?: string;
15
- signatureMethod?: SignatureMethodType;
16
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.63.0",
3
+ "version": "0.63.1",
4
4
  "description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",