@openfilz-sdk/typescript-ee 1.8.0 → 1.8.2

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 (198) hide show
  1. package/.openapi-generator/FILES +45 -4
  2. package/.openapi-generator/openfilz-api-generate-typescript-sdk.sha256 +1 -1
  3. package/README.md +46 -13
  4. package/api/aisettings-api.ts +77 -0
  5. package/api/esign-api.ts +719 -0
  6. package/api/esign-enterprise-api.ts +286 -0
  7. package/api/{digital-signature-public-api.ts → esign-public-api.ts} +183 -24
  8. package/api/{digital-signature-api.ts → esign-templates-api.ts} +137 -113
  9. package/api.ts +4 -2
  10. package/dist/api/aisettings-api.d.ts +34 -0
  11. package/dist/api/aisettings-api.js +70 -0
  12. package/dist/api/esign-api.d.ts +334 -0
  13. package/dist/api/esign-api.js +693 -0
  14. package/dist/api/esign-enterprise-api.d.ts +138 -0
  15. package/dist/api/esign-enterprise-api.js +278 -0
  16. package/dist/{esm/api/digital-signature-public-api.d.ts → api/esign-public-api.d.ts} +81 -12
  17. package/dist/api/{digital-signature-public-api.js → esign-public-api.js} +178 -29
  18. package/dist/api/esign-templates-api.d.ts +234 -0
  19. package/dist/api/{digital-signature-api.js → esign-templates-api.js} +137 -115
  20. package/dist/api.d.ts +4 -2
  21. package/dist/api.js +4 -2
  22. package/dist/esm/api/aisettings-api.d.ts +34 -0
  23. package/dist/esm/api/aisettings-api.js +70 -0
  24. package/dist/esm/api/esign-api.d.ts +334 -0
  25. package/dist/esm/api/esign-api.js +686 -0
  26. package/dist/esm/api/esign-enterprise-api.d.ts +138 -0
  27. package/dist/esm/api/esign-enterprise-api.js +271 -0
  28. package/dist/{api/digital-signature-public-api.d.ts → esm/api/esign-public-api.d.ts} +81 -12
  29. package/dist/esm/api/{digital-signature-public-api.js → esign-public-api.js} +173 -24
  30. package/dist/esm/api/esign-templates-api.d.ts +234 -0
  31. package/dist/esm/api/{digital-signature-api.js → esign-templates-api.js} +132 -110
  32. package/dist/esm/api.d.ts +4 -2
  33. package/dist/esm/api.js +4 -2
  34. package/dist/esm/models/ai-models-response.d.ts +41 -0
  35. package/dist/esm/models/ai-models-response.js +23 -0
  36. package/dist/esm/models/apply-signature-request.d.ts +3 -0
  37. package/dist/esm/models/bulk-row-result.d.ts +17 -0
  38. package/dist/esm/models/bulk-row-result.js +14 -0
  39. package/dist/esm/models/bulk-row.d.ts +19 -0
  40. package/dist/esm/models/bulk-row.js +14 -0
  41. package/dist/esm/models/bulk-send-request.d.ts +19 -0
  42. package/dist/esm/models/bulk-send-request.js +14 -0
  43. package/dist/esm/models/bulk-send-response.d.ts +18 -0
  44. package/dist/esm/models/bulk-send-response.js +14 -0
  45. package/dist/esm/models/create-signature-envelope-request.d.ts +5 -0
  46. package/dist/esm/models/embed-url-response.d.ts +16 -0
  47. package/dist/esm/models/embed-url-response.js +14 -0
  48. package/dist/esm/models/enriched-audit-log.d.ts +3 -0
  49. package/dist/esm/models/enriched-audit-log.js +3 -0
  50. package/dist/esm/models/index.d.ts +18 -0
  51. package/dist/esm/models/index.js +18 -0
  52. package/dist/esm/models/instantiate-template-request.d.ts +22 -0
  53. package/dist/esm/models/instantiate-template-request.js +14 -0
  54. package/dist/esm/models/list-ai-models-request.d.ts +32 -0
  55. package/dist/esm/models/list-ai-models-request.js +19 -0
  56. package/dist/esm/models/public-signature-view.d.ts +13 -0
  57. package/dist/esm/models/public-signature-view.js +5 -0
  58. package/dist/esm/models/role-binding.d.ts +19 -0
  59. package/dist/esm/models/role-binding.js +14 -0
  60. package/dist/esm/models/search-by-audit-log-request.d.ts +3 -0
  61. package/dist/esm/models/search-by-audit-log-request.js +3 -0
  62. package/dist/esm/models/settings.d.ts +3 -0
  63. package/dist/esm/models/signature-envelope-dto.d.ts +6 -0
  64. package/dist/esm/models/signature-event-dto.d.ts +33 -0
  65. package/dist/esm/models/signature-event-dto.js +26 -0
  66. package/dist/esm/models/signature-field-dto.d.ts +44 -0
  67. package/dist/esm/models/signature-field-dto.js +27 -0
  68. package/dist/esm/models/signature-field-input.d.ts +39 -0
  69. package/dist/esm/models/signature-field-input.js +27 -0
  70. package/dist/esm/models/signature-field-value.d.ts +16 -0
  71. package/dist/esm/models/signature-field-value.js +14 -0
  72. package/dist/esm/models/signature-recipient-dto.d.ts +16 -0
  73. package/dist/esm/models/signature-recipient-dto.js +9 -0
  74. package/dist/esm/models/signature-recipient-input.d.ts +19 -1
  75. package/dist/esm/models/signature-recipient-input.js +9 -1
  76. package/dist/esm/models/signature-template-dto.d.ts +27 -0
  77. package/dist/esm/models/signature-template-dto.js +14 -0
  78. package/dist/esm/models/signature-template-field.d.ts +40 -0
  79. package/dist/esm/models/signature-template-field.js +27 -0
  80. package/dist/esm/models/signature-template-request.d.ts +23 -0
  81. package/dist/esm/models/signature-template-request.js +14 -0
  82. package/dist/esm/models/signature-template-role.d.ts +28 -0
  83. package/dist/esm/models/signature-template-role.js +22 -0
  84. package/dist/esm/models/verify-otp-request.d.ts +14 -0
  85. package/dist/esm/models/verify-otp-request.js +14 -0
  86. package/dist/models/ai-models-response.d.ts +41 -0
  87. package/dist/models/ai-models-response.js +26 -0
  88. package/dist/models/apply-signature-request.d.ts +3 -0
  89. package/dist/models/bulk-row-result.d.ts +17 -0
  90. package/dist/models/bulk-row-result.js +15 -0
  91. package/dist/models/bulk-row.d.ts +19 -0
  92. package/dist/models/bulk-row.js +15 -0
  93. package/dist/models/bulk-send-request.d.ts +19 -0
  94. package/dist/models/bulk-send-request.js +15 -0
  95. package/dist/models/bulk-send-response.d.ts +18 -0
  96. package/dist/models/bulk-send-response.js +15 -0
  97. package/dist/models/create-signature-envelope-request.d.ts +5 -0
  98. package/dist/models/embed-url-response.d.ts +16 -0
  99. package/dist/models/embed-url-response.js +15 -0
  100. package/dist/models/enriched-audit-log.d.ts +3 -0
  101. package/dist/models/enriched-audit-log.js +3 -0
  102. package/dist/models/index.d.ts +18 -0
  103. package/dist/models/index.js +18 -0
  104. package/dist/models/instantiate-template-request.d.ts +22 -0
  105. package/dist/models/instantiate-template-request.js +15 -0
  106. package/dist/models/list-ai-models-request.d.ts +32 -0
  107. package/dist/models/list-ai-models-request.js +22 -0
  108. package/dist/models/public-signature-view.d.ts +13 -0
  109. package/dist/models/public-signature-view.js +6 -1
  110. package/dist/models/role-binding.d.ts +19 -0
  111. package/dist/models/role-binding.js +15 -0
  112. package/dist/models/search-by-audit-log-request.d.ts +3 -0
  113. package/dist/models/search-by-audit-log-request.js +3 -0
  114. package/dist/models/settings.d.ts +3 -0
  115. package/dist/models/signature-envelope-dto.d.ts +6 -0
  116. package/dist/models/signature-event-dto.d.ts +33 -0
  117. package/dist/models/signature-event-dto.js +29 -0
  118. package/dist/models/signature-field-dto.d.ts +44 -0
  119. package/dist/models/signature-field-dto.js +30 -0
  120. package/dist/models/signature-field-input.d.ts +39 -0
  121. package/dist/models/signature-field-input.js +30 -0
  122. package/dist/models/signature-field-value.d.ts +16 -0
  123. package/dist/models/signature-field-value.js +15 -0
  124. package/dist/models/signature-recipient-dto.d.ts +16 -0
  125. package/dist/models/signature-recipient-dto.js +10 -1
  126. package/dist/models/signature-recipient-input.d.ts +19 -1
  127. package/dist/models/signature-recipient-input.js +10 -0
  128. package/dist/models/signature-template-dto.d.ts +27 -0
  129. package/dist/models/signature-template-dto.js +15 -0
  130. package/dist/models/signature-template-field.d.ts +40 -0
  131. package/dist/models/signature-template-field.js +30 -0
  132. package/dist/models/signature-template-request.d.ts +23 -0
  133. package/dist/models/signature-template-request.js +15 -0
  134. package/dist/models/signature-template-role.d.ts +28 -0
  135. package/dist/models/signature-template-role.js +25 -0
  136. package/dist/models/verify-otp-request.d.ts +14 -0
  137. package/dist/models/verify-otp-request.js +15 -0
  138. package/docs/AISettingsApi.md +53 -0
  139. package/docs/AiModelsResponse.md +26 -0
  140. package/docs/ApplySignatureRequest.md +4 -0
  141. package/docs/BulkRow.md +28 -0
  142. package/docs/BulkRowResult.md +26 -0
  143. package/docs/BulkSendRequest.md +28 -0
  144. package/docs/BulkSendResponse.md +26 -0
  145. package/docs/CreateSignatureEnvelopeRequest.md +10 -0
  146. package/docs/ESignApi.md +463 -0
  147. package/docs/ESignEnterpriseApi.md +164 -0
  148. package/docs/{DigitalSignaturePublicApi.md → ESignPublicApi.md} +118 -12
  149. package/docs/{DigitalSignatureApi.md → ESignTemplatesApi.md} +76 -61
  150. package/docs/EmbedUrlResponse.md +24 -0
  151. package/docs/InstantiateTemplateRequest.md +34 -0
  152. package/docs/ListAiModelsRequest.md +24 -0
  153. package/docs/PublicSignatureView.md +12 -0
  154. package/docs/RoleBinding.md +30 -0
  155. package/docs/Settings.md +6 -0
  156. package/docs/SignatureEnvelopeDTO.md +12 -0
  157. package/docs/SignatureEventDTO.md +30 -0
  158. package/docs/SignatureFieldDTO.md +46 -0
  159. package/docs/SignatureFieldInput.md +36 -0
  160. package/docs/SignatureFieldValue.md +24 -0
  161. package/docs/SignatureRecipientDTO.md +8 -0
  162. package/docs/SignatureRecipientInput.md +13 -1
  163. package/docs/SignatureTemplateDTO.md +42 -0
  164. package/docs/SignatureTemplateField.md +38 -0
  165. package/docs/SignatureTemplateRequest.md +34 -0
  166. package/docs/SignatureTemplateRole.md +26 -0
  167. package/docs/VerifyOtpRequest.md +20 -0
  168. package/models/ai-models-response.ts +51 -0
  169. package/models/apply-signature-request.ts +5 -0
  170. package/models/bulk-row-result.ts +23 -0
  171. package/models/bulk-row.ts +27 -0
  172. package/models/bulk-send-request.ts +27 -0
  173. package/models/bulk-send-response.ts +26 -0
  174. package/models/create-signature-envelope-request.ts +5 -0
  175. package/models/embed-url-response.ts +22 -0
  176. package/models/enriched-audit-log.ts +3 -0
  177. package/models/index.ts +18 -0
  178. package/models/instantiate-template-request.ts +30 -0
  179. package/models/list-ai-models-request.ts +41 -0
  180. package/models/public-signature-view.ts +16 -0
  181. package/models/role-binding.ts +25 -0
  182. package/models/search-by-audit-log-request.ts +3 -0
  183. package/models/settings.ts +3 -0
  184. package/models/signature-envelope-dto.ts +6 -0
  185. package/models/signature-event-dto.ts +42 -0
  186. package/models/signature-field-dto.ts +51 -0
  187. package/models/signature-field-input.ts +46 -0
  188. package/models/signature-field-value.ts +22 -0
  189. package/models/signature-recipient-dto.ts +20 -0
  190. package/models/signature-recipient-input.ts +25 -1
  191. package/models/signature-template-dto.ts +37 -0
  192. package/models/signature-template-field.ts +47 -0
  193. package/models/signature-template-request.ts +33 -0
  194. package/models/signature-template-role.ts +38 -0
  195. package/models/verify-otp-request.ts +20 -0
  196. package/package.json +1 -1
  197. package/dist/api/digital-signature-api.d.ts +0 -221
  198. package/dist/esm/api/digital-signature-api.d.ts +0 -221
