@openfilz-sdk/typescript-ee 1.8.1 → 1.8.3

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 (180) hide show
  1. package/.openapi-generator/FILES +40 -4
  2. package/.openapi-generator/openfilz-api-generate-typescript-sdk.sha256 +1 -1
  3. package/README.md +43 -13
  4. package/api/esign-api.ts +719 -0
  5. package/api/esign-enterprise-api.ts +286 -0
  6. package/api/{digital-signature-public-api.ts → esign-public-api.ts} +183 -24
  7. package/api/{digital-signature-api.ts → esign-templates-api.ts} +137 -113
  8. package/api.ts +4 -2
  9. package/dist/api/esign-api.d.ts +334 -0
  10. package/dist/api/esign-api.js +693 -0
  11. package/dist/api/esign-enterprise-api.d.ts +138 -0
  12. package/dist/api/esign-enterprise-api.js +278 -0
  13. package/dist/{esm/api/digital-signature-public-api.d.ts → api/esign-public-api.d.ts} +81 -12
  14. package/dist/api/{digital-signature-public-api.js → esign-public-api.js} +178 -29
  15. package/dist/api/esign-templates-api.d.ts +234 -0
  16. package/dist/api/{digital-signature-api.js → esign-templates-api.js} +137 -115
  17. package/dist/api.d.ts +4 -2
  18. package/dist/api.js +4 -2
  19. package/dist/esm/api/esign-api.d.ts +334 -0
  20. package/dist/esm/api/esign-api.js +686 -0
  21. package/dist/esm/api/esign-enterprise-api.d.ts +138 -0
  22. package/dist/esm/api/esign-enterprise-api.js +271 -0
  23. package/dist/{api/digital-signature-public-api.d.ts → esm/api/esign-public-api.d.ts} +81 -12
  24. package/dist/esm/api/{digital-signature-public-api.js → esign-public-api.js} +173 -24
  25. package/dist/esm/api/esign-templates-api.d.ts +234 -0
  26. package/dist/esm/api/{digital-signature-api.js → esign-templates-api.js} +132 -110
  27. package/dist/esm/api.d.ts +4 -2
  28. package/dist/esm/api.js +4 -2
  29. package/dist/esm/models/apply-signature-request.d.ts +3 -0
  30. package/dist/esm/models/bulk-row-result.d.ts +17 -0
  31. package/dist/esm/models/bulk-row-result.js +14 -0
  32. package/dist/esm/models/bulk-row.d.ts +19 -0
  33. package/dist/esm/models/bulk-row.js +14 -0
  34. package/dist/esm/models/bulk-send-request.d.ts +19 -0
  35. package/dist/esm/models/bulk-send-request.js +14 -0
  36. package/dist/esm/models/bulk-send-response.d.ts +18 -0
  37. package/dist/esm/models/bulk-send-response.js +14 -0
  38. package/dist/esm/models/create-signature-envelope-request.d.ts +5 -0
  39. package/dist/esm/models/embed-url-response.d.ts +16 -0
  40. package/dist/esm/models/embed-url-response.js +14 -0
  41. package/dist/esm/models/enriched-audit-log.d.ts +3 -0
  42. package/dist/esm/models/enriched-audit-log.js +3 -0
  43. package/dist/esm/models/index.d.ts +16 -0
  44. package/dist/esm/models/index.js +16 -0
  45. package/dist/esm/models/instantiate-template-request.d.ts +22 -0
  46. package/dist/esm/models/instantiate-template-request.js +14 -0
  47. package/dist/esm/models/public-signature-view.d.ts +13 -0
  48. package/dist/esm/models/public-signature-view.js +5 -0
  49. package/dist/esm/models/role-binding.d.ts +19 -0
  50. package/dist/esm/models/role-binding.js +14 -0
  51. package/dist/esm/models/search-by-audit-log-request.d.ts +3 -0
  52. package/dist/esm/models/search-by-audit-log-request.js +3 -0
  53. package/dist/esm/models/settings.d.ts +3 -0
  54. package/dist/esm/models/signature-envelope-dto.d.ts +6 -0
  55. package/dist/esm/models/signature-event-dto.d.ts +33 -0
  56. package/dist/esm/models/signature-event-dto.js +26 -0
  57. package/dist/esm/models/signature-field-dto.d.ts +44 -0
  58. package/dist/esm/models/signature-field-dto.js +27 -0
  59. package/dist/esm/models/signature-field-input.d.ts +39 -0
  60. package/dist/esm/models/signature-field-input.js +27 -0
  61. package/dist/esm/models/signature-field-value.d.ts +16 -0
  62. package/dist/esm/models/signature-field-value.js +14 -0
  63. package/dist/esm/models/signature-recipient-dto.d.ts +16 -0
  64. package/dist/esm/models/signature-recipient-dto.js +9 -0
  65. package/dist/esm/models/signature-recipient-input.d.ts +19 -1
  66. package/dist/esm/models/signature-recipient-input.js +9 -1
  67. package/dist/esm/models/signature-template-dto.d.ts +27 -0
  68. package/dist/esm/models/signature-template-dto.js +14 -0
  69. package/dist/esm/models/signature-template-field.d.ts +40 -0
  70. package/dist/esm/models/signature-template-field.js +27 -0
  71. package/dist/esm/models/signature-template-request.d.ts +23 -0
  72. package/dist/esm/models/signature-template-request.js +14 -0
  73. package/dist/esm/models/signature-template-role.d.ts +28 -0
  74. package/dist/esm/models/signature-template-role.js +22 -0
  75. package/dist/esm/models/verify-otp-request.d.ts +14 -0
  76. package/dist/esm/models/verify-otp-request.js +14 -0
  77. package/dist/models/apply-signature-request.d.ts +3 -0
  78. package/dist/models/bulk-row-result.d.ts +17 -0
  79. package/dist/models/bulk-row-result.js +15 -0
  80. package/dist/models/bulk-row.d.ts +19 -0
  81. package/dist/models/bulk-row.js +15 -0
  82. package/dist/models/bulk-send-request.d.ts +19 -0
  83. package/dist/models/bulk-send-request.js +15 -0
  84. package/dist/models/bulk-send-response.d.ts +18 -0
  85. package/dist/models/bulk-send-response.js +15 -0
  86. package/dist/models/create-signature-envelope-request.d.ts +5 -0
  87. package/dist/models/embed-url-response.d.ts +16 -0
  88. package/dist/models/embed-url-response.js +15 -0
  89. package/dist/models/enriched-audit-log.d.ts +3 -0
  90. package/dist/models/enriched-audit-log.js +3 -0
  91. package/dist/models/index.d.ts +16 -0
  92. package/dist/models/index.js +16 -0
  93. package/dist/models/instantiate-template-request.d.ts +22 -0
  94. package/dist/models/instantiate-template-request.js +15 -0
  95. package/dist/models/public-signature-view.d.ts +13 -0
  96. package/dist/models/public-signature-view.js +6 -1
  97. package/dist/models/role-binding.d.ts +19 -0
  98. package/dist/models/role-binding.js +15 -0
  99. package/dist/models/search-by-audit-log-request.d.ts +3 -0
  100. package/dist/models/search-by-audit-log-request.js +3 -0
  101. package/dist/models/settings.d.ts +3 -0
  102. package/dist/models/signature-envelope-dto.d.ts +6 -0
  103. package/dist/models/signature-event-dto.d.ts +33 -0
  104. package/dist/models/signature-event-dto.js +29 -0
  105. package/dist/models/signature-field-dto.d.ts +44 -0
  106. package/dist/models/signature-field-dto.js +30 -0
  107. package/dist/models/signature-field-input.d.ts +39 -0
  108. package/dist/models/signature-field-input.js +30 -0
  109. package/dist/models/signature-field-value.d.ts +16 -0
  110. package/dist/models/signature-field-value.js +15 -0
  111. package/dist/models/signature-recipient-dto.d.ts +16 -0
  112. package/dist/models/signature-recipient-dto.js +10 -1
  113. package/dist/models/signature-recipient-input.d.ts +19 -1
  114. package/dist/models/signature-recipient-input.js +10 -0
  115. package/dist/models/signature-template-dto.d.ts +27 -0
  116. package/dist/models/signature-template-dto.js +15 -0
  117. package/dist/models/signature-template-field.d.ts +40 -0
  118. package/dist/models/signature-template-field.js +30 -0
  119. package/dist/models/signature-template-request.d.ts +23 -0
  120. package/dist/models/signature-template-request.js +15 -0
  121. package/dist/models/signature-template-role.d.ts +28 -0
  122. package/dist/models/signature-template-role.js +25 -0
  123. package/dist/models/verify-otp-request.d.ts +14 -0
  124. package/dist/models/verify-otp-request.js +15 -0
  125. package/docs/ApplySignatureRequest.md +4 -0
  126. package/docs/BulkRow.md +28 -0
  127. package/docs/BulkRowResult.md +26 -0
  128. package/docs/BulkSendRequest.md +28 -0
  129. package/docs/BulkSendResponse.md +26 -0
  130. package/docs/CreateSignatureEnvelopeRequest.md +10 -0
  131. package/docs/ESignApi.md +463 -0
  132. package/docs/ESignEnterpriseApi.md +164 -0
  133. package/docs/{DigitalSignaturePublicApi.md → ESignPublicApi.md} +118 -12
  134. package/docs/{DigitalSignatureApi.md → ESignTemplatesApi.md} +76 -61
  135. package/docs/EmbedUrlResponse.md +24 -0
  136. package/docs/InstantiateTemplateRequest.md +34 -0
  137. package/docs/PublicSignatureView.md +12 -0
  138. package/docs/RoleBinding.md +30 -0
  139. package/docs/Settings.md +6 -0
  140. package/docs/SignatureEnvelopeDTO.md +12 -0
  141. package/docs/SignatureEventDTO.md +30 -0
  142. package/docs/SignatureFieldDTO.md +46 -0
  143. package/docs/SignatureFieldInput.md +36 -0
  144. package/docs/SignatureFieldValue.md +24 -0
  145. package/docs/SignatureRecipientDTO.md +8 -0
  146. package/docs/SignatureRecipientInput.md +13 -1
  147. package/docs/SignatureTemplateDTO.md +42 -0
  148. package/docs/SignatureTemplateField.md +38 -0
  149. package/docs/SignatureTemplateRequest.md +34 -0
  150. package/docs/SignatureTemplateRole.md +26 -0
  151. package/docs/VerifyOtpRequest.md +20 -0
  152. package/models/apply-signature-request.ts +5 -0
  153. package/models/bulk-row-result.ts +23 -0
  154. package/models/bulk-row.ts +27 -0
  155. package/models/bulk-send-request.ts +27 -0
  156. package/models/bulk-send-response.ts +26 -0
  157. package/models/create-signature-envelope-request.ts +5 -0
  158. package/models/embed-url-response.ts +22 -0
  159. package/models/enriched-audit-log.ts +3 -0
  160. package/models/index.ts +16 -0
  161. package/models/instantiate-template-request.ts +30 -0
  162. package/models/public-signature-view.ts +16 -0
  163. package/models/role-binding.ts +25 -0
  164. package/models/search-by-audit-log-request.ts +3 -0
  165. package/models/settings.ts +3 -0
  166. package/models/signature-envelope-dto.ts +6 -0
  167. package/models/signature-event-dto.ts +42 -0
  168. package/models/signature-field-dto.ts +51 -0
  169. package/models/signature-field-input.ts +46 -0
  170. package/models/signature-field-value.ts +22 -0
  171. package/models/signature-recipient-dto.ts +20 -0
  172. package/models/signature-recipient-input.ts +25 -1
  173. package/models/signature-template-dto.ts +37 -0
  174. package/models/signature-template-field.ts +47 -0
  175. package/models/signature-template-request.ts +33 -0
  176. package/models/signature-template-role.ts +38 -0
  177. package/models/verify-otp-request.ts +20 -0
  178. package/package.json +1 -1
  179. package/dist/api/digital-signature-api.d.ts +0 -221
  180. package/dist/esm/api/digital-signature-api.d.ts +0 -221
