@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.
Files changed (95) hide show
  1. package/.openapi-generator/FILES +22 -0
  2. package/.openapi-generator/openfilz-api-generate-typescript-sdk.sha256 +1 -1
  3. package/README.md +22 -2
  4. package/api/digital-signature-api.ts +479 -0
  5. package/api/digital-signature-public-api.ts +463 -0
  6. package/api.ts +2 -0
  7. package/dist/api/digital-signature-api.d.ts +221 -0
  8. package/dist/api/digital-signature-api.js +464 -0
  9. package/dist/api/digital-signature-public-api.d.ts +213 -0
  10. package/dist/api/digital-signature-public-api.js +446 -0
  11. package/dist/api.d.ts +2 -0
  12. package/dist/api.js +2 -0
  13. package/dist/esm/api/digital-signature-api.d.ts +221 -0
  14. package/dist/esm/api/digital-signature-api.js +457 -0
  15. package/dist/esm/api/digital-signature-public-api.d.ts +213 -0
  16. package/dist/esm/api/digital-signature-public-api.js +439 -0
  17. package/dist/esm/api.d.ts +2 -0
  18. package/dist/esm/api.js +2 -0
  19. package/dist/esm/models/apply-signature-request.d.ts +15 -0
  20. package/dist/esm/models/apply-signature-request.js +14 -0
  21. package/dist/esm/models/create-signature-envelope-request.d.ts +19 -0
  22. package/dist/esm/models/create-signature-envelope-request.js +14 -0
  23. package/dist/esm/models/decline-signature-request.d.ts +14 -0
  24. package/dist/esm/models/decline-signature-request.js +14 -0
  25. package/dist/esm/models/enriched-audit-log.d.ts +7 -0
  26. package/dist/esm/models/enriched-audit-log.js +8 -1
  27. package/dist/esm/models/index.d.ts +9 -0
  28. package/dist/esm/models/index.js +9 -0
  29. package/dist/esm/models/notification-dto.d.ts +3 -0
  30. package/dist/esm/models/notification-dto.js +4 -1
  31. package/dist/esm/models/public-signature-view.d.ts +44 -0
  32. package/dist/esm/models/public-signature-view.js +27 -0
  33. package/dist/esm/models/search-by-audit-log-request.d.ts +7 -0
  34. package/dist/esm/models/search-by-audit-log-request.js +8 -1
  35. package/dist/esm/models/signature-archive-dto.d.ts +19 -0
  36. package/dist/esm/models/signature-archive-dto.js +14 -0
  37. package/dist/esm/models/signature-envelope-dto.d.ts +34 -0
  38. package/dist/esm/models/signature-envelope-dto.js +21 -0
  39. package/dist/esm/models/signature-field-placement.d.ts +18 -0
  40. package/dist/esm/models/signature-field-placement.js +14 -0
  41. package/dist/esm/models/signature-recipient-dto.d.ts +29 -0
  42. package/dist/esm/models/signature-recipient-dto.js +19 -0
  43. package/dist/esm/models/signature-recipient-input.d.ts +18 -0
  44. package/dist/esm/models/signature-recipient-input.js +14 -0
  45. package/dist/models/apply-signature-request.d.ts +15 -0
  46. package/dist/models/apply-signature-request.js +15 -0
  47. package/dist/models/create-signature-envelope-request.d.ts +19 -0
  48. package/dist/models/create-signature-envelope-request.js +15 -0
  49. package/dist/models/decline-signature-request.d.ts +14 -0
  50. package/dist/models/decline-signature-request.js +15 -0
  51. package/dist/models/enriched-audit-log.d.ts +7 -0
  52. package/dist/models/enriched-audit-log.js +8 -1
  53. package/dist/models/index.d.ts +9 -0
  54. package/dist/models/index.js +9 -0
  55. package/dist/models/notification-dto.d.ts +3 -0
  56. package/dist/models/notification-dto.js +4 -1
  57. package/dist/models/public-signature-view.d.ts +44 -0
  58. package/dist/models/public-signature-view.js +30 -0
  59. package/dist/models/search-by-audit-log-request.d.ts +7 -0
  60. package/dist/models/search-by-audit-log-request.js +8 -1
  61. package/dist/models/signature-archive-dto.d.ts +19 -0
  62. package/dist/models/signature-archive-dto.js +15 -0
  63. package/dist/models/signature-envelope-dto.d.ts +34 -0
  64. package/dist/models/signature-envelope-dto.js +24 -0
  65. package/dist/models/signature-field-placement.d.ts +18 -0
  66. package/dist/models/signature-field-placement.js +15 -0
  67. package/dist/models/signature-recipient-dto.d.ts +29 -0
  68. package/dist/models/signature-recipient-dto.js +22 -0
  69. package/dist/models/signature-recipient-input.d.ts +18 -0
  70. package/dist/models/signature-recipient-input.js +15 -0
  71. package/docs/ApplySignatureRequest.md +22 -0
  72. package/docs/CreateSignatureEnvelopeRequest.md +28 -0
  73. package/docs/DeclineSignatureRequest.md +20 -0
  74. package/docs/DigitalSignatureApi.md +300 -0
  75. package/docs/DigitalSignaturePublicApi.md +276 -0
  76. package/docs/PublicSignatureView.md +48 -0
  77. package/docs/SignatureArchiveDTO.md +30 -0
  78. package/docs/SignatureEnvelopeDTO.md +40 -0
  79. package/docs/SignatureFieldPlacement.md +28 -0
  80. package/docs/SignatureRecipientDTO.md +36 -0
  81. package/docs/SignatureRecipientInput.md +26 -0
  82. package/models/apply-signature-request.ts +21 -0
  83. package/models/create-signature-envelope-request.ts +27 -0
  84. package/models/decline-signature-request.ts +20 -0
  85. package/models/enriched-audit-log.ts +8 -1
  86. package/models/index.ts +9 -0
  87. package/models/notification-dto.ts +4 -1
  88. package/models/public-signature-view.ts +54 -0
  89. package/models/search-by-audit-log-request.ts +8 -1
  90. package/models/signature-archive-dto.ts +25 -0
  91. package/models/signature-envelope-dto.ts +45 -0
  92. package/models/signature-field-placement.ts +24 -0
  93. package/models/signature-recipient-dto.ts +38 -0
  94. package/models/signature-recipient-input.ts +26 -0
  95. package/package.json +1 -1
