@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,300 @@
1
+ # DigitalSignatureApi
2
+
3
+ All URIs are relative to *http://localhost:8081*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**archive**](#archive) | **GET** /api/v1/signatures/{id}/archive | Get the PDF/A archive + veraPDF compliance for a completed envelope|
8
+ |[**cancel**](#cancel) | **POST** /api/v1/signatures/{id}/cancel | Cancel a non-terminal envelope|
9
+ |[**create**](#create) | **POST** /api/v1/signatures | Create and send a signature envelope|
10
+ |[**get1**](#get1) | **GET** /api/v1/signatures/{id} | Get a single envelope I sent|
11
+ |[**listSent**](#listsent) | **GET** /api/v1/signatures | List envelopes I sent for signature|
12
+ |[**listToSign**](#listtosign) | **GET** /api/v1/signatures/to-sign | List documents waiting for my signature|
13
+
14
+ # **archive**
15
+ > SignatureArchiveDTO archive()
16
+
17
+
18
+ ### Example
19
+
20
+ ```typescript
21
+ import {
22
+ DigitalSignatureApi,
23
+ Configuration
24
+ } from '@openfilz-sdk/typescript-ee';
25
+
26
+ const configuration = new Configuration();
27
+ const apiInstance = new DigitalSignatureApi(configuration);
28
+
29
+ let id: string; // (default to undefined)
30
+
31
+ const { status, data } = await apiInstance.archive(
32
+ id
33
+ );
34
+ ```
35
+
36
+ ### Parameters
37
+
38
+ |Name | Type | Description | Notes|
39
+ |------------- | ------------- | ------------- | -------------|
40
+ | **id** | [**string**] | | defaults to undefined|
41
+
42
+
43
+ ### Return type
44
+
45
+ **SignatureArchiveDTO**
46
+
47
+ ### Authorization
48
+
49
+ [keycloak_auth](../README.md#keycloak_auth)
50
+
51
+ ### HTTP request headers
52
+
53
+ - **Content-Type**: Not defined
54
+ - **Accept**: application/json
55
+
56
+
57
+ ### HTTP response details
58
+ | Status code | Description | Response headers |
59
+ |-------------|-------------|------------------|
60
+ |**200** | OK | - |
61
+
62
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
63
+
64
+ # **cancel**
65
+ > SignatureEnvelopeDTO cancel()
66
+
67
+
68
+ ### Example
69
+
70
+ ```typescript
71
+ import {
72
+ DigitalSignatureApi,
73
+ Configuration
74
+ } from '@openfilz-sdk/typescript-ee';
75
+
76
+ const configuration = new Configuration();
77
+ const apiInstance = new DigitalSignatureApi(configuration);
78
+
79
+ let id: string; // (default to undefined)
80
+
81
+ const { status, data } = await apiInstance.cancel(
82
+ id
83
+ );
84
+ ```
85
+
86
+ ### Parameters
87
+
88
+ |Name | Type | Description | Notes|
89
+ |------------- | ------------- | ------------- | -------------|
90
+ | **id** | [**string**] | | defaults to undefined|
91
+
92
+
93
+ ### Return type
94
+
95
+ **SignatureEnvelopeDTO**
96
+
97
+ ### Authorization
98
+
99
+ [keycloak_auth](../README.md#keycloak_auth)
100
+
101
+ ### HTTP request headers
102
+
103
+ - **Content-Type**: Not defined
104
+ - **Accept**: application/json
105
+
106
+
107
+ ### HTTP response details
108
+ | Status code | Description | Response headers |
109
+ |-------------|-------------|------------------|
110
+ |**200** | OK | - |
111
+
112
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
113
+
114
+ # **create**
115
+ > SignatureEnvelopeDTO create(createSignatureEnvelopeRequest)
116
+
117
+
118
+ ### Example
119
+
120
+ ```typescript
121
+ import {
122
+ DigitalSignatureApi,
123
+ Configuration,
124
+ CreateSignatureEnvelopeRequest
125
+ } from '@openfilz-sdk/typescript-ee';
126
+
127
+ const configuration = new Configuration();
128
+ const apiInstance = new DigitalSignatureApi(configuration);
129
+
130
+ let createSignatureEnvelopeRequest: CreateSignatureEnvelopeRequest; //
131
+
132
+ const { status, data } = await apiInstance.create(
133
+ createSignatureEnvelopeRequest
134
+ );
135
+ ```
136
+
137
+ ### Parameters
138
+
139
+ |Name | Type | Description | Notes|
140
+ |------------- | ------------- | ------------- | -------------|
141
+ | **createSignatureEnvelopeRequest** | **CreateSignatureEnvelopeRequest**| | |
142
+
143
+
144
+ ### Return type
145
+
146
+ **SignatureEnvelopeDTO**
147
+
148
+ ### Authorization
149
+
150
+ [keycloak_auth](../README.md#keycloak_auth)
151
+
152
+ ### HTTP request headers
153
+
154
+ - **Content-Type**: application/json
155
+ - **Accept**: application/json
156
+
157
+
158
+ ### HTTP response details
159
+ | Status code | Description | Response headers |
160
+ |-------------|-------------|------------------|
161
+ |**200** | OK | - |
162
+
163
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
164
+
165
+ # **get1**
166
+ > SignatureEnvelopeDTO get1()
167
+
168
+
169
+ ### Example
170
+
171
+ ```typescript
172
+ import {
173
+ DigitalSignatureApi,
174
+ Configuration
175
+ } from '@openfilz-sdk/typescript-ee';
176
+
177
+ const configuration = new Configuration();
178
+ const apiInstance = new DigitalSignatureApi(configuration);
179
+
180
+ let id: string; // (default to undefined)
181
+
182
+ const { status, data } = await apiInstance.get1(
183
+ id
184
+ );
185
+ ```
186
+
187
+ ### Parameters
188
+
189
+ |Name | Type | Description | Notes|
190
+ |------------- | ------------- | ------------- | -------------|
191
+ | **id** | [**string**] | | defaults to undefined|
192
+
193
+
194
+ ### Return type
195
+
196
+ **SignatureEnvelopeDTO**
197
+
198
+ ### Authorization
199
+
200
+ [keycloak_auth](../README.md#keycloak_auth)
201
+
202
+ ### HTTP request headers
203
+
204
+ - **Content-Type**: Not defined
205
+ - **Accept**: application/json
206
+
207
+
208
+ ### HTTP response details
209
+ | Status code | Description | Response headers |
210
+ |-------------|-------------|------------------|
211
+ |**200** | OK | - |
212
+
213
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
214
+
215
+ # **listSent**
216
+ > Array<SignatureEnvelopeDTO> listSent()
217
+
218
+
219
+ ### Example
220
+
221
+ ```typescript
222
+ import {
223
+ DigitalSignatureApi,
224
+ Configuration
225
+ } from '@openfilz-sdk/typescript-ee';
226
+
227
+ const configuration = new Configuration();
228
+ const apiInstance = new DigitalSignatureApi(configuration);
229
+
230
+ const { status, data } = await apiInstance.listSent();
231
+ ```
232
+
233
+ ### Parameters
234
+ This endpoint does not have any parameters.
235
+
236
+
237
+ ### Return type
238
+
239
+ **Array<SignatureEnvelopeDTO>**
240
+
241
+ ### Authorization
242
+
243
+ [keycloak_auth](../README.md#keycloak_auth)
244
+
245
+ ### HTTP request headers
246
+
247
+ - **Content-Type**: Not defined
248
+ - **Accept**: application/json
249
+
250
+
251
+ ### HTTP response details
252
+ | Status code | Description | Response headers |
253
+ |-------------|-------------|------------------|
254
+ |**200** | OK | - |
255
+
256
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
257
+
258
+ # **listToSign**
259
+ > Array<SignatureEnvelopeDTO> listToSign()
260
+
261
+
262
+ ### Example
263
+
264
+ ```typescript
265
+ import {
266
+ DigitalSignatureApi,
267
+ Configuration
268
+ } from '@openfilz-sdk/typescript-ee';
269
+
270
+ const configuration = new Configuration();
271
+ const apiInstance = new DigitalSignatureApi(configuration);
272
+
273
+ const { status, data } = await apiInstance.listToSign();
274
+ ```
275
+
276
+ ### Parameters
277
+ This endpoint does not have any parameters.
278
+
279
+
280
+ ### Return type
281
+
282
+ **Array<SignatureEnvelopeDTO>**
283
+
284
+ ### Authorization
285
+
286
+ [keycloak_auth](../README.md#keycloak_auth)
287
+
288
+ ### HTTP request headers
289
+
290
+ - **Content-Type**: Not defined
291
+ - **Accept**: application/json
292
+
293
+
294
+ ### HTTP response details
295
+ | Status code | Description | Response headers |
296
+ |-------------|-------------|------------------|
297
+ |**200** | OK | - |
298
+
299
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
300
+
@@ -0,0 +1,276 @@
1
+ # DigitalSignaturePublicApi
2
+
3
+ All URIs are relative to *http://localhost:8081*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**decline1**](#decline1) | **POST** /api/v1/public/signatures/decline | Decline to sign (voids the envelope)|
8
+ |[**document**](#document) | **GET** /api/v1/public/signatures/document | Stream the source PDF for signing|
9
+ |[**markViewed**](#markviewed) | **POST** /api/v1/public/signatures/viewed | Record that the recipient opened the document|
10
+ |[**sign**](#sign) | **POST** /api/v1/public/signatures/sign | Apply the recipient\&#39;s signature|
11
+ |[**view**](#view) | **GET** /api/v1/public/signatures | Resolve a signing token to its envelope view|
12
+
13
+ # **decline1**
14
+ > PublicSignatureView decline1()
15
+
16
+
17
+ ### Example
18
+
19
+ ```typescript
20
+ import {
21
+ DigitalSignaturePublicApi,
22
+ Configuration,
23
+ DeclineSignatureRequest
24
+ } from '@openfilz-sdk/typescript-ee';
25
+
26
+ const configuration = new Configuration();
27
+ const apiInstance = new DigitalSignaturePublicApi(configuration);
28
+
29
+ let token: string; // (default to undefined)
30
+ let declineSignatureRequest: DeclineSignatureRequest; // (optional)
31
+
32
+ const { status, data } = await apiInstance.decline1(
33
+ token,
34
+ declineSignatureRequest
35
+ );
36
+ ```
37
+
38
+ ### Parameters
39
+
40
+ |Name | Type | Description | Notes|
41
+ |------------- | ------------- | ------------- | -------------|
42
+ | **declineSignatureRequest** | **DeclineSignatureRequest**| | |
43
+ | **token** | [**string**] | | defaults to undefined|
44
+
45
+
46
+ ### Return type
47
+
48
+ **PublicSignatureView**
49
+
50
+ ### Authorization
51
+
52
+ [keycloak_auth](../README.md#keycloak_auth)
53
+
54
+ ### HTTP request headers
55
+
56
+ - **Content-Type**: application/json
57
+ - **Accept**: application/json
58
+
59
+
60
+ ### HTTP response details
61
+ | Status code | Description | Response headers |
62
+ |-------------|-------------|------------------|
63
+ |**200** | OK | - |
64
+
65
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
66
+
67
+ # **document**
68
+ > File document()
69
+
70
+
71
+ ### Example
72
+
73
+ ```typescript
74
+ import {
75
+ DigitalSignaturePublicApi,
76
+ Configuration
77
+ } from '@openfilz-sdk/typescript-ee';
78
+
79
+ const configuration = new Configuration();
80
+ const apiInstance = new DigitalSignaturePublicApi(configuration);
81
+
82
+ let token: string; // (default to undefined)
83
+
84
+ const { status, data } = await apiInstance.document(
85
+ token
86
+ );
87
+ ```
88
+
89
+ ### Parameters
90
+
91
+ |Name | Type | Description | Notes|
92
+ |------------- | ------------- | ------------- | -------------|
93
+ | **token** | [**string**] | | defaults to undefined|
94
+
95
+
96
+ ### Return type
97
+
98
+ **File**
99
+
100
+ ### Authorization
101
+
102
+ [keycloak_auth](../README.md#keycloak_auth)
103
+
104
+ ### HTTP request headers
105
+
106
+ - **Content-Type**: Not defined
107
+ - **Accept**: application/pdf
108
+
109
+
110
+ ### HTTP response details
111
+ | Status code | Description | Response headers |
112
+ |-------------|-------------|------------------|
113
+ |**200** | OK | - |
114
+
115
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
116
+
117
+ # **markViewed**
118
+ > PublicSignatureView markViewed()
119
+
120
+
121
+ ### Example
122
+
123
+ ```typescript
124
+ import {
125
+ DigitalSignaturePublicApi,
126
+ Configuration
127
+ } from '@openfilz-sdk/typescript-ee';
128
+
129
+ const configuration = new Configuration();
130
+ const apiInstance = new DigitalSignaturePublicApi(configuration);
131
+
132
+ let token: string; // (default to undefined)
133
+ let userAgent: string; // (optional) (default to undefined)
134
+
135
+ const { status, data } = await apiInstance.markViewed(
136
+ token,
137
+ userAgent
138
+ );
139
+ ```
140
+
141
+ ### Parameters
142
+
143
+ |Name | Type | Description | Notes|
144
+ |------------- | ------------- | ------------- | -------------|
145
+ | **token** | [**string**] | | defaults to undefined|
146
+ | **userAgent** | [**string**] | | (optional) defaults to undefined|
147
+
148
+
149
+ ### Return type
150
+
151
+ **PublicSignatureView**
152
+
153
+ ### Authorization
154
+
155
+ [keycloak_auth](../README.md#keycloak_auth)
156
+
157
+ ### HTTP request headers
158
+
159
+ - **Content-Type**: Not defined
160
+ - **Accept**: application/json
161
+
162
+
163
+ ### HTTP response details
164
+ | Status code | Description | Response headers |
165
+ |-------------|-------------|------------------|
166
+ |**200** | OK | - |
167
+
168
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
169
+
170
+ # **sign**
171
+ > PublicSignatureView sign(applySignatureRequest)
172
+
173
+
174
+ ### Example
175
+
176
+ ```typescript
177
+ import {
178
+ DigitalSignaturePublicApi,
179
+ Configuration,
180
+ ApplySignatureRequest
181
+ } from '@openfilz-sdk/typescript-ee';
182
+
183
+ const configuration = new Configuration();
184
+ const apiInstance = new DigitalSignaturePublicApi(configuration);
185
+
186
+ let token: string; // (default to undefined)
187
+ let applySignatureRequest: ApplySignatureRequest; //
188
+ let userAgent: string; // (optional) (default to undefined)
189
+
190
+ const { status, data } = await apiInstance.sign(
191
+ token,
192
+ applySignatureRequest,
193
+ userAgent
194
+ );
195
+ ```
196
+
197
+ ### Parameters
198
+
199
+ |Name | Type | Description | Notes|
200
+ |------------- | ------------- | ------------- | -------------|
201
+ | **applySignatureRequest** | **ApplySignatureRequest**| | |
202
+ | **token** | [**string**] | | defaults to undefined|
203
+ | **userAgent** | [**string**] | | (optional) defaults to undefined|
204
+
205
+
206
+ ### Return type
207
+
208
+ **PublicSignatureView**
209
+
210
+ ### Authorization
211
+
212
+ [keycloak_auth](../README.md#keycloak_auth)
213
+
214
+ ### HTTP request headers
215
+
216
+ - **Content-Type**: application/json
217
+ - **Accept**: application/json
218
+
219
+
220
+ ### HTTP response details
221
+ | Status code | Description | Response headers |
222
+ |-------------|-------------|------------------|
223
+ |**200** | OK | - |
224
+
225
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
226
+
227
+ # **view**
228
+ > PublicSignatureView view()
229
+
230
+
231
+ ### Example
232
+
233
+ ```typescript
234
+ import {
235
+ DigitalSignaturePublicApi,
236
+ Configuration
237
+ } from '@openfilz-sdk/typescript-ee';
238
+
239
+ const configuration = new Configuration();
240
+ const apiInstance = new DigitalSignaturePublicApi(configuration);
241
+
242
+ let token: string; // (default to undefined)
243
+
244
+ const { status, data } = await apiInstance.view(
245
+ token
246
+ );
247
+ ```
248
+
249
+ ### Parameters
250
+
251
+ |Name | Type | Description | Notes|
252
+ |------------- | ------------- | ------------- | -------------|
253
+ | **token** | [**string**] | | defaults to undefined|
254
+
255
+
256
+ ### Return type
257
+
258
+ **PublicSignatureView**
259
+
260
+ ### Authorization
261
+
262
+ [keycloak_auth](../README.md#keycloak_auth)
263
+
264
+ ### HTTP request headers
265
+
266
+ - **Content-Type**: Not defined
267
+ - **Accept**: application/json
268
+
269
+
270
+ ### HTTP response details
271
+ | Status code | Description | Response headers |
272
+ |-------------|-------------|------------------|
273
+ |**200** | OK | - |
274
+
275
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
276
+
@@ -0,0 +1,48 @@
1
+ # PublicSignatureView
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **envelopeTitle** | **string** | | [optional] [default to undefined]
9
+ **message** | **string** | | [optional] [default to undefined]
10
+ **initiatorEmail** | **string** | | [optional] [default to undefined]
11
+ **documentName** | **string** | | [optional] [default to undefined]
12
+ **recipientName** | **string** | | [optional] [default to undefined]
13
+ **recipientEmail** | **string** | | [optional] [default to undefined]
14
+ **envelopeStatus** | **string** | | [optional] [default to undefined]
15
+ **recipientStatus** | **string** | | [optional] [default to undefined]
16
+ **fieldPage** | **number** | | [optional] [default to undefined]
17
+ **fieldX** | **number** | | [optional] [default to undefined]
18
+ **fieldY** | **number** | | [optional] [default to undefined]
19
+ **fieldW** | **number** | | [optional] [default to undefined]
20
+ **fieldH** | **number** | | [optional] [default to undefined]
21
+ **signatureImage** | **string** | | [optional] [default to undefined]
22
+ **signatureTyped** | **string** | | [optional] [default to undefined]
23
+
24
+ ## Example
25
+
26
+ ```typescript
27
+ import { PublicSignatureView } from '@openfilz-sdk/typescript-ee';
28
+
29
+ const instance: PublicSignatureView = {
30
+ envelopeTitle,
31
+ message,
32
+ initiatorEmail,
33
+ documentName,
34
+ recipientName,
35
+ recipientEmail,
36
+ envelopeStatus,
37
+ recipientStatus,
38
+ fieldPage,
39
+ fieldX,
40
+ fieldY,
41
+ fieldW,
42
+ fieldH,
43
+ signatureImage,
44
+ signatureTyped,
45
+ };
46
+ ```
47
+
48
+ [[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,30 @@
1
+ # SignatureArchiveDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **pdfaDocId** | **string** | | [optional] [default to undefined]
9
+ **flavor** | **string** | | [optional] [default to undefined]
10
+ **compliant** | **boolean** | | [optional] [default to undefined]
11
+ **status** | **string** | | [optional] [default to undefined]
12
+ **report** | **string** | | [optional] [default to undefined]
13
+ **createdAt** | **string** | | [optional] [default to undefined]
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import { SignatureArchiveDTO } from '@openfilz-sdk/typescript-ee';
19
+
20
+ const instance: SignatureArchiveDTO = {
21
+ pdfaDocId,
22
+ flavor,
23
+ compliant,
24
+ status,
25
+ report,
26
+ createdAt,
27
+ };
28
+ ```
29
+
30
+ [[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,40 @@
1
+ # SignatureEnvelopeDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | | [optional] [default to undefined]
9
+ **title** | **string** | | [optional] [default to undefined]
10
+ **message** | **string** | | [optional] [default to undefined]
11
+ **sourceDocId** | **string** | | [optional] [default to undefined]
12
+ **signedDocId** | **string** | | [optional] [default to undefined]
13
+ **status** | **string** | | [optional] [default to undefined]
14
+ **initiatorEmail** | **string** | | [optional] [default to undefined]
15
+ **createdAt** | **string** | | [optional] [default to undefined]
16
+ **completedAt** | **string** | | [optional] [default to undefined]
17
+ **expiresAt** | **string** | | [optional] [default to undefined]
18
+ **recipients** | [**Array&lt;SignatureRecipientDTO&gt;**](SignatureRecipientDTO.md) | | [optional] [default to undefined]
19
+
20
+ ## Example
21
+
22
+ ```typescript
23
+ import { SignatureEnvelopeDTO } from '@openfilz-sdk/typescript-ee';
24
+
25
+ const instance: SignatureEnvelopeDTO = {
26
+ id,
27
+ title,
28
+ message,
29
+ sourceDocId,
30
+ signedDocId,
31
+ status,
32
+ initiatorEmail,
33
+ createdAt,
34
+ completedAt,
35
+ expiresAt,
36
+ recipients,
37
+ };
38
+ ```
39
+
40
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)