@@ -12,7 +12,13 @@ Name | Type | Description | Notes
12
12
  **signedDocId** | **string** | | [optional] [default to undefined]
13
13
  **status** | **string** | | [optional] [default to undefined]
14
14
  **initiatorEmail** | **string** | | [optional] [default to undefined]
15
+ **sequential** | **boolean** | | [optional] [default to undefined]
16
+ **currentOrder** | **number** | | [optional] [default to undefined]
17
+ **templateId** | **string** | | [optional] [default to undefined]
18
+ **reminderDays** | **number** | | [optional] [default to undefined]
19
+ **sealProvider** | **string** | | [optional] [default to undefined]
15
20
  **createdAt** | **string** | | [optional] [default to undefined]
21
+ **sentAt** | **string** | | [optional] [default to undefined]
16
22
  **completedAt** | **string** | | [optional] [default to undefined]
17
23
  **expiresAt** | **string** | | [optional] [default to undefined]
18
24
  **recipients** | [**Array<SignatureRecipientDTO>**](SignatureRecipientDTO.md) | | [optional] [default to undefined]
@@ -30,7 +36,13 @@ const instance: SignatureEnvelopeDTO = {
30
36
  signedDocId,
31
37
  status,
32
38
  initiatorEmail,
39
+ sequential,
40
+ currentOrder,
41
+ templateId,
42
+ reminderDays,
43
+ sealProvider,
33
44
  createdAt,
45
+ sentAt,
34
46
  completedAt,
35
47
  expiresAt,
36
48
  recipients,
@@ -0,0 +1,30 @@
1
+ # SignatureEventDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **type** | **string** | | [optional] [default to undefined]
9
+ **actor** | **string** | | [optional] [default to undefined]
10
+ **docSha256** | **string** | | [optional] [default to undefined]
11
+ **signerIp** | **string** | | [optional] [default to undefined]
12
+ **details** | **string** | | [optional] [default to undefined]
13
+ **createdAt** | **string** | | [optional] [default to undefined]
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import { SignatureEventDTO } from '@openfilz-sdk/typescript-ee';
19
+
20
+ const instance: SignatureEventDTO = {
21
+ type,
22
+ actor,
23
+ docSha256,
24
+ signerIp,
25
+ details,
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,46 @@
1
+ # SignatureFieldDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | | [optional] [default to undefined]
9
+ **recipientId** | **string** | | [optional] [default to undefined]
10
+ **type** | **string** | | [optional] [default to undefined]
11
+ **page** | **number** | | [optional] [default to undefined]
12
+ **x** | **number** | | [optional] [default to undefined]
13
+ **y** | **number** | | [optional] [default to undefined]
14
+ **w** | **number** | | [optional] [default to undefined]
15
+ **h** | **number** | | [optional] [default to undefined]
16
+ **required** | **boolean** | | [optional] [default to undefined]
17
+ **label** | **string** | | [optional] [default to undefined]
18
+ **_options** | **{ [key: string]: any; }** | | [optional] [default to undefined]
19
+ **value** | **string** | | [optional] [default to undefined]
20
+ **valueImage** | **string** | | [optional] [default to undefined]
21
+ **filledAt** | **string** | | [optional] [default to undefined]
22
+
23
+ ## Example
24
+
25
+ ```typescript
26
+ import { SignatureFieldDTO } from '@openfilz-sdk/typescript-ee';
27
+
28
+ const instance: SignatureFieldDTO = {
29
+ id,
30
+ recipientId,
31
+ type,
32
+ page,
33
+ x,
34
+ y,
35
+ w,
36
+ h,
37
+ required,
38
+ label,
39
+ _options,
40
+ value,
41
+ valueImage,
42
+ filledAt,
43
+ };
44
+ ```
45
+
46
+ [[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
+ # SignatureFieldInput
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **type** | **string** | | [default to undefined]
9
+ **page** | **number** | | [default to undefined]
10
+ **x** | **number** | | [default to undefined]
11
+ **y** | **number** | | [default to undefined]
12
+ **w** | **number** | | [default to undefined]
13
+ **h** | **number** | | [default to undefined]
14
+ **required** | **boolean** | | [optional] [default to undefined]
15
+ **label** | **string** | | [optional] [default to undefined]
16
+ **_options** | **{ [key: string]: any; }** | | [optional] [default to undefined]
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import { SignatureFieldInput } from '@openfilz-sdk/typescript-ee';
22
+
23
+ const instance: SignatureFieldInput = {
24
+ type,
25
+ page,
26
+ x,
27
+ y,
28
+ w,
29
+ h,
30
+ required,
31
+ label,
32
+ _options,
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,24 @@
1
+ # SignatureFieldValue
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **fieldId** | **string** | | [default to undefined]
9
+ **value** | **string** | | [optional] [default to undefined]
10
+ **valueImage** | **string** | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { SignatureFieldValue } from '@openfilz-sdk/typescript-ee';
16
+
17
+ const instance: SignatureFieldValue = {
18
+ fieldId,
19
+ value,
20
+ valueImage,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -10,10 +10,14 @@ Name | Type | Description | Notes
10
10
  **name** | **string** | | [optional] [default to undefined]
11
11
  **email** | **string** | | [optional] [default to undefined]
12
12
  **orderIndex** | **number** | | [optional] [default to undefined]
13
+ **role** | **string** | | [optional] [default to undefined]
14
+ **authMethod** | **string** | | [optional] [default to undefined]
13
15
  **status** | **string** | | [optional] [default to undefined]
14
16
  **viewedAt** | **string** | | [optional] [default to undefined]
15
17
  **signedAt** | **string** | | [optional] [default to undefined]
16
18
  **declineReason** | **string** | | [optional] [default to undefined]
19
+ **reminderCount** | **number** | | [optional] [default to undefined]
20
+ **fields** | [**Array<SignatureFieldDTO>**](SignatureFieldDTO.md) | | [optional] [default to undefined]
17
21
 
18
22
  ## Example
19
23
 
@@ -26,10 +30,14 @@ const instance: SignatureRecipientDTO = {
26
30
  name,
27
31
  email,
28
32
  orderIndex,
33
+ role,
34
+ authMethod,
29
35
  status,
30
36
  viewedAt,
31
37
  signedAt,
32
38
  declineReason,
39
+ reminderCount,
40
+ fields,
33
41
  };
34
42
  ```
35
43
 
@@ -8,7 +8,13 @@ Name | Type | Description | Notes
8
8
  **userId** | **string** | | [optional] [default to undefined]
9
9
  **name** | **string** | | [optional] [default to undefined]
10
10
  **email** | **string** | | [default to undefined]
11
- **field** | [**SignatureFieldPlacement**](SignatureFieldPlacement.md) | | [default to undefined]
11
+ **orderIndex** | **number** | | [optional] [default to undefined]
12
+ **role** | **string** | | [optional] [default to undefined]
13
+ **authMethod** | **string** | | [optional] [default to undefined]
14
+ **phone** | **string** | | [optional] [default to undefined]
15
+ **locale** | **string** | | [optional] [default to undefined]
16
+ **fields** | [**Array<SignatureFieldInput>**](SignatureFieldInput.md) | | [optional] [default to undefined]
17
+ **field** | [**SignatureFieldPlacement**](SignatureFieldPlacement.md) | | [optional] [default to undefined]
12
18
 
13
19
  ## Example
14
20
 
@@ -19,6 +25,12 @@ const instance: SignatureRecipientInput = {
19
25
  userId,
20
26
  name,
21
27
  email,
28
+ orderIndex,
29
+ role,
30
+ authMethod,
31
+ phone,
32
+ locale,
33
+ fields,
22
34
  field,
23
35
  };
24
36
  ```
@@ -0,0 +1,42 @@
1
+ # SignatureTemplateDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | | [optional] [default to undefined]
9
+ **ownerEmail** | **string** | | [optional] [default to undefined]
10
+ **name** | **string** | | [optional] [default to undefined]
11
+ **description** | **string** | | [optional] [default to undefined]
12
+ **sourceDocId** | **string** | | [optional] [default to undefined]
13
+ **roles** | [**Array<SignatureTemplateRole>**](SignatureTemplateRole.md) | | [optional] [default to undefined]
14
+ **fields** | [**Array<SignatureTemplateField>**](SignatureTemplateField.md) | | [optional] [default to undefined]
15
+ **message** | **string** | | [optional] [default to undefined]
16
+ **expiresInDays** | **number** | | [optional] [default to undefined]
17
+ **sequential** | **boolean** | | [optional] [default to undefined]
18
+ **createdAt** | **string** | | [optional] [default to undefined]
19
+ **updatedAt** | **string** | | [optional] [default to undefined]
20
+
21
+ ## Example
22
+
23
+ ```typescript
24
+ import { SignatureTemplateDTO } from '@openfilz-sdk/typescript-ee';
25
+
26
+ const instance: SignatureTemplateDTO = {
27
+ id,
28
+ ownerEmail,
29
+ name,
30
+ description,
31
+ sourceDocId,
32
+ roles,
33
+ fields,
34
+ message,
35
+ expiresInDays,
36
+ sequential,
37
+ createdAt,
38
+ updatedAt,
39
+ };
40
+ ```
41
+
42
+ [[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,38 @@
1
+ # SignatureTemplateField
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **role** | **string** | | [default to undefined]
9
+ **type** | **string** | | [default to undefined]
10
+ **page** | **number** | | [default to undefined]
11
+ **x** | **number** | | [default to undefined]
12
+ **y** | **number** | | [default to undefined]
13
+ **w** | **number** | | [default to undefined]
14
+ **h** | **number** | | [default to undefined]
15
+ **required** | **boolean** | | [optional] [default to undefined]
16
+ **label** | **string** | | [optional] [default to undefined]
17
+ **_options** | **{ [key: string]: any; }** | | [optional] [default to undefined]
18
+
19
+ ## Example
20
+
21
+ ```typescript
22
+ import { SignatureTemplateField } from '@openfilz-sdk/typescript-ee';
23
+
24
+ const instance: SignatureTemplateField = {
25
+ role,
26
+ type,
27
+ page,
28
+ x,
29
+ y,
30
+ w,
31
+ h,
32
+ required,
33
+ label,
34
+ _options,
35
+ };
36
+ ```
37
+
38
+ [[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,34 @@
1
+ # SignatureTemplateRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **string** | | [default to undefined]
9
+ **description** | **string** | | [optional] [default to undefined]
10
+ **sourceDocId** | **string** | | [optional] [default to undefined]
11
+ **roles** | [**Array<SignatureTemplateRole>**](SignatureTemplateRole.md) | | [default to undefined]
12
+ **fields** | [**Array<SignatureTemplateField>**](SignatureTemplateField.md) | | [default to undefined]
13
+ **message** | **string** | | [optional] [default to undefined]
14
+ **expiresInDays** | **number** | | [optional] [default to undefined]
15
+ **sequential** | **boolean** | | [optional] [default to undefined]
16
+
17
+ ## Example
18
+
19
+ ```typescript
20
+ import { SignatureTemplateRequest } from '@openfilz-sdk/typescript-ee';
21
+
22
+ const instance: SignatureTemplateRequest = {
23
+ name,
24
+ description,
25
+ sourceDocId,
26
+ roles,
27
+ fields,
28
+ message,
29
+ expiresInDays,
30
+ sequential,
31
+ };
32
+ ```
33
+
34
+ [[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
+ # SignatureTemplateRole
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **string** | | [default to undefined]
9
+ **orderIndex** | **number** | | [optional] [default to undefined]
10
+ **role** | **string** | | [optional] [default to undefined]
11
+ **authMethod** | **string** | | [optional] [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { SignatureTemplateRole } from '@openfilz-sdk/typescript-ee';
17
+
18
+ const instance: SignatureTemplateRole = {
19
+ name,
20
+ orderIndex,
21
+ role,
22
+ authMethod,
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,20 @@
1
+ # VerifyOtpRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **code** | **string** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { VerifyOtpRequest } from '@openfilz-sdk/typescript-ee';
14
+
15
+ const instance: VerifyOtpRequest = {
16
+ code,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -13,9 +13,14 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { SignatureFieldValue } from './signature-field-value';
16
19
 
17
20
  export interface ApplySignatureRequest {
18
21
  'signatureImage'?: string;
19
22
  'typedName'?: string;
23
+ 'fields'?: Array<SignatureFieldValue>;
24
+ 'legacy'?: boolean;
20
25
  }
21
26
 
@@ -0,0 +1,23 @@
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 BulkRowResult {
18
+ 'row'?: number;
19
+ 'envelopeId'?: string;
20
+ 'status'?: string;
21
+ 'error'?: string;
22
+ }
23
+
@@ -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 { RoleBinding } from './role-binding';
19
+
20
+ export interface BulkRow {
21
+ 'sourceDocId'?: string;
22
+ 'title'?: string;
23
+ 'message'?: string;
24
+ 'recipients': Array<RoleBinding>;
25
+ 'locale'?: string;
26
+ }
27
+
@@ -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 { BulkRow } from './bulk-row';
19
+
20
+ export interface BulkSendRequest {
21
+ 'templateId': string;
22
+ 'rows': Array<BulkRow>;
23
+ 'expiresInDays'?: number;
24
+ 'reminderDays'?: number;
25
+ 'send'?: boolean;
26
+ }
27
+
@@ -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 { BulkRowResult } from './bulk-row-result';
19
+
20
+ export interface BulkSendResponse {
21
+ 'total'?: number;
22
+ 'created'?: number;
23
+ 'failed'?: number;
24
+ 'results'?: Array<BulkRowResult>;
25
+ }
26
+
@@ -23,5 +23,10 @@ export interface CreateSignatureEnvelopeRequest {
23
23
  'message'?: string;
24
24
  'recipients': Array<SignatureRecipientInput>;
25
25
  'expiresInDays'?: number;
26
+ 'sequential'?: boolean;
27
+ 'reminderDays'?: number;
28
+ 'locale'?: string;
29
+ 'send'?: boolean;
30
+ 'templateId'?: string;
26
31
  }
27
32
 
@@ -0,0 +1,22 @@
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 EmbedUrlResponse {
18
+ 'recipientId'?: string;
19
+ 'url'?: string;
20
+ 'issuedAt'?: string;
21
+ }
22
+
@@ -81,6 +81,9 @@ export const EnrichedAuditLogActionEnum = {
81
81
  SignatureEnvelopeDeclined: 'SIGNATURE_ENVELOPE_DECLINED',
82
82
  SignatureEnvelopeCancelled: 'SIGNATURE_ENVELOPE_CANCELLED',
83
83
  SignatureEnvelopeExpired: 'SIGNATURE_ENVELOPE_EXPIRED',
84
+ SignatureReminderSent: 'SIGNATURE_REMINDER_SENT',
85
+ SignatureTemplateCreated: 'SIGNATURE_TEMPLATE_CREATED',
86
+ SignatureTemplateDeleted: 'SIGNATURE_TEMPLATE_DELETED',
84
87
  } as const;
85
88
 
86
89
  export type EnrichedAuditLogActionEnum = typeof EnrichedAuditLogActionEnum[keyof typeof EnrichedAuditLogActionEnum];
package/models/index.ts CHANGED
@@ -9,6 +9,10 @@ export * from './apply-signature-request';
9
9
  export * from './audit-log-details';
10
10
  export * from './audit-verification-result';
11
11
  export * from './broken-link';
12
+ export * from './bulk-row';
13
+ export * from './bulk-row-result';
14
+ export * from './bulk-send-request';
15
+ export * from './bulk-send-response';
12
16
  export * from './comment-dto';
13
17
  export * from './consume-delegated-grant-request';
14
18
  export * from './copy-audit';
@@ -34,6 +38,7 @@ export * from './document-info';
34
38
  export * from './document-position';
35
39
  export * from './document-version-info';
36
40
  export * from './element-info';
41
+ export * from './embed-url-response';
37
42
  export * from './enriched-audit-log';
38
43
  export * from './enriched-audit-log-details';
39
44
  export * from './file-type-stats';
@@ -41,6 +46,7 @@ export * from './filter-input';
41
46
  export * from './folder-element-info';
42
47
  export * from './folder-response';
43
48
  export * from './ingestion-status-dto';
49
+ export * from './instantiate-template-request';
44
50
  export * from './list-ai-models-request';
45
51
  export * from './mint-upload-token-request';
46
52
  export * from './move-audit';
@@ -52,6 +58,7 @@ export * from './rename-request';
52
58
  export * from './replace-audit';
53
59
  export * from './restore-version-audit';
54
60
  export * from './restore-version-response';
61
+ export * from './role-binding';
55
62
  export * from './save-ai-settings-request';
56
63
  export * from './scan-job-status-dto';
57
64
  export * from './scan-request-dto';
@@ -66,9 +73,17 @@ export * from './share-result-item';
66
73
  export * from './share-result-response';
67
74
  export * from './signature-archive-dto';
68
75
  export * from './signature-envelope-dto';
76
+ export * from './signature-event-dto';
77
+ export * from './signature-field-dto';
78
+ export * from './signature-field-input';
69
79
  export * from './signature-field-placement';
80
+ export * from './signature-field-value';
70
81
  export * from './signature-recipient-dto';
71
82
  export * from './signature-recipient-input';
83
+ export * from './signature-template-dto';
84
+ export * from './signature-template-field';
85
+ export * from './signature-template-request';
86
+ export * from './signature-template-role';
72
87
  export * from './sort-input';
73
88
  export * from './storage-breakdown';
74
89
  export * from './suggest';
@@ -88,3 +103,4 @@ export * from './upload-token-response';
88
103
  export * from './user-preferences-request';
89
104
  export * from './user-privacy-dto';
90
105
  export * from './user-registration-request';
106
+ export * from './verify-otp-request';
@@ -0,0 +1,30 @@
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 { RoleBinding } from './role-binding';
19
+
20
+ export interface InstantiateTemplateRequest {
21
+ 'sourceDocId'?: string;
22
+ 'title'?: string;
23
+ 'message'?: string;
24
+ 'recipients': Array<RoleBinding>;
25
+ 'expiresInDays'?: number;
26
+ 'reminderDays'?: number;
27
+ 'locale'?: string;
28
+ 'send'?: boolean;
29
+ }
30
+