@royalinvest/dto 0.11.13 → 0.11.15
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/dist/enum/index.d.ts +4 -0
- package/dist/enum/index.js +6 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/messageNotification.d.ts +5 -4
- package/dist/notification.d.ts +7 -4
- package/dist/signaturePartyBasic.d.ts +5 -0
- package/package.json +32 -32
- package/dist/fileView.d.ts +0 -5
- package/dist/quebec-lease-dwelling/expense.d.ts +0 -9
- package/dist/quebec-lease-dwelling/expense.js +0 -2
- /package/dist/{fileView.js → signaturePartyBasic.js} +0 -0
package/dist/enum/index.d.ts
CHANGED
package/dist/enum/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
3
|
+
exports.NotificationTypeEnum = exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
4
4
|
var PartyTypeEnum;
|
|
5
5
|
(function (PartyTypeEnum) {
|
|
6
6
|
PartyTypeEnum["default"] = "";
|
|
@@ -33,3 +33,8 @@ var SignStatusEnum;
|
|
|
33
33
|
SignStatusEnum["cancelled"] = "cancelled";
|
|
34
34
|
SignStatusEnum["signaturePending"] = "signaturePending";
|
|
35
35
|
})(SignStatusEnum || (exports.SignStatusEnum = SignStatusEnum = {}));
|
|
36
|
+
var NotificationTypeEnum;
|
|
37
|
+
(function (NotificationTypeEnum) {
|
|
38
|
+
NotificationTypeEnum["documentReady"] = "document_ready";
|
|
39
|
+
NotificationTypeEnum["documentSigned"] = "document_signed";
|
|
40
|
+
})(NotificationTypeEnum || (exports.NotificationTypeEnum = NotificationTypeEnum = {}));
|
package/dist/index.d.ts
CHANGED
|
@@ -24,12 +24,12 @@ export * from "./file";
|
|
|
24
24
|
export * from "./checkout";
|
|
25
25
|
export * from "./profile";
|
|
26
26
|
export * from "./signatureParty";
|
|
27
|
+
export * from "./signaturePartyBasic";
|
|
27
28
|
export * from "./signaturePartySigned";
|
|
29
|
+
export * from "./signaturePartyViewer";
|
|
28
30
|
export * from "./party";
|
|
29
31
|
export * from "./placeholder";
|
|
30
|
-
export * from "./signaturePartyViewer";
|
|
31
32
|
export * from "./field";
|
|
32
33
|
export * from "./co-singer";
|
|
33
34
|
export * from "./signatureInitials";
|
|
34
35
|
export * from "./lease-details";
|
|
35
|
-
export * from "./fileView";
|
package/dist/index.js
CHANGED
|
@@ -40,12 +40,12 @@ __exportStar(require("./file"), exports);
|
|
|
40
40
|
__exportStar(require("./checkout"), exports);
|
|
41
41
|
__exportStar(require("./profile"), exports);
|
|
42
42
|
__exportStar(require("./signatureParty"), exports);
|
|
43
|
+
__exportStar(require("./signaturePartyBasic"), exports);
|
|
43
44
|
__exportStar(require("./signaturePartySigned"), exports);
|
|
45
|
+
__exportStar(require("./signaturePartyViewer"), exports);
|
|
44
46
|
__exportStar(require("./party"), exports);
|
|
45
47
|
__exportStar(require("./placeholder"), exports);
|
|
46
|
-
__exportStar(require("./signaturePartyViewer"), exports);
|
|
47
48
|
__exportStar(require("./field"), exports);
|
|
48
49
|
__exportStar(require("./co-singer"), exports);
|
|
49
50
|
__exportStar(require("./signatureInitials"), exports);
|
|
50
51
|
__exportStar(require("./lease-details"), exports);
|
|
51
|
-
__exportStar(require("./fileView"), exports);
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
import { ISignaturePartyBasic } from "./signaturePartyBasic";
|
|
1
2
|
export interface IGeneratedNotification {
|
|
2
3
|
contract_id: string;
|
|
3
4
|
user_id: string;
|
|
4
5
|
file_name: string;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
message: string;
|
|
6
|
+
file_language: string;
|
|
7
|
+
mime_type: string;
|
|
8
|
+
template_name: string;
|
|
9
9
|
template_variant_id: string;
|
|
10
10
|
}
|
|
11
11
|
export interface ISignedNotification {
|
|
12
12
|
file_id: string;
|
|
13
|
+
parties: ISignaturePartyBasic[];
|
|
13
14
|
}
|
package/dist/notification.d.ts
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
|
+
import { NotificationTypeEnum } from "./enum";
|
|
1
2
|
export interface INotification {
|
|
2
3
|
id?: string;
|
|
3
4
|
payload: IPayload;
|
|
4
5
|
isRead: boolean;
|
|
5
6
|
created_at: Date;
|
|
7
|
+
type: NotificationTypeEnum;
|
|
6
8
|
}
|
|
7
9
|
export interface IPayload {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
}
|
|
11
|
+
export interface IFilePayload extends IPayload {
|
|
12
|
+
name: string;
|
|
11
13
|
language: string;
|
|
12
|
-
|
|
14
|
+
mime_type: string;
|
|
15
|
+
template_name: string;
|
|
13
16
|
}
|
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@royalinvest/dto",
|
|
3
|
-
"version": "0.11.
|
|
4
|
-
"description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
|
|
5
|
-
"main": "./src/index.ts",
|
|
6
|
-
"types": "./dist/index.d.ts",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.js"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "git@ssh.dev.azure.com:v3/royalinvest/royalinvest/royalinvestserver"
|
|
17
|
-
},
|
|
18
|
-
"files": [
|
|
19
|
-
"./dist"
|
|
20
|
-
],
|
|
21
|
-
"publishConfig": {
|
|
22
|
-
"access": "public"
|
|
23
|
-
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "npx tsc",
|
|
26
|
-
"clean": "rm -rf ./dist",
|
|
27
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
28
|
-
},
|
|
29
|
-
"author": "Samos Technologies Inc.",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"dependencies": {}
|
|
32
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@royalinvest/dto",
|
|
3
|
+
"version": "0.11.15",
|
|
4
|
+
"description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
|
|
5
|
+
"main": "./src/index.ts",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git@ssh.dev.azure.com:v3/royalinvest/royalinvest/royalinvestserver"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"./dist"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "npx tsc",
|
|
26
|
+
"clean": "rm -rf ./dist",
|
|
27
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
28
|
+
},
|
|
29
|
+
"author": "Samos Technologies Inc.",
|
|
30
|
+
"license": "ISC",
|
|
31
|
+
"dependencies": {}
|
|
32
|
+
}
|
package/dist/fileView.d.ts
DELETED
|
File without changes
|