@keystrokehq/docusign 0.0.8 → 0.0.10

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 (52) hide show
  1. package/dist/account-custom-fields.mjs +4 -4
  2. package/dist/account-stamps.mjs +11 -11
  3. package/dist/account-tabs.mjs +6 -6
  4. package/dist/account.mjs +18 -18
  5. package/dist/admin.mjs +1 -1
  6. package/dist/auth.mjs +2 -2
  7. package/dist/bcc-archive.mjs +4 -4
  8. package/dist/billing.mjs +16 -16
  9. package/dist/brands.mjs +11 -11
  10. package/dist/bulk-send.d.mts +1 -1
  11. package/dist/bulk-send.mjs +8 -8
  12. package/dist/chunked-uploads.mjs +5 -5
  13. package/dist/click.mjs +1 -1
  14. package/dist/clm.mjs +1 -1
  15. package/dist/cloud-storage.mjs +7 -7
  16. package/dist/connect.mjs +17 -17
  17. package/dist/contacts.mjs +5 -5
  18. package/dist/enote.mjs +3 -3
  19. package/dist/envelope-attachments.mjs +5 -5
  20. package/dist/envelope-custom-fields.mjs +7 -7
  21. package/dist/envelope-documents.mjs +16 -16
  22. package/dist/envelope-email.mjs +4 -4
  23. package/dist/envelope-lock.mjs +4 -4
  24. package/dist/envelope-logs.mjs +9 -9
  25. package/dist/envelope-notifications.mjs +3 -3
  26. package/dist/envelope-recipients.mjs +11 -11
  27. package/dist/envelope-tabs.mjs +3 -3
  28. package/dist/envelope-views.mjs +6 -6
  29. package/dist/envelope-workflow.mjs +14 -14
  30. package/dist/envelopes.d.mts +1 -1
  31. package/dist/envelopes.mjs +13 -13
  32. package/dist/groups.mjs +10 -10
  33. package/dist/monitor.mjs +1 -1
  34. package/dist/notary.mjs +9 -9
  35. package/dist/permission-profiles.mjs +5 -5
  36. package/dist/power-forms.mjs +3 -3
  37. package/dist/rooms.mjs +1 -1
  38. package/dist/schemas/index.d.mts +2 -2
  39. package/dist/signing-groups.mjs +9 -9
  40. package/dist/template-custom-fields.mjs +8 -8
  41. package/dist/template-documents.mjs +8 -8
  42. package/dist/template-lock.mjs +4 -4
  43. package/dist/template-sharing.mjs +8 -8
  44. package/dist/template-workflow.mjs +12 -12
  45. package/dist/templates.mjs +7 -7
  46. package/dist/user-authorizations.mjs +8 -8
  47. package/dist/user-custom-settings.mjs +5 -5
  48. package/dist/user-profile.mjs +7 -7
  49. package/dist/user-signatures.mjs +13 -13
  50. package/dist/users.mjs +6 -6
  51. package/dist/workspaces.mjs +11 -11
  52. package/package.json +3 -3
@@ -9,7 +9,7 @@ import { z } from "zod";
9
9
  const batchId = z.object({ batchId: z.string().min(1) });
10
10
  const listId = z.object({ bulkSendListId: z.string().min(1) });