@@ -0,0 +1,15 @@
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 ApplySignatureRequest {
13
+ 'signatureImage'?: string;
14
+ 'typedName'?: string;
15
+ }
@@ -0,0 +1,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -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
+ import type { SignatureRecipientInput } from './signature-recipient-input';
13
+ export interface CreateSignatureEnvelopeRequest {
14
+ 'sourceDocId': string;
15
+ 'title': string;
16
+ 'message'?: string;
17
+ 'recipients': Array<SignatureRecipientInput>;
18
+ 'expiresInDays'?: number;
19
+ }
@@ -0,0 +1,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -0,0 +1,14 @@
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 DeclineSignatureRequest {
13
+ 'reason'?: string;
14
+ }
@@ -0,0 +1,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -65,6 +65,13 @@ export declare const EnrichedAuditLogActionEnum: {
65
65
  readonly DelegatedGrantSubscriptionRevokedByAdmin: "DELEGATED_GRANT_SUBSCRIPTION_REVOKED_BY_ADMIN";
66
66
  readonly DelegatedBrowse: "DELEGATED_BROWSE";
67
67
  readonly AdminMonitoringOptOutChanged: "ADMIN_MONITORING_OPT_OUT_CHANGED";
68
+ readonly SignatureEnvelopeCreated: "SIGNATURE_ENVELOPE_CREATED";
69
+ readonly SignatureEnvelopeSent: "SIGNATURE_ENVELOPE_SENT";
70
+ readonly SignatureDocumentSigned: "SIGNATURE_DOCUMENT_SIGNED";
71
+ readonly SignatureEnvelopeCompleted: "SIGNATURE_ENVELOPE_COMPLETED";
72
+ readonly SignatureEnvelopeDeclined: "SIGNATURE_ENVELOPE_DECLINED";
73
+ readonly SignatureEnvelopeCancelled: "SIGNATURE_ENVELOPE_CANCELLED";
74
+ readonly SignatureEnvelopeExpired: "SIGNATURE_ENVELOPE_EXPIRED";
68
75
  };