@@ -10,6 +10,11 @@ Name | Type | Description | Notes
10
10
  **message** | **string** | | [optional] [default to undefined]
11
11
  **recipients** | [**Array<SignatureRecipientInput>**](SignatureRecipientInput.md) | | [default to undefined]
12
12
  **expiresInDays** | **number** | | [optional] [default to undefined]
13
+ **sequential** | **boolean** | | [optional] [default to undefined]
14
+ **reminderDays** | **number** | | [optional] [default to undefined]
15
+ **locale** | **string** | | [optional] [default to undefined]
16
+ **send** | **boolean** | | [optional] [default to undefined]
17
+ **templateId** | **string** | | [optional] [default to undefined]
13
18
 
14
19
  ## Example
15
20
 
@@ -22,6 +27,11 @@ const instance: CreateSignatureEnvelopeRequest = {
22
27
  message,
23
28
  recipients,
24
29
  expiresInDays,
30
+ sequential,
31
+ reminderDays,
32
+ locale,
33
+ send,
34
+ templateId,
25
35
  };
26
36
  ```
27
37
 
@@ -0,0 +1,463 @@
1
+ # ESignApi
2
+
3
+ All URIs are relative to *http://localhost:8081*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**cancel**](#cancel) | **POST** /api/v1/signatures/{id}/cancel | Cancel a non-terminal envelope|
8
+ |[**create**](#create) | **POST** /api/v1/signatures | Create an envelope (sent immediately unless send=false)|
9
+ |[**events**](#events) | **GET** /api/v1/signatures/{id}/events | Audit trail of one of my envelopes|
10
+ |[**get2**](#get2) | **GET** /api/v1/signatures/{id} | Get one of my envelopes (recipients + fields)|
11
+ |[**listSent**](#listsent) | **GET** /api/v1/signatures | List envelopes I sent for signature|
12
+ |[**listToSign**](#listtosign) | **GET** /api/v1/signatures/to-sign | List envelopes waiting for my signature|
13
+ |[**resend**](#resend) | **POST** /api/v1/signatures/{id}/recipients/{recipientId}/resend | Resend the signing link to a recipient (new token, previous one revoked)|
14
+ |[**send**](#send) | **POST** /api/v1/signatures/{id}/send | Send a DRAFT envelope|
15
+ |[**signedDocument**](#signeddocument) | **GET** /api/v1/signatures/{id}/signed-document | Download the sealed PDF of a completed envelope|
16
+
17
+ # **cancel**
18
+ > SignatureEnvelopeDTO cancel()
19
+
20
+
21
+ ### Example
22
+
23
+ ```typescript
24
+ import {
25
+ ESignApi,
26
+ Configuration
27
+ } from '@openfilz-sdk/typescript-ee';
28
+
29
+ const configuration = new Configuration();
30
+ const apiInstance = new ESignApi(configuration);
31
+
32
+ let id: string; // (default to undefined)
33
+
34
+ const { status, data } = await apiInstance.cancel(
35
+ id
36
+ );
37
+ ```
38
+
39
+ ### Parameters
40
+
41
+ |Name | Type | Description | Notes|
42
+ |------------- | ------------- | ------------- | -------------|
43
+ | **id** | [**string**] | | defaults to undefined|
44
+
45
+
46
+ ### Return type
47
+
48
+ **SignatureEnvelopeDTO**
49
+
50
+ ### Authorization
51
+
52
+ [keycloak_auth](../README.md#keycloak_auth)
53
+
54
+ ### HTTP request headers
55
+
56
+ - **Content-Type**: Not defined
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
+ # **create**
68
+ > SignatureEnvelopeDTO create(createSignatureEnvelopeRequest)
69
+
70
+
71
+ ### Example
72
+
73
+ ```typescript
74
+ import {
75
+ ESignApi,
76
+ Configuration,
77
+ CreateSignatureEnvelopeRequest
78
+ } from '@openfilz-sdk/typescript-ee';
79
+
80
+ const configuration = new Configuration();
81
+ const apiInstance = new ESignApi(configuration);
82
+
83
+ let createSignatureEnvelopeRequest: CreateSignatureEnvelopeRequest; //
84
+
85
+ const { status, data } = await apiInstance.create(
86
+ createSignatureEnvelopeRequest
87
+ );
88
+ ```
89
+
90
+ ### Parameters
91
+
92
+ |Name | Type | Description | Notes|
93
+ |------------- | ------------- | ------------- | -------------|
94
+ | **createSignatureEnvelopeRequest** | **CreateSignatureEnvelopeRequest**| | |
95
+
96
+
97
+ ### Return type
98
+
99
+ **SignatureEnvelopeDTO**
100
+
101
+ ### Authorization
102
+
103
+ [keycloak_auth](../README.md#keycloak_auth)
104
+
105
+ ### HTTP request headers
106
+
107
+ - **Content-Type**: application/json
108
+ - **Accept**: application/json
109
+
110
+
111
+ ### HTTP response details
112
+ | Status code | Description | Response headers |
113
+ |-------------|-------------|------------------|
114
+ |**200** | OK | - |
115
+
116
+ [[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)
117
+
118
+ # **events**
119
+ > Array<SignatureEventDTO> events()
120
+
121
+
122
+ ### Example
123
+
124
+ ```typescript
125
+ import {
126
+ ESignApi,
127
+ Configuration
128
+ } from '@openfilz-sdk/typescript-ee';
129
+
130
+ const configuration = new Configuration();
131
+ const apiInstance = new ESignApi(configuration);
132
+
133
+ let id: string; // (default to undefined)
134
+
135
+ const { status, data } = await apiInstance.events(
136
+ id
137
+ );
138
+ ```
139
+
140
+ ### Parameters
141
+
142
+ |Name | Type | Description | Notes|
143
+ |------------- | ------------- | ------------- | -------------|
144
+ | **id** | [**string**] | | defaults to undefined|
145
+
146
+
147
+ ### Return type
148
+
149
+ **Array<SignatureEventDTO>**
150
+
151
+ ### Authorization
152
+
153
+ [keycloak_auth](../README.md#keycloak_auth)
154
+
155
+ ### HTTP request headers
156
+
157
+ - **Content-Type**: Not defined
158
+ - **Accept**: application/json
159
+
160
+
161
+ ### HTTP response details
162
+ | Status code | Description | Response headers |
163
+ |-------------|-------------|------------------|
164
+ |**200** | OK | - |
165
+
166
+ [[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)
167
+
168
+ # **get2**
169
+ > SignatureEnvelopeDTO get2()
170
+
171
+
172
+ ### Example
173
+
174
+ ```typescript
175
+ import {
176
+ ESignApi,
177
+ Configuration
178
+ } from '@openfilz-sdk/typescript-ee';
179
+
180
+ const configuration = new Configuration();
181
+ const apiInstance = new ESignApi(configuration);
182
+
183
+ let id: string; // (default to undefined)
184
+
185
+ const { status, data } = await apiInstance.get2(
186
+ id
187
+ );
188
+ ```
189
+
190
+ ### Parameters
191
+
192
+ |Name | Type | Description | Notes|
193
+ |------------- | ------------- | ------------- | -------------|
194
+ | **id** | [**string**] | | defaults to undefined|
195
+
196
+
197
+ ### Return type
198
+
199
+ **SignatureEnvelopeDTO**
200
+
201
+ ### Authorization
202
+
203
+ [keycloak_auth](../README.md#keycloak_auth)
204
+
205
+ ### HTTP request headers
206
+
207
+ - **Content-Type**: Not defined
208
+ - **Accept**: application/json
209
+
210
+
211
+ ### HTTP response details
212
+ | Status code | Description | Response headers |
213
+ |-------------|-------------|------------------|
214
+ |**200** | OK | - |
215
+
216
+ [[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)
217
+
218
+ # **listSent**
219
+ > Array<SignatureEnvelopeDTO> listSent()
220
+
221
+
222
+ ### Example
223
+
224
+ ```typescript
225
+ import {
226
+ ESignApi,
227
+ Configuration
228
+ } from '@openfilz-sdk/typescript-ee';
229
+
230
+ const configuration = new Configuration();
231
+ const apiInstance = new ESignApi(configuration);
232
+
233
+ let status: 'DRAFT' | 'SENT' | 'COMPLETED' | 'DECLINED' | 'CANCELLED' | 'EXPIRED'; // (optional) (default to undefined)
234
+
235
+ const { status, data } = await apiInstance.listSent(
236
+ status
237
+ );
238
+ ```
239
+
240
+ ### Parameters
241
+
242
+ |Name | Type | Description | Notes|
243
+ |------------- | ------------- | ------------- | -------------|
244
+ | **status** | [**&#39;DRAFT&#39; | &#39;SENT&#39; | &#39;COMPLETED&#39; | &#39;DECLINED&#39; | &#39;CANCELLED&#39; | &#39;EXPIRED&#39;**]**Array<&#39;DRAFT&#39; &#124; &#39;SENT&#39; &#124; &#39;COMPLETED&#39; &#124; &#39;DECLINED&#39; &#124; &#39;CANCELLED&#39; &#124; &#39;EXPIRED&#39;>** | | (optional) defaults to undefined|
245
+
246
+
247
+ ### Return type
248
+
249
+ **Array<SignatureEnvelopeDTO>**
250
+
251
+ ### Authorization
252
+
253
+ [keycloak_auth](../README.md#keycloak_auth)
254
+
255
+ ### HTTP request headers
256
+
257
+ - **Content-Type**: Not defined
258
+ - **Accept**: application/json
259
+
260
+
261
+ ### HTTP response details
262
+ | Status code | Description | Response headers |
263
+ |-------------|-------------|------------------|
264
+ |**200** | OK | - |
265
+
266
+ [[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)
267
+
268
+ # **listToSign**
269
+ > Array<SignatureEnvelopeDTO> listToSign()
270
+
271
+
272
+ ### Example
273
+
274
+ ```typescript
275
+ import {
276
+ ESignApi,
277
+ Configuration
278
+ } from '@openfilz-sdk/typescript-ee';
279
+
280
+ const configuration = new Configuration();
281
+ const apiInstance = new ESignApi(configuration);
282
+
283
+ const { status, data } = await apiInstance.listToSign();
284
+ ```
285
+
286
+ ### Parameters
287
+ This endpoint does not have any parameters.
288
+
289
+
290
+ ### Return type
291
+
292
+ **Array<SignatureEnvelopeDTO>**
293
+
294
+ ### Authorization
295
+
296
+ [keycloak_auth](../README.md#keycloak_auth)
297
+
298
+ ### HTTP request headers
299
+
300
+ - **Content-Type**: Not defined
301
+ - **Accept**: application/json
302
+
303
+
304
+ ### HTTP response details
305
+ | Status code | Description | Response headers |
306
+ |-------------|-------------|------------------|
307
+ |**200** | OK | - |
308
+
309
+ [[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)
310
+
311
+ # **resend**
312
+ > SignatureEnvelopeDTO resend()
313
+
314
+
315
+ ### Example
316
+
317
+ ```typescript
318
+ import {
319
+ ESignApi,
320
+ Configuration
321
+ } from '@openfilz-sdk/typescript-ee';
322
+
323
+ const configuration = new Configuration();
324
+ const apiInstance = new ESignApi(configuration);
325
+
326
+ let id: string; // (default to undefined)
327
+ let recipientId: string; // (default to undefined)
328
+
329
+ const { status, data } = await apiInstance.resend(
330
+ id,
331
+ recipientId
332
+ );
333
+ ```
334
+
335
+ ### Parameters
336
+
337
+ |Name | Type | Description | Notes|
338
+ |------------- | ------------- | ------------- | -------------|
339
+ | **id** | [**string**] | | defaults to undefined|
340
+ | **recipientId** | [**string**] | | defaults to undefined|
341
+
342
+
343
+ ### Return type
344
+
345
+ **SignatureEnvelopeDTO**
346
+
347
+ ### Authorization
348
+
349
+ [keycloak_auth](../README.md#keycloak_auth)
350
+
351
+ ### HTTP request headers
352
+
353
+ - **Content-Type**: Not defined
354
+ - **Accept**: application/json
355
+
356
+
357
+ ### HTTP response details
358
+ | Status code | Description | Response headers |
359
+ |-------------|-------------|------------------|
360
+ |**200** | OK | - |
361
+
362
+ [[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)
363
+
364
+ # **send**
365
+ > SignatureEnvelopeDTO send()
366
+
367
+
368
+ ### Example
369
+
370
+ ```typescript
371
+ import {
372
+ ESignApi,
373
+ Configuration
374
+ } from '@openfilz-sdk/typescript-ee';
375
+
376
+ const configuration = new Configuration();
377
+ const apiInstance = new ESignApi(configuration);
378
+
379
+ let id: string; // (default to undefined)
380
+
381
+ const { status, data } = await apiInstance.send(
382
+ id
383
+ );
384
+ ```
385
+
386
+ ### Parameters
387
+
388
+ |Name | Type | Description | Notes|
389
+ |------------- | ------------- | ------------- | -------------|
390
+ | **id** | [**string**] | | defaults to undefined|
391
+
392
+
393
+ ### Return type
394
+
395
+ **SignatureEnvelopeDTO**
396
+
397
+ ### Authorization
398
+
399
+ [keycloak_auth](../README.md#keycloak_auth)
400
+
401
+ ### HTTP request headers
402
+
403
+ - **Content-Type**: Not defined
404
+ - **Accept**: application/json
405
+
406
+
407
+ ### HTTP response details
408
+ | Status code | Description | Response headers |
409
+ |-------------|-------------|------------------|
410
+ |**200** | OK | - |
411
+
412
+ [[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)
413
+
414
+ # **signedDocument**
415
+ > File signedDocument()
416
+
417
+
418
+ ### Example
419
+
420
+ ```typescript
421
+ import {
422
+ ESignApi,
423
+ Configuration
424
+ } from '@openfilz-sdk/typescript-ee';
425
+
426
+ const configuration = new Configuration();
427
+ const apiInstance = new ESignApi(configuration);
428
+
429
+ let id: string; // (default to undefined)
430
+
431
+ const { status, data } = await apiInstance.signedDocument(
432
+ id
433
+ );
434
+ ```
435
+
436
+ ### Parameters
437
+
438
+ |Name | Type | Description | Notes|
439
+ |------------- | ------------- | ------------- | -------------|
440
+ | **id** | [**string**] | | defaults to undefined|
441
+
442
+
443
+ ### Return type
444
+
445
+ **File**
446
+
447
+ ### Authorization
448
+
449
+ [keycloak_auth](../README.md#keycloak_auth)
450
+
451
+ ### HTTP request headers
452
+
453
+ - **Content-Type**: Not defined
454
+ - **Accept**: application/pdf
455
+
456
+
457
+ ### HTTP response details
458
+ | Status code | Description | Response headers |
459
+ |-------------|-------------|------------------|
460
+ |**200** | OK | - |
461
+
462
+ [[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)
463
+
@@ -0,0 +1,164 @@
1
+ # ESignEnterpriseApi
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 | PDF/A-2b archive + veraPDF compliance for a completed envelope|
8
+ |[**bulk**](#bulk) | **POST** /api/v1/signatures/bulk | Create (and send) one envelope per row from a template|
9
+ |[**embedUrl**](#embedurl) | **POST** /api/v1/signatures/{id}/recipients/{recipientId}/embed-url | Mint an embedded-signing URL for a recipient (rotates the token; no email is sent)|
10
+
11
+ # **archive**
12
+ > SignatureArchiveDTO archive()
13
+
14
+
15
+ ### Example
16
+
17
+ ```typescript
18
+ import {
19
+ ESignEnterpriseApi,
20
+ Configuration
21
+ } from '@openfilz-sdk/typescript-ee';
22
+
23
+ const configuration = new Configuration();
24
+ const apiInstance = new ESignEnterpriseApi(configuration);
25
+
26
+ let id: string; // (default to undefined)
27
+
28
+ const { status, data } = await apiInstance.archive(
29
+ id
30
+ );
31
+ ```
32
+
33
+ ### Parameters
34
+
35
+ |Name | Type | Description | Notes|
36
+ |------------- | ------------- | ------------- | -------------|
37
+ | **id** | [**string**] | | defaults to undefined|
38
+
39
+
40
+ ### Return type
41
+
42
+ **SignatureArchiveDTO**
43
+
44
+ ### Authorization
45
+
46
+ [keycloak_auth](../README.md#keycloak_auth)
47
+
48
+ ### HTTP request headers
49
+
50
+ - **Content-Type**: Not defined
51
+ - **Accept**: application/json
52
+
53
+
54
+ ### HTTP response details
55
+ | Status code | Description | Response headers |
56
+ |-------------|-------------|------------------|
57
+ |**200** | OK | - |
58
+
59
+ [[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)
60
+
61
+ # **bulk**
62
+ > BulkSendResponse bulk(bulkSendRequest)
63
+
64
+
65
+ ### Example
66
+
67
+ ```typescript
68
+ import {
69
+ ESignEnterpriseApi,
70
+ Configuration,
71
+ BulkSendRequest
72
+ } from '@openfilz-sdk/typescript-ee';
73
+
74
+ const configuration = new Configuration();
75
+ const apiInstance = new ESignEnterpriseApi(configuration);
76
+
77
+ let bulkSendRequest: BulkSendRequest; //
78
+
79
+ const { status, data } = await apiInstance.bulk(
80
+ bulkSendRequest
81
+ );
82
+ ```
83
+
84
+ ### Parameters
85
+
86
+ |Name | Type | Description | Notes|
87
+ |------------- | ------------- | ------------- | -------------|
88
+ | **bulkSendRequest** | **BulkSendRequest**| | |
89
+
90
+
91
+ ### Return type
92
+
93
+ **BulkSendResponse**
94
+
95
+ ### Authorization
96
+
97
+ [keycloak_auth](../README.md#keycloak_auth)
98
+
99
+ ### HTTP request headers
100
+
101
+ - **Content-Type**: application/json
102
+ - **Accept**: application/json
103
+
104
+
105
+ ### HTTP response details
106
+ | Status code | Description | Response headers |
107
+ |-------------|-------------|------------------|
108
+ |**200** | OK | - |
109
+
110
+ [[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)
111
+
112
+ # **embedUrl**
113
+ > EmbedUrlResponse embedUrl()
114
+
115
+
116
+ ### Example
117
+
118
+ ```typescript
119
+ import {
120
+ ESignEnterpriseApi,
121
+ Configuration
122
+ } from '@openfilz-sdk/typescript-ee';
123
+
124
+ const configuration = new Configuration();
125
+ const apiInstance = new ESignEnterpriseApi(configuration);
126
+
127
+ let id: string; // (default to undefined)
128
+ let recipientId: string; // (default to undefined)
129
+
130
+ const { status, data } = await apiInstance.embedUrl(
131
+ id,
132
+ recipientId
133
+ );
134
+ ```
135
+
136
+ ### Parameters
137
+
138
+ |Name | Type | Description | Notes|
139
+ |------------- | ------------- | ------------- | -------------|
140
+ | **id** | [**string**] | | defaults to undefined|
141
+ | **recipientId** | [**string**] | | defaults to undefined|
142
+
143
+
144
+ ### Return type
145
+
146
+ **EmbedUrlResponse**
147
+
148
+ ### Authorization
149
+
150
+ [keycloak_auth](../README.md#keycloak_auth)
151
+
152
+ ### HTTP request headers
153
+
154
+ - **Content-Type**: Not defined
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
+