11
11
  const createBulkSendRequest = defineRestOperation({
12
- id: "create_bulk_send_request",
12
+ id: "docusign.create-bulk-send-request",
13
13
  slug: "DOCUSIGN_CREATE_BULK_SEND_REQUEST",
14
14
  name: "Create Bulk Send Request",
15
15
  description: "Send an envelope in bulk to a pre-saved recipient list.",
@@ -21,7 +21,7 @@ const createBulkSendRequest = defineRestOperation({
21
21
  body: (input) => input.request
22
22
  });
23
23
  const createBulkSendTestRequest = defineRestOperation({
24
- id: "create_bulk_send_test_request",
24
+ id: "docusign.create-bulk-send-test-request",
25
25
  slug: "DOCUSIGN_CREATE_BULK_SEND_TEST_REQUEST",
26
26
  name: "Create Bulk Send Test Request",
27
27
  description: "Dry-run a bulk send against a recipient list.",
@@ -33,7 +33,7 @@ const createBulkSendTestRequest = defineRestOperation({
33
33
  body: (input) => input.request
34
34
  });
35
35
  const applyActionToBulkSendEnvelopes = defineRestOperation({
36
- id: "apply_action_to_bulk_send_envelopes",
36
+ id: "docusign.apply-action-to-bulk-send-envelopes",
37
37
  slug: "DOCUSIGN_APPLY_ACTION_TO_BULK_SEND_ENVELOPES",
38
38
  name: "Apply Action To Bulk Send Envelopes",
39
39
  description: "Apply an action (e.g. resume, stop) to all envelopes in a bulk send batch.",
@@ -48,7 +48,7 @@ const applyActionToBulkSendEnvelopes = defineRestOperation({
48
48
  output: docusignGenericObjectSchema
49
49
  });
50
50
  const listBulkSendBatchSummaries = defineRestOperation({
51
- id: "list_bulk_send_batch_summaries",
51
+ id: "docusign.list-bulk-send-batch-summaries",
52
52
  slug: "DOCUSIGN_LIST_BULK_SEND_BATCH_SUMMARIES",
53
53
  name: "List Bulk Send Batch Summaries",
54
54
  description: "List bulk send batches for the account.",
@@ -67,7 +67,7 @@ const listBulkSendBatchSummaries = defineRestOperation({
67
67
  })
68
68
  });
69
69
  const getBulkSendBatchStatus = defineRestOperation({
70
- id: "get_bulk_send_batch_status",
70
+ id: "docusign.get-bulk-send-batch-status",
71
71
  slug: "DOCUSIGN_GET_BULK_SEND_BATCH_STATUS",
72
72
  name: "Get Bulk Send Batch Status",
73
73
  description: "Fetch the status of a single bulk send batch.",
@@ -77,7 +77,7 @@ const getBulkSendBatchStatus = defineRestOperation({
77
77
  output: docusignBulkSendBatchSchema
78
78
  });
79
79
  const getBulkSendListsInformation = defineRestOperation({
80
- id: "get_bulk_send_lists_information",
80
+ id: "docusign.get-bulk-send-lists-information",
81
81
  slug: "DOCUSIGN_GET_BULK_SEND_LISTS_INFORMATION",
82
82
  name: "Get Bulk Send Lists Information",
83
83
  description: "List saved bulk send recipient lists.",
@@ -87,7 +87,7 @@ const getBulkSendListsInformation = defineRestOperation({
87
87
  output: docusignBulkSendListSchema
88
88
  });
89
89
  const removeBulkSendList = defineRestOperation({
90
- id: "remove_bulk_send_list",
90
+ id: "docusign.remove-bulk-send-list",
91
91
  slug: "DOCUSIGN_REMOVE_BULK_SEND_LIST",
92
92
  name: "Remove Bulk Send List",
93
93
  description: "Remove a saved bulk send recipient list.",
@@ -99,7 +99,7 @@ const removeBulkSendList = defineRestOperation({
99
99
  transformResponse: () => ({ success: true })
100
100
  });
101
101
  const updateBulkSendBatchName = defineRestOperation({
102
- id: "update_bulk_send_batch_name",
102
+ id: "docusign.update-bulk-send-batch-name",
103
103
  slug: "DOCUSIGN_UPDATE_BULK_SEND_BATCH_NAME",
104
104
  name: "Update Bulk Send Batch Name",
105
105
  description: "Rename a bulk send batch.",
@@ -8,7 +8,7 @@ import { z } from "zod";
8
8
  */
9
9
  const chunkedId = z.object({ chunkedUploadId: z.string().min(1) });
10
10
  const initiateNewChunkedUpload = defineRestOperation({
11
- id: "initiate_new_chunked_upload",
11
+ id: "docusign.initiate-new-chunked-upload",
12
12
  slug: "DOCUSIGN_INITIATE_NEW_CHUNKED_UPLOAD",
13
13
  name: "Initiate New Chunked Upload",
14
14
  description: "Initiate a new chunked upload session.",
@@ -20,7 +20,7 @@ const initiateNewChunkedUpload = defineRestOperation({
20
20
  body: (input) => input.chunkedUpload
21
21
  });
22
22
  const addPartToChunkedUpload = defineRestOperation({
23
- id: "add_part_to_chunked_upload",
23
+ id: "docusign.add-part-to-chunked-upload",
24
24
  slug: "DOCUSIGN_ADD_PART_TO_CHUNKED_UPLOAD",
25
25
  name: "Add Part To Chunked Upload",
26
26
  description: "Append a part (sequential chunk) to an ongoing chunked upload.",
@@ -35,7 +35,7 @@ const addPartToChunkedUpload = defineRestOperation({
35
35
  body: (input) => ({ data: input.data })
36
36
  });
37
37
  const commitChunkedUploadForEnvelopes = defineRestOperation({
38
- id: "commit_chunked_upload_for_envelopes",
38
+ id: "docusign.commit-chunked-upload-for-envelopes",
39
39
  slug: "DOCUSIGN_COMMIT_CHUNKED_UPLOAD_FOR_ENVELOPES",
40
40
  name: "Commit Chunked Upload For Envelopes",
41
41
  description: "Commit a completed chunked upload so envelopes can reference it.",
@@ -47,7 +47,7 @@ const commitChunkedUploadForEnvelopes = defineRestOperation({
47
47
  query: () => ({ action: "commit" })
48
48
  });
49
49
  const deleteChunkedUpload = defineRestOperation({
50
- id: "delete_chunked_upload",
50
+ id: "docusign.delete-chunked-upload",
51
51
  slug: "DOCUSIGN_DELETE_CHUNKED_UPLOAD",
52
52
  name: "Delete Chunked Upload",
53
53
  description: "Delete an in-progress chunked upload.",
@@ -59,7 +59,7 @@ const deleteChunkedUpload = defineRestOperation({
59
59
  transformResponse: () => ({ success: true })
60
60
  });
61
61
  const retrieveChunkedUploadMetadata = defineRestOperation({
62
- id: "retrieve_chunked_upload_metadata",
62
+ id: "docusign.retrieve-chunked-upload-metadata",
63
63
  slug: "DOCUSIGN_RETRIEVE_CHUNKED_UPLOAD_METADATA",
64
64
  name: "Retrieve Chunked Upload Metadata",
65
65
  description: "Retrieve metadata for an in-progress chunked upload.",
package/dist/click.mjs CHANGED
@@ -7,7 +7,7 @@ import { z } from "zod";
7
7
  * DocuSign Click (clickwrap) — plan-gated in v1.
8
8
  */
9
9
  const clickNotImplemented = definePlanGatedOperation({
10
- id: "click_not_implemented",
10
+ id: "docusign.click-not-implemented",
11
11
  slug: "DOCUSIGN_CLICK_NOT_IMPLEMENTED",
12
12
  name: "DocuSign Click (not implemented)",
13
13
  description: "Placeholder for DocuSign Click (clickwrap) API.",
package/dist/clm.mjs CHANGED
@@ -7,7 +7,7 @@ import { z } from "zod";
7
7
  * DocuSign CLM (SpringCM) — plan-gated in v1.
8
8
  */
9
9
  const clmNotImplemented = definePlanGatedOperation({
10
- id: "clm_not_implemented",
10
+ id: "docusign.clm-not-implemented",
11
11
  slug: "DOCUSIGN_CLM_NOT_IMPLEMENTED",
12
12
  name: "DocuSign CLM (not implemented)",
13
13
  description: "Placeholder for DocuSign Contract Lifecycle Management. Plan-gated in v1.",
@@ -9,7 +9,7 @@ import { z } from "zod";
9
9
  const userId = z.object({ userId: z.string().min(1) });
10
10
  const userProvider = userId.extend({ serviceId: z.string().min(1) });
11
11
  const configureCloudStorageRedirectUrl = defineRestOperation({
12
- id: "configure_cloud_storage_redirect_url",
12
+ id: "docusign.configure-cloud-storage-redirect-url",
13
13
  slug: "DOCUSIGN_CONFIGURE_CLOUD_STORAGE_REDIRECT_URL",
14
14
  name: "Configure Cloud Storage Redirect URL",
15
15
  description: "Configure the OAuth redirect URL for a cloud-storage provider for a user.",
@@ -21,7 +21,7 @@ const configureCloudStorageRedirectUrl = defineRestOperation({
21
21
  body: (input) => input.cloudStorage
22
22
  });
23
23
  const getUserCloudStorageProviderConfiguration = defineRestOperation({
24
- id: "get_user_cloud_storage_provider_configuration",
24
+ id: "docusign.get-user-cloud-storage-provider-configuration",
25
25
  slug: "DOCUSIGN_GET_USER_CLOUD_STORAGE_PROVIDER_CONFIGURATION",
26
26
  name: "Get User Cloud Storage Provider",
27
27
  description: "Get the cloud-storage provider config for a user.",
@@ -31,7 +31,7 @@ const getUserCloudStorageProviderConfiguration = defineRestOperation({
31
31
  output: docusignGenericObjectSchema
32
32
  });
33
33
  const retrieveCloudStorageProviderConfiguration = defineRestOperation({
34
- id: "retrieve_cloud_storage_provider_configuration",
34
+ id: "docusign.retrieve-cloud-storage-provider-configuration",
35
35
  slug: "DOCUSIGN_RETRIEVE_CLOUD_STORAGE_PROVIDER_CONFIGURATION",
36
36
  name: "Retrieve Cloud Storage Provider",
37
37
  description: "List configured cloud-storage providers for a user.",
@@ -41,7 +41,7 @@ const retrieveCloudStorageProviderConfiguration = defineRestOperation({
41
41
  output: docusignGenericObjectSchema
42
42
  });
43
43
  const deleteUserAuthForCloudStorageProviders = defineRestOperation({
44
- id: "delete_user_auth_for_cloud_storage_providers",
44
+ id: "docusign.delete-user-auth-for-cloud-storage-providers",
45
45
  slug: "DOCUSIGN_DELETE_USER_AUTH_FOR_CLOUD_STORAGE_PROVIDERS",
46
46
  name: "Delete User Cloud Storage Auth (bulk)",
47
47
  description: "Remove a user authentication from a cloud-storage provider.",
@@ -54,7 +54,7 @@ const deleteUserAuthForCloudStorageProviders = defineRestOperation({
54
54
  transformResponse: () => ({ success: true })
55
55
  });
56
56
  const deleteUserCloudStorageAuthentication = defineRestOperation({
57
- id: "delete_user_cloud_storage_authentication",
57
+ id: "docusign.delete-user-cloud-storage-authentication",
58
58
  slug: "DOCUSIGN_DELETE_USER_CLOUD_STORAGE_AUTHENTICATION",
59
59
  name: "Delete User Cloud Storage Authentication",
60
60
  description: "Remove a single cloud-storage authentication for a user.",
@@ -66,7 +66,7 @@ const deleteUserCloudStorageAuthentication = defineRestOperation({
66
66
  transformResponse: () => ({ success: true })
67
67
  });
68
68
  const listCloudStorageItems = defineRestOperation({
69
- id: "list_cloud_storage_items",
69
+ id: "docusign.list-cloud-storage-items",
70
70
  slug: "DOCUSIGN_LIST_CLOUD_STORAGE_ITEMS",
71
71
  name: "List Cloud Storage Items",
72
72
  description: "List items available in a configured cloud-storage provider for a user.",
@@ -93,7 +93,7 @@ const listCloudStorageItems = defineRestOperation({
93
93
  })
94
94
  });
95
95
  const retrieveItemsInCloudStorageFolder = defineRestOperation({
96
- id: "retrieve_items_in_cloud_storage_folder",
96
+ id: "docusign.retrieve-items-in-cloud-storage-folder",
97
97
  slug: "DOCUSIGN_RETRIEVE_ITEMS_IN_CLOUD_STORAGE_FOLDER",
98
98
  name: "Retrieve Items In Cloud Storage Folder",
99
99
  description: "Retrieve items inside a specific cloud-storage folder.",
package/dist/connect.mjs CHANGED
@@ -11,7 +11,7 @@ const logId = z.object({ logId: z.string().min(1) });
11
11
  const failureId = z.object({ failureId: z.string().min(1) });
12
12
  const connectUser = connectId.extend({ userId: z.string().min(1) });
13
13
  const createConnectConfigurationForAccount = defineRestOperation({
14
- id: "create_connect_configuration_for_account",
14
+ id: "docusign.create-connect-configuration-for-account",
15
15
  slug: "DOCUSIGN_CREATE_CONNECT_CONFIGURATION_FOR_ACCOUNT",
16
16
  name: "Create Connect Configuration",
17
17
  description: "Create a DocuSign Connect configuration.",
@@ -23,7 +23,7 @@ const createConnectConfigurationForAccount = defineRestOperation({
23
23
  body: (input) => input.configuration
24
24
  });
25
25
  const updateDocusignConnectConfiguration = defineRestOperation({
26
- id: "update_docusign_connect_configuration",
26
+ id: "docusign.update-docusign-connect-configuration",
27
27
  slug: "DOCUSIGN_UPDATE_DOCUSIGN_CONNECT_CONFIGURATION",
28
28
  name: "Update Connect Configuration",
29
29
  description: "Update a DocuSign Connect configuration.",
@@ -35,7 +35,7 @@ const updateDocusignConnectConfiguration = defineRestOperation({
35
35
  body: (input) => input.configuration
36
36
  });
37
37
  const retrieveConnectConfigurations = defineRestOperation({
38
- id: "retrieve_connect_configurations",
38
+ id: "docusign.retrieve-connect-configurations",
39
39
  slug: "DOCUSIGN_RETRIEVE_CONNECT_CONFIGURATIONS",
40
40
  name: "Retrieve Connect Configurations",
41
41
  description: "List Connect configurations on the account.",
@@ -45,7 +45,7 @@ const retrieveConnectConfigurations = defineRestOperation({
45
45
  output: docusignGenericObjectSchema
46
46
  });
47
47
  const retrieveConnectConfigurationDetails = defineRestOperation({
48
- id: "retrieve_connect_configuration_details",
48
+ id: "docusign.retrieve-connect-configuration-details",
49
49
  slug: "DOCUSIGN_RETRIEVE_CONNECT_CONFIGURATION_DETAILS",
50
50
  name: "Retrieve Connect Configuration Details",
51
51
  description: "Retrieve details for a single Connect configuration.",
@@ -55,7 +55,7 @@ const retrieveConnectConfigurationDetails = defineRestOperation({
55
55
  output: docusignConnectConfigurationSchema
56
56
  });
57
57
  const deleteConnectConfiguration = defineRestOperation({
58
- id: "delete_connect_configuration",
58
+ id: "docusign.delete-connect-configuration",
59
59
  slug: "DOCUSIGN_DELETE_CONNECT_CONFIGURATION",
60
60
  name: "Delete Connect Configuration",
61
61
  description: "Delete a Connect configuration.",
@@ -67,7 +67,7 @@ const deleteConnectConfiguration = defineRestOperation({
67
67
  transformResponse: () => ({ success: true })
68
68
  });
69
69
  const setUpConnectOauthConfiguration = defineRestOperation({
70
- id: "set_up_connect_oauth_configuration",
70
+ id: "docusign.set-up-connect-oauth-configuration",
71
71
  slug: "DOCUSIGN_SET_UP_CONNECT_OAUTH_CONFIGURATION",
72
72
  name: "Set Up Connect OAuth Configuration",
73
73
  description: "Create an OAuth configuration used by Connect to sign webhooks.",
@@ -79,7 +79,7 @@ const setUpConnectOauthConfiguration = defineRestOperation({
79
79
  body: (input) => input.oauthConfiguration
80
80
  });
81
81
  const retrieveConnectOauthConfiguration = defineRestOperation({
82
- id: "retrieve_connect_oauth_configuration",
82
+ id: "docusign.retrieve-connect-oauth-configuration",
83
83
  slug: "DOCUSIGN_RETRIEVE_CONNECT_OAUTH_CONFIGURATION",
84
84
  name: "Retrieve Connect OAuth Configuration",
85
85
  description: "Retrieve the Connect OAuth configuration.",
@@ -89,7 +89,7 @@ const retrieveConnectOauthConfiguration = defineRestOperation({
89
89
  output: docusignGenericObjectSchema
90
90
  });
91
91
  const updateConnectOauthConfiguration = defineRestOperation({
92
- id: "update_connect_oauth_configuration",
92
+ id: "docusign.update-connect-oauth-configuration",
93
93
  slug: "DOCUSIGN_UPDATE_CONNECT_OAUTH_CONFIGURATION",
94
94
  name: "Update Connect OAuth Configuration",
95
95
  description: "Update the Connect OAuth configuration.",
@@ -101,7 +101,7 @@ const updateConnectOauthConfiguration = defineRestOperation({
101
101
  body: (input) => input.oauthConfiguration
102
102
  });
103
103
  const deleteConnectOauthConfiguration = defineRestOperation({
104
- id: "delete_connect_oauth_configuration",
104
+ id: "docusign.delete-connect-oauth-configuration",
105
105
  slug: "DOCUSIGN_DELETE_CONNECT_OAUTH_CONFIGURATION",
106
106
  name: "Delete Connect OAuth Configuration",
107
107
  description: "Delete the Connect OAuth configuration.",
@@ -113,7 +113,7 @@ const deleteConnectOauthConfiguration = defineRestOperation({
113
113
  transformResponse: () => ({ success: true })
114
114
  });
115
115
  const retrieveConnectFailureLogs = defineRestOperation({
116
- id: "retrieve_connect_failure_logs",
116
+ id: "docusign.retrieve-connect-failure-logs",
117
117
  slug: "DOCUSIGN_RETRIEVE_CONNECT_FAILURE_LOGS",
118
118
  name: "Retrieve Connect Failure Logs",
119
119
  description: "List Connect delivery failure logs.",
@@ -130,7 +130,7 @@ const retrieveConnectFailureLogs = defineRestOperation({
130
130
  })
131
131
  });
132
132
  const deleteConnectFailureLogEntry = defineRestOperation({
133
- id: "delete_connect_failure_log_entry",
133
+ id: "docusign.delete-connect-failure-log-entry",
134
134
  slug: "DOCUSIGN_DELETE_CONNECT_FAILURE_LOG_ENTRY",
135
135
  name: "Delete Connect Failure Log Entry",
136
136
  description: "Delete a single Connect failure log entry.",
@@ -142,7 +142,7 @@ const deleteConnectFailureLogEntry = defineRestOperation({
142
142
  transformResponse: () => ({ success: true })
143
143
  });
144
144
  const retrieveConnectLogs = defineRestOperation({
145
- id: "retrieve_connect_logs",
145
+ id: "docusign.retrieve-connect-logs",
146
146
  slug: "DOCUSIGN_RETRIEVE_CONNECT_LOGS",
147
147
  name: "Retrieve Connect Logs",
148
148
  description: "List Connect delivery logs.",
@@ -159,7 +159,7 @@ const retrieveConnectLogs = defineRestOperation({
159
159
  })
160
160
  });
161
161
  const retrieveConnectLogEntry = defineRestOperation({
162
- id: "retrieve_connect_log_entry",
162
+ id: "docusign.retrieve-connect-log-entry",
163
163
  slug: "DOCUSIGN_RETRIEVE_CONNECT_LOG_ENTRY",
164
164
  name: "Retrieve Connect Log Entry",
165
165
  description: "Retrieve a single Connect log entry.",
@@ -169,7 +169,7 @@ const retrieveConnectLogEntry = defineRestOperation({
169
169
  output: docusignGenericObjectSchema
170
170
  });
171
171
  const deleteConnectLogEntries = defineRestOperation({
172
- id: "delete_connect_log_entries",
172
+ id: "docusign.delete-connect-log-entries",
173
173
  slug: "DOCUSIGN_DELETE_CONNECT_LOG_ENTRIES",
174
174
  name: "Delete Connect Log Entries",
175
175
  description: "Delete all Connect log entries.",
@@ -181,7 +181,7 @@ const deleteConnectLogEntries = defineRestOperation({
181
181
  transformResponse: () => ({ success: true })
182
182
  });
183
183
  const deleteSpecificConnectLogEntry = defineRestOperation({
184
- id: "delete_specific_connect_log_entry",
184
+ id: "docusign.delete-specific-connect-log-entry",
185
185
  slug: "DOCUSIGN_DELETE_SPECIFIC_CONNECT_LOG_ENTRY",
186
186
  name: "Delete Specific Connect Log Entry",
187
187
  description: "Delete a specific Connect log entry.",
@@ -193,7 +193,7 @@ const deleteSpecificConnectLogEntry = defineRestOperation({
193
193
  transformResponse: () => ({ success: true })
194
194
  });
195
195
  const returnAllConnectServiceUsers = defineRestOperation({
196
- id: "return_all_connect_service_users",
196
+ id: "docusign.return-all-connect-service-users",
197
197
  slug: "DOCUSIGN_RETURN_ALL_CONNECT_SERVICE_USERS",
198
198
  name: "Return All Connect Service Users",
199
199
  description: "List service users allowed to consume Connect events.",
@@ -203,7 +203,7 @@ const returnAllConnectServiceUsers = defineRestOperation({
203
203
  output: docusignGenericObjectSchema
204
204
  });
205
205
  const returnUsersFromConnectService = defineRestOperation({
206
- id: "return_users_from_connect_service",
206
+ id: "docusign.return-users-from-connect-service",
207
207
  slug: "DOCUSIGN_RETURN_USERS_FROM_CONNECT_SERVICE",
208
208
  name: "Return Users From Connect Service",
209
209
  description: "Fetch a specific user allowed to consume Connect events.",
package/dist/contacts.mjs CHANGED
@@ -7,7 +7,7 @@ import { z } from "zod";
7
7
  * Account contacts. Covers PLAN.md § 6.21.
8
8
  */
9
9
  const getDocusignAccountContacts = defineRestOperation({
10
- id: "get_docusign_account_contacts",
10
+ id: "docusign.get-docusign-account-contacts",
11
11
  slug: "DOCUSIGN_GET_DOCUSIGN_ACCOUNT_CONTACTS",
12
12
  name: "Get Account Contacts",
13
13
  description: "List contacts stored on the account address book.",
@@ -26,7 +26,7 @@ const getDocusignAccountContacts = defineRestOperation({
26
26
  })
27
27
  });
28
28
  const addContactsToContactsList = defineRestOperation({
29
- id: "add_contacts_to_contacts_list",
29
+ id: "docusign.add-contacts-to-contacts-list",
30
30
  slug: "DOCUSIGN_ADD_CONTACTS_TO_CONTACTS_LIST",
31
31
  name: "Add Contacts To Contacts List",
32
32
  description: "Add contacts to the account address book.",
@@ -38,7 +38,7 @@ const addContactsToContactsList = defineRestOperation({
38
38
  body: (input) => ({ contactList: input.contactList })
39
39
  });
40
40
  const updateContactsInformation = defineRestOperation({
41
- id: "update_contacts_information",
41
+ id: "docusign.update-contacts-information",
42
42
  slug: "DOCUSIGN_UPDATE_CONTACTS_INFORMATION",
43
43
  name: "Update Contacts Information",
44
44
  description: "Update contacts in the account address book.",
@@ -50,7 +50,7 @@ const updateContactsInformation = defineRestOperation({
50
50
  body: (input) => ({ contactList: input.contactList })
51
51
  });
52
52
  const deleteContactFromAccount = defineRestOperation({
53
- id: "delete_contact_from_account",
53
+ id: "docusign.delete-contact-from-account",
54
54
  slug: "DOCUSIGN_DELETE_CONTACT_FROM_ACCOUNT",
55
55
  name: "Delete Contact From Account",
56
56
  description: "Delete a single contact from the account address book.",
@@ -62,7 +62,7 @@ const deleteContactFromAccount = defineRestOperation({
62
62
  transformResponse: () => ({ success: true })
63
63
  });
64
64
  const deleteMultipleContactsFromAccount = defineRestOperation({
65
- id: "delete_multiple_contacts_from_account",
65
+ id: "docusign.delete-multiple-contacts-from-account",
66
66
  slug: "DOCUSIGN_DELETE_MULTIPLE_CONTACTS_FROM_ACCOUNT",
67
67
  name: "Delete Multiple Contacts From Account",
68
68
  description: "Delete multiple contacts from the account address book.",
package/dist/enote.mjs CHANGED
@@ -7,7 +7,7 @@ import { z } from "zod";
7
7
  * eNote integration. Covers PLAN.md § 6.39.
8
8
  */
9
9
  const getEnoteIntegrationSettings = defineRestOperation({
10
- id: "get_enote_integration_settings",
10
+ id: "docusign.get-enote-integration-settings",
11
11
  slug: "DOCUSIGN_GET_ENOTE_INTEGRATION_SETTINGS",
12
12
  name: "Get eNote Integration Settings",
13
13
  description: "Retrieve eNote integration settings.",
@@ -17,7 +17,7 @@ const getEnoteIntegrationSettings = defineRestOperation({
17
17
  output: docusignGenericObjectSchema
18
18
  });
19
19
  const updateEnoteIntegrationConfig = defineRestOperation({
20
- id: "update_enote_integration_config",
20
+ id: "docusign.update-enote-integration-config",
21
21
  slug: "DOCUSIGN_UPDATE_ENOTE_INTEGRATION_CONFIG",
22
22
  name: "Update eNote Integration Config",
23
23
  description: "Update eNote integration configuration.",
@@ -29,7 +29,7 @@ const updateEnoteIntegrationConfig = defineRestOperation({
29
29
  body: (input) => input.configuration
30
30
  });
31
31
  const deleteEnoteConfiguration = defineRestOperation({
32
- id: "delete_enote_configuration",
32
+ id: "docusign.delete-enote-configuration",
33
33
  slug: "DOCUSIGN_DELETE_ENOTE_CONFIGURATION",
34
34
  name: "Delete eNote Configuration",
35
35
  description: "Delete the eNote integration configuration.",
@@ -15,7 +15,7 @@ const binaryResponseSchema = docusignLooseObjectSchema({
15
15
  body: z.string()
16
16
  });
17
17
  const addEnvelopeAttachments = defineRestOperation({
18
- id: "add_envelope_attachments",
18
+ id: "docusign.add-envelope-attachments",
19
19
  slug: "DOCUSIGN_ADD_ENVELOPE_ATTACHMENTS",
20
20
  name: "Add Envelope Attachments",
21
21
  description: "Attach additional files to an envelope.",
@@ -27,7 +27,7 @@ const addEnvelopeAttachments = defineRestOperation({
27
27
  body: (input) => ({ attachments: input.attachments })
28
28
  });
29
29
  const updateEnvelopeAttachment = defineRestOperation({
30
- id: "update_envelope_attachment",
30
+ id: "docusign.update-envelope-attachment",
31
31
  slug: "DOCUSIGN_UPDATE_ENVELOPE_ATTACHMENT",
32
32
  name: "Update Envelope Attachment",
33
33
  description: "Update a specific attachment on an envelope.",
@@ -39,7 +39,7 @@ const updateEnvelopeAttachment = defineRestOperation({
39
39
  body: (input) => input.attachment
40
40
  });
41
41
  const deleteDraftEnvelopeAttachments = defineRestOperation({
42
- id: "delete_draft_envelope_attachments",
42
+ id: "docusign.delete-draft-envelope-attachments",
43
43
  slug: "DOCUSIGN_DELETE_DRAFT_ENVELOPE_ATTACHMENTS",
44
44
  name: "Delete Draft Envelope Attachments",
45
45
  description: "Remove attachments from a draft envelope.",
@@ -52,7 +52,7 @@ const deleteDraftEnvelopeAttachments = defineRestOperation({
52
52
  transformResponse: () => ({ success: true })
53
53
  });
54
54
  const retrieveEnvelopeAttachment = defineBinaryOperation({
55
- id: "retrieve_envelope_attachment",
55
+ id: "docusign.retrieve-envelope-attachment",
56
56
  slug: "DOCUSIGN_RETRIEVE_ENVELOPE_ATTACHMENT",
57
57
  name: "Retrieve Envelope Attachment",
58
58
  description: "Download the binary contents of a specific attachment on an envelope.",
@@ -62,7 +62,7 @@ const retrieveEnvelopeAttachment = defineBinaryOperation({
62
62
  output: binaryResponseSchema
63
63
  });
64
64
  const listEnvelopeAttachmentsByEnvelopeId = defineRestOperation({
65
- id: "list_envelope_attachments_by_envelope_id",
65
+ id: "docusign.list-envelope-attachments-by-envelope-id",
66
66
  slug: "DOCUSIGN_LIST_ENVELOPE_ATTACHMENTS_BY_ENVELOPE_ID",
67
67
  name: "List Envelope Attachments",
68
68
  description: "List all attachments on an envelope.",
@@ -9,7 +9,7 @@ import { z } from "zod";
9
9
  */
10
10
  const envId = z.object({ envelopeId: docusignEnvelopeIdSchema });
11
11
  const createCustomFieldsForEnvelope = defineRestOperation({
12
- id: "create_custom_fields_for_envelope",
12
+ id: "docusign.create-custom-fields-for-envelope",
13
13
  slug: "DOCUSIGN_CREATE_CUSTOM_FIELDS_FOR_ENVELOPE",
14
14
  name: "Create Custom Fields For Envelope",
15
15
  description: "Attach custom fields to an envelope.",
@@ -21,7 +21,7 @@ const createCustomFieldsForEnvelope = defineRestOperation({
21
21
  body: (input) => input.customFields
22
22
  });
23
23
  const retrieveCustomFieldsForEnvelope = defineRestOperation({
24
- id: "retrieve_custom_fields_for_envelope",
24
+ id: "docusign.retrieve-custom-fields-for-envelope",
25
25
  slug: "DOCUSIGN_RETRIEVE_CUSTOM_FIELDS_FOR_ENVELOPE",
26
26
  name: "Retrieve Custom Fields For Envelope",
27
27
  description: "List custom fields attached to an envelope.",
@@ -31,7 +31,7 @@ const retrieveCustomFieldsForEnvelope = defineRestOperation({
31
31
  output: docusignCustomFieldsResponseSchema
32
32
  });
33
33
  const updateEnvelopeCustomFields = defineRestOperation({
34
- id: "update_envelope_custom_fields",
34
+ id: "docusign.update-envelope-custom-fields",
35
35
  slug: "DOCUSIGN_UPDATE_ENVELOPE_CUSTOM_FIELDS",
36
36
  name: "Update Envelope Custom Fields",
37
37
  description: "Update custom fields on an envelope.",
@@ -43,7 +43,7 @@ const updateEnvelopeCustomFields = defineRestOperation({
43
43
  body: (input) => input.customFields
44
44
  });
45
45
  const deleteEnvelopeCustomFields = defineRestOperation({
46
- id: "delete_envelope_custom_fields",
46
+ id: "docusign.delete-envelope-custom-fields",
47
47
  slug: "DOCUSIGN_DELETE_ENVELOPE_CUSTOM_FIELDS",
48
48
  name: "Delete Envelope Custom Fields",
49
49
  description: "Delete custom fields from an envelope.",
@@ -56,7 +56,7 @@ const deleteEnvelopeCustomFields = defineRestOperation({
56
56
  transformResponse: () => ({ success: true })
57
57
  });
58
58
  const getEnvelopeDocGenFormFields = defineRestOperation({
59
- id: "get_envelope_doc_gen_form_fields",
59
+ id: "docusign.get-envelope-doc-gen-form-fields",
60
60
  slug: "DOCUSIGN_GET_ENVELOPE_DOC_GEN_FORM_FIELDS",
61
61
  name: "Get Envelope DocGen Form Fields",
62
62
  description: "Retrieve the DocGen form fields captured on an envelope.",
@@ -66,7 +66,7 @@ const getEnvelopeDocGenFormFields = defineRestOperation({
66
66
  output: docusignGenericObjectSchema
67
67
  });
68
68
  const updateEnvelopeDocGenFormFields = defineRestOperation({
69
- id: "update_envelope_doc_gen_form_fields",
69
+ id: "docusign.update-envelope-doc-gen-form-fields",
70
70
  slug: "DOCUSIGN_UPDATE_ENVELOPE_DOC_GEN_FORM_FIELDS",
71
71
  name: "Update Envelope DocGen Form Fields",
72
72
  description: "Update the DocGen form fields on an envelope.",
@@ -78,7 +78,7 @@ const updateEnvelopeDocGenFormFields = defineRestOperation({
78
78
  body: (input) => ({ docGenFormFields: input.docGenFormFields })
79
79
  });
80
80
  const listEnvelopeAndDocumentCustomFields = defineRestOperation({
81
- id: "list_envelope_and_document_custom_fields",
81
+ id: "docusign.list-envelope-and-document-custom-fields",
82
82
  slug: "DOCUSIGN_LIST_ENVELOPE_AND_DOCUMENT_CUSTOM_FIELDS",
83
83
  name: "List Envelope And Document Custom Fields",
84
84
  description: "Combined helper that fetches envelope-level custom fields in one call.",