69
76
  export type EnrichedAuditLogActionEnum = typeof EnrichedAuditLogActionEnum[keyof typeof EnrichedAuditLogActionEnum];
70
77
  export declare const EnrichedAuditLogResourceTypeEnum: {
@@ -50,7 +50,14 @@ export const EnrichedAuditLogActionEnum = {
50
50
  DelegatedGrantConsumed: 'DELEGATED_GRANT_CONSUMED',
51
51
  DelegatedGrantSubscriptionRevokedByAdmin: 'DELEGATED_GRANT_SUBSCRIPTION_REVOKED_BY_ADMIN',
52
52
  DelegatedBrowse: 'DELEGATED_BROWSE',
53
- AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED'
53
+ AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED',
54
+ SignatureEnvelopeCreated: 'SIGNATURE_ENVELOPE_CREATED',
55
+ SignatureEnvelopeSent: 'SIGNATURE_ENVELOPE_SENT',
56
+ SignatureDocumentSigned: 'SIGNATURE_DOCUMENT_SIGNED',
57
+ SignatureEnvelopeCompleted: 'SIGNATURE_ENVELOPE_COMPLETED',
58
+ SignatureEnvelopeDeclined: 'SIGNATURE_ENVELOPE_DECLINED',
59
+ SignatureEnvelopeCancelled: 'SIGNATURE_ENVELOPE_CANCELLED',
60
+ SignatureEnvelopeExpired: 'SIGNATURE_ENVELOPE_EXPIRED'
54
61
  };
55
62
  export const EnrichedAuditLogResourceTypeEnum = {
56
63
  File: 'FILE',
@@ -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';
@@ -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';
@@ -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];
@@ -18,5 +18,8 @@ export const NotificationDTOTypeEnum = {
18
18
  VirusDetected: 'VIRUS_DETECTED',
19
19
  DelegatedGrantRequested: 'DELEGATED_GRANT_REQUESTED',
20
20
  DelegatedGrantConsumed: 'DELEGATED_GRANT_CONSUMED',
21
- DelegatedGrantExpired: 'DELEGATED_GRANT_EXPIRED'
21
+ DelegatedGrantExpired: 'DELEGATED_GRANT_EXPIRED',
22
+ SignatureRequest: 'SIGNATURE_REQUEST',
23
+ SignatureCompleted: 'SIGNATURE_COMPLETED',
24
+ SignatureDeclined: 'SIGNATURE_DECLINED'
22
25
  };
@@ -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,27 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export const PublicSignatureViewEnvelopeStatusEnum = {
15
+ Draft: 'DRAFT',
16
+ Sent: 'SENT',
17
+ Completed: 'COMPLETED',
18
+ Declined: 'DECLINED',
19
+ Cancelled: 'CANCELLED',
20
+ Expired: 'EXPIRED'
21
+ };
22
+ export const PublicSignatureViewRecipientStatusEnum = {
23
+ Pending: 'PENDING',
24
+ Viewed: 'VIEWED',
25
+ Signed: 'SIGNED',
26
+ Declined: 'DECLINED'
27
+ };
@@ -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];
@@ -54,5 +54,12 @@ export const SearchByAuditLogRequestActionEnum = {
54
54
  DelegatedGrantConsumed: 'DELEGATED_GRANT_CONSUMED',
55
55
  DelegatedGrantSubscriptionRevokedByAdmin: 'DELEGATED_GRANT_SUBSCRIPTION_REVOKED_BY_ADMIN',
56
56
  DelegatedBrowse: 'DELEGATED_BROWSE',
57
- AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED'
57
+ AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED',
58
+ SignatureEnvelopeCreated: 'SIGNATURE_ENVELOPE_CREATED',
59
+ SignatureEnvelopeSent: 'SIGNATURE_ENVELOPE_SENT',
60
+ SignatureDocumentSigned: 'SIGNATURE_DOCUMENT_SIGNED',
61
+ SignatureEnvelopeCompleted: 'SIGNATURE_ENVELOPE_COMPLETED',
62
+ SignatureEnvelopeDeclined: 'SIGNATURE_ENVELOPE_DECLINED',
63
+ SignatureEnvelopeCancelled: 'SIGNATURE_ENVELOPE_CANCELLED',
64
+ SignatureEnvelopeExpired: 'SIGNATURE_ENVELOPE_EXPIRED'
58
65
  };
