@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,28 @@
1
+ # SignatureFieldPlacement
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **page** | **number** | | [default to undefined]
9
+ **x** | **number** | | [default to undefined]
10
+ **y** | **number** | | [default to undefined]
11
+ **w** | **number** | | [default to undefined]
12
+ **h** | **number** | | [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { SignatureFieldPlacement } from '@openfilz-sdk/typescript-ee';
18
+
19
+ const instance: SignatureFieldPlacement = {
20
+ page,
21
+ x,
22
+ y,
23
+ w,
24
+ h,
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,36 @@
1
+ # SignatureRecipientDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | | [optional] [default to undefined]
9
+ **userId** | **string** | | [optional] [default to undefined]
10
+ **name** | **string** | | [optional] [default to undefined]
11
+ **email** | **string** | | [optional] [default to undefined]
12
+ **orderIndex** | **number** | | [optional] [default to undefined]
13
+ **status** | **string** | | [optional] [default to undefined]
14
+ **viewedAt** | **string** | | [optional] [default to undefined]
15
+ **signedAt** | **string** | | [optional] [default to undefined]
16
+ **declineReason** | **string** | | [optional] [default to undefined]
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import { SignatureRecipientDTO } from '@openfilz-sdk/typescript-ee';
22
+
23
+ const instance: SignatureRecipientDTO = {
24
+ id,
25
+ userId,
26
+ name,
27
+ email,
28
+ orderIndex,
29
+ status,
30
+ viewedAt,
31
+ signedAt,
32
+ declineReason,
33
+ };
34
+ ```
35
+
36
+ [[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,26 @@
1
+ # SignatureRecipientInput
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **userId** | **string** | | [optional] [default to undefined]
9
+ **name** | **string** | | [optional] [default to undefined]
10
+ **email** | **string** | | [default to undefined]
11
+ **field** | [**SignatureFieldPlacement**](SignatureFieldPlacement.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { SignatureRecipientInput } from '@openfilz-sdk/typescript-ee';
17
+
18
+ const instance: SignatureRecipientInput = {
19
+ userId,
20
+ name,
21
+ email,
22
+ field,
23
+ };
24
+ ```
25
+
26
+ [[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,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
+
15
+
16
+
17
+ export interface ApplySignatureRequest {
18
+ 'signatureImage'?: string;
19
+ 'typedName'?: string;
20
+ }
21
+
@@ -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
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { SignatureRecipientInput } from './signature-recipient-input';
19
+
20
+ export interface CreateSignatureEnvelopeRequest {
21
+ 'sourceDocId': string;
22
+ 'title': string;
23
+ 'message'?: string;
24
+ 'recipients': Array<SignatureRecipientInput>;
25
+ 'expiresInDays'?: number;
26
+ }
27
+
@@ -0,0 +1,20 @@
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
+
15
+
16
+
17
+ export interface DeclineSignatureRequest {
18
+ 'reason'?: string;
19
+ }
20
+
@@ -72,7 +72,14 @@ export const EnrichedAuditLogActionEnum = {
72
72
  DelegatedGrantConsumed: 'DELEGATED_GRANT_CONSUMED',
73
73
  DelegatedGrantSubscriptionRevokedByAdmin: 'DELEGATED_GRANT_SUBSCRIPTION_REVOKED_BY_ADMIN',
74
74
  DelegatedBrowse: 'DELEGATED_BROWSE',
75
- AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED'
75
+ AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED',
76
+ SignatureEnvelopeCreated: 'SIGNATURE_ENVELOPE_CREATED',
77
+ SignatureEnvelopeSent: 'SIGNATURE_ENVELOPE_SENT',
78
+ SignatureDocumentSigned: 'SIGNATURE_DOCUMENT_SIGNED',
79
+ SignatureEnvelopeCompleted: 'SIGNATURE_ENVELOPE_COMPLETED',
80
+ SignatureEnvelopeDeclined: 'SIGNATURE_ENVELOPE_DECLINED',
81
+ SignatureEnvelopeCancelled: 'SIGNATURE_ENVELOPE_CANCELLED',
82
+ SignatureEnvelopeExpired: 'SIGNATURE_ENVELOPE_EXPIRED'
76
83
  } as const;
77
84
 
78
85
  export type EnrichedAuditLogActionEnum = typeof EnrichedAuditLogActionEnum[keyof typeof EnrichedAuditLogActionEnum];
package/models/index.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';
@@ -33,7 +33,10 @@ export const NotificationDTOTypeEnum = {
33
33
  VirusDetected: 'VIRUS_DETECTED',
34
34
  DelegatedGrantRequested: 'DELEGATED_GRANT_REQUESTED',
35
35
  DelegatedGrantConsumed: 'DELEGATED_GRANT_CONSUMED',
36
- DelegatedGrantExpired: 'DELEGATED_GRANT_EXPIRED'
36
+ DelegatedGrantExpired: 'DELEGATED_GRANT_EXPIRED',
37
+ SignatureRequest: 'SIGNATURE_REQUEST',
38
+ SignatureCompleted: 'SIGNATURE_COMPLETED',
39
+ SignatureDeclined: 'SIGNATURE_DECLINED'
37
40
  } as const;
38
41
 
39
42
  export type NotificationDTOTypeEnum = typeof NotificationDTOTypeEnum[keyof typeof NotificationDTOTypeEnum];
@@ -0,0 +1,54 @@
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
+
15
+
16
+
17
+ export interface PublicSignatureView {
18
+ 'envelopeTitle'?: string;
19
+ 'message'?: string;
20
+ 'initiatorEmail'?: string;
21
+ 'documentName'?: string;
22
+ 'recipientName'?: string;
23
+ 'recipientEmail'?: string;
24
+ 'envelopeStatus'?: PublicSignatureViewEnvelopeStatusEnum;
25
+ 'recipientStatus'?: PublicSignatureViewRecipientStatusEnum;
26
+ 'fieldPage'?: number;
27
+ 'fieldX'?: number;
28
+ 'fieldY'?: number;
29
+ 'fieldW'?: number;
30
+ 'fieldH'?: number;
31
+ 'signatureImage'?: string;
32
+ 'signatureTyped'?: string;
33
+ }
34
+
35
+ export const PublicSignatureViewEnvelopeStatusEnum = {
36
+ Draft: 'DRAFT',
37
+ Sent: 'SENT',
38
+ Completed: 'COMPLETED',
39
+ Declined: 'DECLINED',
40
+ Cancelled: 'CANCELLED',
41
+ Expired: 'EXPIRED'
42
+ } as const;
43
+
44
+ export type PublicSignatureViewEnvelopeStatusEnum = typeof PublicSignatureViewEnvelopeStatusEnum[keyof typeof PublicSignatureViewEnvelopeStatusEnum];
45
+ export const PublicSignatureViewRecipientStatusEnum = {
46
+ Pending: 'PENDING',
47
+ Viewed: 'VIEWED',
48
+ Signed: 'SIGNED',
49
+ Declined: 'DECLINED'
50
+ } as const;
51
+
52
+ export type PublicSignatureViewRecipientStatusEnum = typeof PublicSignatureViewRecipientStatusEnum[keyof typeof PublicSignatureViewRecipientStatusEnum];
53
+
54
+
@@ -85,7 +85,14 @@ export const SearchByAuditLogRequestActionEnum = {
85
85
  DelegatedGrantConsumed: 'DELEGATED_GRANT_CONSUMED',
86
86
  DelegatedGrantSubscriptionRevokedByAdmin: 'DELEGATED_GRANT_SUBSCRIPTION_REVOKED_BY_ADMIN',
87
87
  DelegatedBrowse: 'DELEGATED_BROWSE',
88
- AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED'
88
+ AdminMonitoringOptOutChanged: 'ADMIN_MONITORING_OPT_OUT_CHANGED',
89
+ SignatureEnvelopeCreated: 'SIGNATURE_ENVELOPE_CREATED',
90
+ SignatureEnvelopeSent: 'SIGNATURE_ENVELOPE_SENT',
91
+ SignatureDocumentSigned: 'SIGNATURE_DOCUMENT_SIGNED',
92
+ SignatureEnvelopeCompleted: 'SIGNATURE_ENVELOPE_COMPLETED',
93
+ SignatureEnvelopeDeclined: 'SIGNATURE_ENVELOPE_DECLINED',
94
+ SignatureEnvelopeCancelled: 'SIGNATURE_ENVELOPE_CANCELLED',
95
+ SignatureEnvelopeExpired: 'SIGNATURE_ENVELOPE_EXPIRED'
89
96
  } as const;
90
97
 
91
98
  export type SearchByAuditLogRequestActionEnum = typeof SearchByAuditLogRequestActionEnum[keyof typeof SearchByAuditLogRequestActionEnum];
@@ -0,0 +1,25 @@
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
+
15
+
16
+
17
+ export interface SignatureArchiveDTO {
18
+ 'pdfaDocId'?: string;
19
+ 'flavor'?: string;
20
+ 'compliant'?: boolean;
21
+ 'status'?: string;
22
+ 'report'?: string;
23
+ 'createdAt'?: string;
24
+ }
25
+
@@ -0,0 +1,45 @@
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
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { SignatureRecipientDTO } from './signature-recipient-dto';
19
+
20
+ export interface SignatureEnvelopeDTO {
21
+ 'id'?: string;
22
+ 'title'?: string;
23
+ 'message'?: string;
24
+ 'sourceDocId'?: string;
25
+ 'signedDocId'?: string;
26
+ 'status'?: SignatureEnvelopeDTOStatusEnum;
27
+ 'initiatorEmail'?: string;
28
+ 'createdAt'?: string;
29
+ 'completedAt'?: string;
30
+ 'expiresAt'?: string;
31
+ 'recipients'?: Array<SignatureRecipientDTO>;
32
+ }
33
+
34
+ export const SignatureEnvelopeDTOStatusEnum = {
35
+ Draft: 'DRAFT',
36
+ Sent: 'SENT',
37
+ Completed: 'COMPLETED',
38
+ Declined: 'DECLINED',
39
+ Cancelled: 'CANCELLED',
40
+ Expired: 'EXPIRED'
41
+ } as const;
42
+
43
+ export type SignatureEnvelopeDTOStatusEnum = typeof SignatureEnvelopeDTOStatusEnum[keyof typeof SignatureEnvelopeDTOStatusEnum];
44
+
45
+
@@ -0,0 +1,24 @@
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
+
15
+
16
+
17
+ export interface SignatureFieldPlacement {
18
+ 'page': number;
19
+ 'x': number;
20
+ 'y': number;
21
+ 'w': number;
22
+ 'h': number;
23
+ }
24
+
@@ -0,0 +1,38 @@
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
+
15
+
16
+
17
+ export interface SignatureRecipientDTO {
18
+ 'id'?: string;
19
+ 'userId'?: string;
20
+ 'name'?: string;
21
+ 'email'?: string;
22
+ 'orderIndex'?: number;
23
+ 'status'?: SignatureRecipientDTOStatusEnum;
24
+ 'viewedAt'?: string;
25
+ 'signedAt'?: string;
26
+ 'declineReason'?: string;
27
+ }
28
+
29
+ export const SignatureRecipientDTOStatusEnum = {
30
+ Pending: 'PENDING',
31
+ Viewed: 'VIEWED',
32
+ Signed: 'SIGNED',
33
+ Declined: 'DECLINED'
34
+ } as const;
35
+
36
+ export type SignatureRecipientDTOStatusEnum = typeof SignatureRecipientDTOStatusEnum[keyof typeof SignatureRecipientDTOStatusEnum];
37
+
38
+
@@ -0,0 +1,26 @@
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
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { SignatureFieldPlacement } from './signature-field-placement';
19
+
20
+ export interface SignatureRecipientInput {
21
+ 'userId'?: string;
22
+ 'name'?: string;
23
+ 'email': string;
24
+ 'field': SignatureFieldPlacement;
25
+ }
26
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfilz-sdk/typescript-ee",
3
- "version": "1.4.4",
3
+ "version": "1.5.1",
4
4
  "description": "OpenAPI client for @openfilz-sdk/typescript-ee",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {