@openfilz-sdk/typescript-ee 1.4.4 → 1.5.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.
- package/.openapi-generator/FILES +22 -0
- package/.openapi-generator/openfilz-api-generate-typescript-sdk.sha256 +1 -1
- package/README.md +22 -2
- package/api/digital-signature-api.ts +479 -0
- package/api/digital-signature-public-api.ts +463 -0
- package/api.ts +2 -0
- package/dist/api/digital-signature-api.d.ts +221 -0
- package/dist/api/digital-signature-api.js +464 -0
- package/dist/api/digital-signature-public-api.d.ts +213 -0
- package/dist/api/digital-signature-public-api.js +446 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/esm/api/digital-signature-api.d.ts +221 -0
- package/dist/esm/api/digital-signature-api.js +457 -0
- package/dist/esm/api/digital-signature-public-api.d.ts +213 -0
- package/dist/esm/api/digital-signature-public-api.js +439 -0
- package/dist/esm/api.d.ts +2 -0
- package/dist/esm/api.js +2 -0
- package/dist/esm/models/apply-signature-request.d.ts +15 -0
- package/dist/esm/models/apply-signature-request.js +14 -0
- package/dist/esm/models/create-signature-envelope-request.d.ts +19 -0
- package/dist/esm/models/create-signature-envelope-request.js +14 -0
- package/dist/esm/models/decline-signature-request.d.ts +14 -0
- package/dist/esm/models/decline-signature-request.js +14 -0
- package/dist/esm/models/enriched-audit-log.d.ts +7 -0
- package/dist/esm/models/enriched-audit-log.js +8 -1
- package/dist/esm/models/index.d.ts +9 -0
- package/dist/esm/models/index.js +9 -0
- package/dist/esm/models/notification-dto.d.ts +3 -0
- package/dist/esm/models/notification-dto.js +4 -1
- package/dist/esm/models/public-signature-view.d.ts +44 -0
- package/dist/esm/models/public-signature-view.js +27 -0
- package/dist/esm/models/search-by-audit-log-request.d.ts +7 -0
- package/dist/esm/models/search-by-audit-log-request.js +8 -1
- package/dist/esm/models/signature-archive-dto.d.ts +19 -0
- package/dist/esm/models/signature-archive-dto.js +14 -0
- package/dist/esm/models/signature-envelope-dto.d.ts +34 -0
- package/dist/esm/models/signature-envelope-dto.js +21 -0
- package/dist/esm/models/signature-field-placement.d.ts +18 -0
- package/dist/esm/models/signature-field-placement.js +14 -0
- package/dist/esm/models/signature-recipient-dto.d.ts +29 -0
- package/dist/esm/models/signature-recipient-dto.js +19 -0
- package/dist/esm/models/signature-recipient-input.d.ts +18 -0
- package/dist/esm/models/signature-recipient-input.js +14 -0
- package/dist/models/apply-signature-request.d.ts +15 -0
- package/dist/models/apply-signature-request.js +15 -0
- package/dist/models/create-signature-envelope-request.d.ts +19 -0
- package/dist/models/create-signature-envelope-request.js +15 -0
- package/dist/models/decline-signature-request.d.ts +14 -0
- package/dist/models/decline-signature-request.js +15 -0
- package/dist/models/enriched-audit-log.d.ts +7 -0
- package/dist/models/enriched-audit-log.js +8 -1
- package/dist/models/index.d.ts +9 -0
- package/dist/models/index.js +9 -0
- package/dist/models/notification-dto.d.ts +3 -0
- package/dist/models/notification-dto.js +4 -1
- package/dist/models/public-signature-view.d.ts +44 -0
- package/dist/models/public-signature-view.js +30 -0
- package/dist/models/search-by-audit-log-request.d.ts +7 -0
- package/dist/models/search-by-audit-log-request.js +8 -1
- package/dist/models/signature-archive-dto.d.ts +19 -0
- package/dist/models/signature-archive-dto.js +15 -0
- package/dist/models/signature-envelope-dto.d.ts +34 -0
- package/dist/models/signature-envelope-dto.js +24 -0
- package/dist/models/signature-field-placement.d.ts +18 -0
- package/dist/models/signature-field-placement.js +15 -0
- package/dist/models/signature-recipient-dto.d.ts +29 -0
- package/dist/models/signature-recipient-dto.js +22 -0
- package/dist/models/signature-recipient-input.d.ts +18 -0
- package/dist/models/signature-recipient-input.js +15 -0
- package/docs/ApplySignatureRequest.md +22 -0
- package/docs/CreateSignatureEnvelopeRequest.md +28 -0
- package/docs/DeclineSignatureRequest.md +20 -0
- package/docs/DigitalSignatureApi.md +300 -0
- package/docs/DigitalSignaturePublicApi.md +276 -0
- package/docs/PublicSignatureView.md +48 -0
- package/docs/SignatureArchiveDTO.md +30 -0
- package/docs/SignatureEnvelopeDTO.md +40 -0
- package/docs/SignatureFieldPlacement.md +28 -0
- package/docs/SignatureRecipientDTO.md +36 -0
- package/docs/SignatureRecipientInput.md +26 -0
- package/models/apply-signature-request.ts +21 -0
- package/models/create-signature-envelope-request.ts +27 -0
- package/models/decline-signature-request.ts +20 -0
- package/models/enriched-audit-log.ts +8 -1
- package/models/index.ts +9 -0
- package/models/notification-dto.ts +4 -1
- package/models/public-signature-view.ts +54 -0
- package/models/search-by-audit-log-request.ts +8 -1
- package/models/signature-archive-dto.ts +25 -0
- package/models/signature-envelope-dto.ts +45 -0
- package/models/signature-field-placement.ts +24 -0
- package/models/signature-recipient-dto.ts +38 -0
- package/models/signature-recipient-input.ts +26 -0
- package/package.json +1 -1
|
@@ -53,7 +53,14 @@ exports.EnrichedAuditLogActionEnum = {
|
|
|
53
53
|
DelegatedGrantConsumed: 'DELEGATED_GRANT_CONSUMED',
|
|
54
54
|
DelegatedGrantSubscriptionRevokedByAdmin: 'DELEGATED_GRANT_SUBSCRIPTION_REVOKED_BY_ADMIN',
|
|
55
55
|
DelegatedBrowse: 'DELEGATED_BROWSE',
|
|
56
|
-
AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED'
|
|
56
|
+
AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED',
|
|
57
|
+
SignatureEnvelopeCreated: 'SIGNATURE_ENVELOPE_CREATED',
|
|
58
|
+
SignatureEnvelopeSent: 'SIGNATURE_ENVELOPE_SENT',
|
|
59
|
+
SignatureDocumentSigned: 'SIGNATURE_DOCUMENT_SIGNED',
|
|
60
|
+
SignatureEnvelopeCompleted: 'SIGNATURE_ENVELOPE_COMPLETED',
|
|
61
|
+
SignatureEnvelopeDeclined: 'SIGNATURE_ENVELOPE_DECLINED',
|
|
62
|
+
SignatureEnvelopeCancelled: 'SIGNATURE_ENVELOPE_CANCELLED',
|
|
63
|
+
SignatureEnvelopeExpired: 'SIGNATURE_ENVELOPE_EXPIRED'
|
|
57
64
|
};
|
|
58
65
|
exports.EnrichedAuditLogResourceTypeEnum = {
|
|
59
66
|
File: 'FILE',
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './ancestor-info';
|
|
2
|
+
export * from './apply-signature-request';
|
|
2
3
|
export * from './audit-log-details';
|
|
3
4
|
export * from './audit-verification-result';
|
|
4
5
|
export * from './broken-link';
|
|
@@ -12,8 +13,10 @@ export * from './create-comment-request';
|
|
|
12
13
|
export * from './create-delegated-grant-request';
|
|
13
14
|
export * from './create-folder-audit';
|
|
14
15
|
export * from './create-folder-request';
|
|
16
|
+
export * from './create-signature-envelope-request';
|
|
15
17
|
export * from './create-team-request';
|
|
16
18
|
export * from './dashboard-statistics-response';
|
|
19
|
+
export * from './decline-signature-request';
|
|
17
20
|
export * from './delegated-folder-node';
|
|
18
21
|
export * from './delegated-grant-dto';
|
|
19
22
|
export * from './delete-audit';
|
|
@@ -35,6 +38,7 @@ export * from './mint-upload-token-request';
|
|
|
35
38
|
export * from './move-audit';
|
|
36
39
|
export * from './move-request';
|
|
37
40
|
export * from './notification-dto';
|
|
41
|
+
export * from './public-signature-view';
|
|
38
42
|
export * from './rename-audit';
|
|
39
43
|
export * from './rename-request';
|
|
40
44
|
export * from './replace-audit';
|
|
@@ -49,6 +53,11 @@ export * from './share-request';
|
|
|
49
53
|
export * from './share-result-error';
|
|
50
54
|
export * from './share-result-item';
|
|
51
55
|
export * from './share-result-response';
|
|
56
|
+
export * from './signature-archive-dto';
|
|
57
|
+
export * from './signature-envelope-dto';
|
|
58
|
+
export * from './signature-field-placement';
|
|
59
|
+
export * from './signature-recipient-dto';
|
|
60
|
+
export * from './signature-recipient-input';
|
|
52
61
|
export * from './sort-input';
|
|
53
62
|
export * from './storage-breakdown';
|
|
54
63
|
export * from './suggest';
|
package/dist/models/index.js
CHANGED
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./ancestor-info"), exports);
|
|
18
|
+
__exportStar(require("./apply-signature-request"), exports);
|
|
18
19
|
__exportStar(require("./audit-log-details"), exports);
|
|
19
20
|
__exportStar(require("./audit-verification-result"), exports);
|
|
20
21
|
__exportStar(require("./broken-link"), exports);
|
|
@@ -28,8 +29,10 @@ __exportStar(require("./create-comment-request"), exports);
|
|
|
28
29
|
__exportStar(require("./create-delegated-grant-request"), exports);
|
|
29
30
|
__exportStar(require("./create-folder-audit"), exports);
|
|
30
31
|
__exportStar(require("./create-folder-request"), exports);
|
|
32
|
+
__exportStar(require("./create-signature-envelope-request"), exports);
|
|
31
33
|
__exportStar(require("./create-team-request"), exports);
|
|
32
34
|
__exportStar(require("./dashboard-statistics-response"), exports);
|
|
35
|
+
__exportStar(require("./decline-signature-request"), exports);
|
|
33
36
|
__exportStar(require("./delegated-folder-node"), exports);
|
|
34
37
|
__exportStar(require("./delegated-grant-dto"), exports);
|
|
35
38
|
__exportStar(require("./delete-audit"), exports);
|
|
@@ -51,6 +54,7 @@ __exportStar(require("./mint-upload-token-request"), exports);
|
|
|
51
54
|
__exportStar(require("./move-audit"), exports);
|
|
52
55
|
__exportStar(require("./move-request"), exports);
|
|
53
56
|
__exportStar(require("./notification-dto"), exports);
|
|
57
|
+
__exportStar(require("./public-signature-view"), exports);
|
|
54
58
|
__exportStar(require("./rename-audit"), exports);
|
|
55
59
|
__exportStar(require("./rename-request"), exports);
|
|
56
60
|
__exportStar(require("./replace-audit"), exports);
|
|
@@ -65,6 +69,11 @@ __exportStar(require("./share-request"), exports);
|
|
|
65
69
|
__exportStar(require("./share-result-error"), exports);
|
|
66
70
|
__exportStar(require("./share-result-item"), exports);
|
|
67
71
|
__exportStar(require("./share-result-response"), exports);
|
|
72
|
+
__exportStar(require("./signature-archive-dto"), exports);
|
|
73
|
+
__exportStar(require("./signature-envelope-dto"), exports);
|
|
74
|
+
__exportStar(require("./signature-field-placement"), exports);
|
|
75
|
+
__exportStar(require("./signature-recipient-dto"), exports);
|
|
76
|
+
__exportStar(require("./signature-recipient-input"), exports);
|
|
68
77
|
__exportStar(require("./sort-input"), exports);
|
|
69
78
|
__exportStar(require("./storage-breakdown"), exports);
|
|
70
79
|
__exportStar(require("./suggest"), exports);
|
|
@@ -28,5 +28,8 @@ export declare const NotificationDTOTypeEnum: {
|
|
|
28
28
|
readonly DelegatedGrantRequested: "DELEGATED_GRANT_REQUESTED";
|
|
29
29
|
readonly DelegatedGrantConsumed: "DELEGATED_GRANT_CONSUMED";
|
|
30
30
|
readonly DelegatedGrantExpired: "DELEGATED_GRANT_EXPIRED";
|
|
31
|
+
readonly SignatureRequest: "SIGNATURE_REQUEST";
|
|
32
|
+
readonly SignatureCompleted: "SIGNATURE_COMPLETED";
|
|
33
|
+
readonly SignatureDeclined: "SIGNATURE_DECLINED";
|
|
31
34
|
};
|
|
32
35
|
export type NotificationDTOTypeEnum = typeof NotificationDTOTypeEnum[keyof typeof NotificationDTOTypeEnum];
|
|
@@ -21,5 +21,8 @@ exports.NotificationDTOTypeEnum = {
|
|
|
21
21
|
VirusDetected: 'VIRUS_DETECTED',
|
|
22
22
|
DelegatedGrantRequested: 'DELEGATED_GRANT_REQUESTED',
|
|
23
23
|
DelegatedGrantConsumed: 'DELEGATED_GRANT_CONSUMED',
|
|
24
|
-
DelegatedGrantExpired: 'DELEGATED_GRANT_EXPIRED'
|
|
24
|
+
DelegatedGrantExpired: 'DELEGATED_GRANT_EXPIRED',
|
|
25
|
+
SignatureRequest: 'SIGNATURE_REQUEST',
|
|
26
|
+
SignatureCompleted: 'SIGNATURE_COMPLETED',
|
|
27
|
+
SignatureDeclined: 'SIGNATURE_DECLINED'
|
|
25
28
|
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface PublicSignatureView {
|
|
13
|
+
'envelopeTitle'?: string;
|
|
14
|
+
'message'?: string;
|
|
15
|
+
'initiatorEmail'?: string;
|
|
16
|
+
'documentName'?: string;
|
|
17
|
+
'recipientName'?: string;
|
|
18
|
+
'recipientEmail'?: string;
|
|
19
|
+
'envelopeStatus'?: PublicSignatureViewEnvelopeStatusEnum;
|
|
20
|
+
'recipientStatus'?: PublicSignatureViewRecipientStatusEnum;
|
|
21
|
+
'fieldPage'?: number;
|
|
22
|
+
'fieldX'?: number;
|
|
23
|
+
'fieldY'?: number;
|
|
24
|
+
'fieldW'?: number;
|
|
25
|
+
'fieldH'?: number;
|
|
26
|
+
'signatureImage'?: string;
|
|
27
|
+
'signatureTyped'?: string;
|
|
28
|
+
}
|
|
29
|
+
export declare const PublicSignatureViewEnvelopeStatusEnum: {
|
|
30
|
+
readonly Draft: "DRAFT";
|
|
31
|
+
readonly Sent: "SENT";
|
|
32
|
+
readonly Completed: "COMPLETED";
|
|
33
|
+
readonly Declined: "DECLINED";
|
|
34
|
+
readonly Cancelled: "CANCELLED";
|
|
35
|
+
readonly Expired: "EXPIRED";
|
|
36
|
+
};
|
|
37
|
+
export type PublicSignatureViewEnvelopeStatusEnum = typeof PublicSignatureViewEnvelopeStatusEnum[keyof typeof PublicSignatureViewEnvelopeStatusEnum];
|
|
38
|
+
export declare const PublicSignatureViewRecipientStatusEnum: {
|
|
39
|
+
readonly Pending: "PENDING";
|
|
40
|
+
readonly Viewed: "VIEWED";
|
|
41
|
+
readonly Signed: "SIGNED";
|
|
42
|
+
readonly Declined: "DECLINED";
|
|
43
|
+
};
|
|
44
|
+
export type PublicSignatureViewRecipientStatusEnum = typeof PublicSignatureViewRecipientStatusEnum[keyof typeof PublicSignatureViewRecipientStatusEnum];
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* openfilz-api
|
|
6
|
+
* API for Document Management System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.PublicSignatureViewRecipientStatusEnum = exports.PublicSignatureViewEnvelopeStatusEnum = void 0;
|
|
17
|
+
exports.PublicSignatureViewEnvelopeStatusEnum = {
|
|
18
|
+
Draft: 'DRAFT',
|
|
19
|
+
Sent: 'SENT',
|
|
20
|
+
Completed: 'COMPLETED',
|
|
21
|
+
Declined: 'DECLINED',
|
|
22
|
+
Cancelled: 'CANCELLED',
|
|
23
|
+
Expired: 'EXPIRED'
|
|
24
|
+
};
|
|
25
|
+
exports.PublicSignatureViewRecipientStatusEnum = {
|
|
26
|
+
Pending: 'PENDING',
|
|
27
|
+
Viewed: 'VIEWED',
|
|
28
|
+
Signed: 'SIGNED',
|
|
29
|
+
Declined: 'DECLINED'
|
|
30
|
+
};
|
|
@@ -81,5 +81,12 @@ export declare const SearchByAuditLogRequestActionEnum: {
|
|
|
81
81
|
readonly DelegatedGrantSubscriptionRevokedByAdmin: "DELEGATED_GRANT_SUBSCRIPTION_REVOKED_BY_ADMIN";
|
|
82
82
|
readonly DelegatedBrowse: "DELEGATED_BROWSE";
|
|
83
83
|
readonly AdminMonitoringOptOutChanged: "ADMIN_MONITORING_OPT_OUT_CHANGED";
|
|
84
|
+
readonly SignatureEnvelopeCreated: "SIGNATURE_ENVELOPE_CREATED";
|
|
85
|
+
readonly SignatureEnvelopeSent: "SIGNATURE_ENVELOPE_SENT";
|
|
86
|
+
readonly SignatureDocumentSigned: "SIGNATURE_DOCUMENT_SIGNED";
|
|
87
|
+
readonly SignatureEnvelopeCompleted: "SIGNATURE_ENVELOPE_COMPLETED";
|
|
88
|
+
readonly SignatureEnvelopeDeclined: "SIGNATURE_ENVELOPE_DECLINED";
|
|
89
|
+
readonly SignatureEnvelopeCancelled: "SIGNATURE_ENVELOPE_CANCELLED";
|
|
90
|
+
readonly SignatureEnvelopeExpired: "SIGNATURE_ENVELOPE_EXPIRED";
|
|
84
91
|
};
|
|
85
92
|
export type SearchByAuditLogRequestActionEnum = typeof SearchByAuditLogRequestActionEnum[keyof typeof SearchByAuditLogRequestActionEnum];
|
|
@@ -57,5 +57,12 @@ exports.SearchByAuditLogRequestActionEnum = {
|
|
|
57
57
|
DelegatedGrantConsumed: 'DELEGATED_GRANT_CONSUMED',
|
|
58
58
|
DelegatedGrantSubscriptionRevokedByAdmin: 'DELEGATED_GRANT_SUBSCRIPTION_REVOKED_BY_ADMIN',
|
|
59
59
|
DelegatedBrowse: 'DELEGATED_BROWSE',
|
|
60
|
-
AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED'
|
|
60
|
+
AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED',
|
|
61
|
+
SignatureEnvelopeCreated: 'SIGNATURE_ENVELOPE_CREATED',
|
|
62
|
+
SignatureEnvelopeSent: 'SIGNATURE_ENVELOPE_SENT',
|
|
63
|
+
SignatureDocumentSigned: 'SIGNATURE_DOCUMENT_SIGNED',
|
|
64
|
+
SignatureEnvelopeCompleted: 'SIGNATURE_ENVELOPE_COMPLETED',
|
|
65
|
+
SignatureEnvelopeDeclined: 'SIGNATURE_ENVELOPE_DECLINED',
|
|
66
|
+
SignatureEnvelopeCancelled: 'SIGNATURE_ENVELOPE_CANCELLED',
|
|
67
|
+
SignatureEnvelopeExpired: 'SIGNATURE_ENVELOPE_EXPIRED'
|
|
61
68
|
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface SignatureArchiveDTO {
|
|
13
|
+
'pdfaDocId'?: string;
|
|
14
|
+
'flavor'?: string;
|
|
15
|
+
'compliant'?: boolean;
|
|
16
|
+
'status'?: string;
|
|
17
|
+
'report'?: string;
|
|
18
|
+
'createdAt'?: string;
|
|
19
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* openfilz-api
|
|
6
|
+
* API for Document Management System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { SignatureRecipientDTO } from './signature-recipient-dto';
|
|
13
|
+
export interface SignatureEnvelopeDTO {
|
|
14
|
+
'id'?: string;
|
|
15
|
+
'title'?: string;
|
|
16
|
+
'message'?: string;
|
|
17
|
+
'sourceDocId'?: string;
|
|
18
|
+
'signedDocId'?: string;
|
|
19
|
+
'status'?: SignatureEnvelopeDTOStatusEnum;
|
|
20
|
+
'initiatorEmail'?: string;
|
|
21
|
+
'createdAt'?: string;
|
|
22
|
+
'completedAt'?: string;
|
|
23
|
+
'expiresAt'?: string;
|
|
24
|
+
'recipients'?: Array<SignatureRecipientDTO>;
|
|
25
|
+
}
|
|
26
|
+
export declare const SignatureEnvelopeDTOStatusEnum: {
|
|
27
|
+
readonly Draft: "DRAFT";
|
|
28
|
+
readonly Sent: "SENT";
|
|
29
|
+
readonly Completed: "COMPLETED";
|
|
30
|
+
readonly Declined: "DECLINED";
|
|
31
|
+
readonly Cancelled: "CANCELLED";
|
|
32
|
+
readonly Expired: "EXPIRED";
|
|
33
|
+
};
|
|
34
|
+
export type SignatureEnvelopeDTOStatusEnum = typeof SignatureEnvelopeDTOStatusEnum[keyof typeof SignatureEnvelopeDTOStatusEnum];
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* openfilz-api
|
|
6
|
+
* API for Document Management System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.SignatureEnvelopeDTOStatusEnum = void 0;
|
|
17
|
+
exports.SignatureEnvelopeDTOStatusEnum = {
|
|
18
|
+
Draft: 'DRAFT',
|
|
19
|
+
Sent: 'SENT',
|
|
20
|
+
Completed: 'COMPLETED',
|
|
21
|
+
Declined: 'DECLINED',
|
|
22
|
+
Cancelled: 'CANCELLED',
|
|
23
|
+
Expired: 'EXPIRED'
|
|
24
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface SignatureFieldPlacement {
|
|
13
|
+
'page': number;
|
|
14
|
+
'x': number;
|
|
15
|
+
'y': number;
|
|
16
|
+
'w': number;
|
|
17
|
+
'h': number;
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* openfilz-api
|
|
6
|
+
* API for Document Management System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface SignatureRecipientDTO {
|
|
13
|
+
'id'?: string;
|
|
14
|
+
'userId'?: string;
|
|
15
|
+
'name'?: string;
|
|
16
|
+
'email'?: string;
|
|
17
|
+
'orderIndex'?: number;
|
|
18
|
+
'status'?: SignatureRecipientDTOStatusEnum;
|
|
19
|
+
'viewedAt'?: string;
|
|
20
|
+
'signedAt'?: string;
|
|
21
|
+
'declineReason'?: string;
|
|
22
|
+
}
|
|
23
|
+
export declare const SignatureRecipientDTOStatusEnum: {
|
|
24
|
+
readonly Pending: "PENDING";
|
|
25
|
+
readonly Viewed: "VIEWED";
|
|
26
|
+
readonly Signed: "SIGNED";
|
|
27
|
+
readonly Declined: "DECLINED";
|
|
28
|
+
};
|
|
29
|
+
export type SignatureRecipientDTOStatusEnum = typeof SignatureRecipientDTOStatusEnum[keyof typeof SignatureRecipientDTOStatusEnum];
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* openfilz-api
|
|
6
|
+
* API for Document Management System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.SignatureRecipientDTOStatusEnum = void 0;
|
|
17
|
+
exports.SignatureRecipientDTOStatusEnum = {
|
|
18
|
+
Pending: 'PENDING',
|
|
19
|
+
Viewed: 'VIEWED',
|
|
20
|
+
Signed: 'SIGNED',
|
|
21
|
+
Declined: 'DECLINED'
|
|
22
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* openfilz-api
|
|
3
|
+
* API for Document Management System
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { SignatureFieldPlacement } from './signature-field-placement';
|
|
13
|
+
export interface SignatureRecipientInput {
|
|
14
|
+
'userId'?: string;
|
|
15
|
+
'name'?: string;
|
|
16
|
+
'email': string;
|
|
17
|
+
'field': SignatureFieldPlacement;
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* openfilz-api
|
|
6
|
+
* API for Document Management System
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ApplySignatureRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**signatureImage** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**typedName** | **string** | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ApplySignatureRequest } from '@openfilz-sdk/typescript-ee';
|
|
15
|
+
|
|
16
|
+
const instance: ApplySignatureRequest = {
|
|
17
|
+
signatureImage,
|
|
18
|
+
typedName,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# CreateSignatureEnvelopeRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**sourceDocId** | **string** | | [default to undefined]
|
|
9
|
+
**title** | **string** | | [default to undefined]
|
|
10
|
+
**message** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**recipients** | [**Array<SignatureRecipientInput>**](SignatureRecipientInput.md) | | [default to undefined]
|
|
12
|
+
**expiresInDays** | **number** | | [optional] [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { CreateSignatureEnvelopeRequest } from '@openfilz-sdk/typescript-ee';
|
|
18
|
+
|
|
19
|
+
const instance: CreateSignatureEnvelopeRequest = {
|
|
20
|
+
sourceDocId,
|
|
21
|
+
title,
|
|
22
|
+
message,
|
|
23
|
+
recipients,
|
|
24
|
+
expiresInDays,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# DeclineSignatureRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**reason** | **string** | | [optional] [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { DeclineSignatureRequest } from '@openfilz-sdk/typescript-ee';
|
|
14
|
+
|
|
15
|
+
const instance: DeclineSignatureRequest = {
|
|
16
|
+
reason,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|