@@ -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,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -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,21 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export const SignatureEnvelopeDTOStatusEnum = {
15
+ Draft: 'DRAFT',
16
+ Sent: 'SENT',
17
+ Completed: 'COMPLETED',
18
+ Declined: 'DECLINED',
19
+ Cancelled: 'CANCELLED',
20
+ Expired: 'EXPIRED'
21
+ };
@@ -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,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -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,19 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export const SignatureRecipientDTOStatusEnum = {
15
+ Pending: 'PENDING',
16
+ Viewed: 'VIEWED',
17
+ Signed: 'SIGNED',
18
+ Declined: 'DECLINED'
19
+ };
@@ -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,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -0,0 +1,15 @@
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 ApplySignatureRequest {
13
+ 'signatureImage'?: string;
14
+ 'typedName'?: string;
15
+ }
@@ -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,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
+ import type { SignatureRecipientInput } from './signature-recipient-input';
13
+ export interface CreateSignatureEnvelopeRequest {
14
+ 'sourceDocId': string;
15
+ 'title': string;
16
+ 'message'?: string;
17
+ 'recipients': Array<SignatureRecipientInput>;
18
+ 'expiresInDays'?: number;
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,14 @@
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 DeclineSignatureRequest {
13
+ 'reason'?: string;
14
+ }
@@ -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 });
@@ -65,6 +65,13 @@ export declare const EnrichedAuditLogActionEnum: {
65
65
  readonly DelegatedGrantSubscriptionRevokedByAdmin: "DELEGATED_GRANT_SUBSCRIPTION_REVOKED_BY_ADMIN";
66
66
  readonly DelegatedBrowse: "DELEGATED_BROWSE";
67
67
  readonly AdminMonitoringOptOutChanged: "ADMIN_MONITORING_OPT_OUT_CHANGED";
68
+ readonly SignatureEnvelopeCreated: "SIGNATURE_ENVELOPE_CREATED";
69
+ readonly SignatureEnvelopeSent: "SIGNATURE_ENVELOPE_SENT";
70
+ readonly SignatureDocumentSigned: "SIGNATURE_DOCUMENT_SIGNED";
71
+ readonly SignatureEnvelopeCompleted: "SIGNATURE_ENVELOPE_COMPLETED";
72
+ readonly SignatureEnvelopeDeclined: "SIGNATURE_ENVELOPE_DECLINED";
73
+ readonly SignatureEnvelopeCancelled: "SIGNATURE_ENVELOPE_CANCELLED";
74
+ readonly SignatureEnvelopeExpired: "SIGNATURE_ENVELOPE_EXPIRED";
68
75
  };
69
76
  export type EnrichedAuditLogActionEnum = typeof EnrichedAuditLogActionEnum[keyof typeof EnrichedAuditLogActionEnum];
70
77
  export declare const EnrichedAuditLogResourceTypeEnum: {