@keystrokehq/docusign 0.0.9 → 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.
- package/dist/account-custom-fields.mjs +4 -4
- package/dist/account-stamps.mjs +11 -11
- package/dist/account-tabs.mjs +6 -6
- package/dist/account.mjs +18 -18
- package/dist/admin.mjs +1 -1
- package/dist/auth.mjs +2 -2
- package/dist/bcc-archive.mjs +4 -4
- package/dist/billing.mjs +16 -16
- package/dist/brands.mjs +11 -11
- package/dist/bulk-send.d.mts +1 -1
- package/dist/bulk-send.mjs +8 -8
- package/dist/chunked-uploads.mjs +5 -5
- package/dist/click.mjs +1 -1
- package/dist/clm.mjs +1 -1
- package/dist/cloud-storage.mjs +7 -7
- package/dist/connect.mjs +17 -17
- package/dist/contacts.mjs +5 -5
- package/dist/enote.mjs +3 -3
- package/dist/envelope-attachments.mjs +5 -5
- package/dist/envelope-custom-fields.mjs +7 -7
- package/dist/envelope-documents.mjs +16 -16
- package/dist/envelope-email.mjs +4 -4
- package/dist/envelope-lock.mjs +4 -4
- package/dist/envelope-logs.mjs +9 -9
- package/dist/envelope-notifications.mjs +3 -3
- package/dist/envelope-recipients.mjs +11 -11
- package/dist/envelope-tabs.mjs +3 -3
- package/dist/envelope-views.mjs +6 -6
- package/dist/envelope-workflow.mjs +14 -14
- package/dist/envelopes.d.mts +1 -1
- package/dist/envelopes.mjs +13 -13
- package/dist/groups.mjs +10 -10
- package/dist/monitor.mjs +1 -1
- package/dist/notary.mjs +9 -9
- package/dist/permission-profiles.mjs +5 -5
- package/dist/power-forms.mjs +3 -3
- package/dist/rooms.mjs +1 -1
- package/dist/schemas/index.d.mts +3 -3
- package/dist/signing-groups.mjs +9 -9
- package/dist/template-custom-fields.mjs +8 -8
- package/dist/template-documents.mjs +8 -8
- package/dist/template-lock.mjs +4 -4
- package/dist/template-sharing.mjs +8 -8
- package/dist/template-workflow.mjs +12 -12
- package/dist/templates.mjs +7 -7
- package/dist/user-authorizations.mjs +8 -8
- package/dist/user-custom-settings.mjs +5 -5
- package/dist/user-profile.mjs +7 -7
- package/dist/user-signatures.mjs +13 -13
- package/dist/users.mjs +6 -6
- package/dist/workspaces.mjs +11 -11
- package/package.json +2 -2
package/dist/workspaces.mjs
CHANGED
|
@@ -16,7 +16,7 @@ const binaryResponseSchema = docusignLooseObjectSchema({
|
|
|
16
16
|
body: z.string()
|
|
17
17
|
});
|
|
18
18
|
const createACollaborativeWorkspace = defineRestOperation({
|
|
19
|
-
id: "
|
|
19
|
+
id: "docusign.create-a-collaborative-workspace",
|
|
20
20
|
slug: "DOCUSIGN_CREATE_A_COLLABORATIVE_WORKSPACE",
|
|
21
21
|
name: "Create Collaborative Workspace",
|
|
22
22
|
description: "Create a new collaborative workspace.",
|
|
@@ -28,7 +28,7 @@ const createACollaborativeWorkspace = defineRestOperation({
|
|
|
28
28
|
body: (input) => input.workspace
|
|
29
29
|
});
|
|
30
30
|
const listWorkspaces = defineRestOperation({
|
|
31
|
-
id: "
|
|
31
|
+
id: "docusign.list-workspaces",
|
|
32
32
|
slug: "DOCUSIGN_LIST_WORKSPACES",
|
|
33
33
|
name: "List Workspaces",
|
|
34
34
|
description: "List collaborative workspaces.",
|
|
@@ -38,7 +38,7 @@ const listWorkspaces = defineRestOperation({
|
|
|
38
38
|
output: docusignGenericObjectSchema
|
|
39
39
|
});
|
|
40
40
|
const retrievePropertiesAboutWorkspace = defineRestOperation({
|
|
41
|
-
id: "
|
|
41
|
+
id: "docusign.retrieve-properties-about-workspace",
|
|
42
42
|
slug: "DOCUSIGN_RETRIEVE_PROPERTIES_ABOUT_WORKSPACE",
|
|
43
43
|
name: "Retrieve Workspace Properties",
|
|
44
44
|
description: "Retrieve properties for a workspace.",
|
|
@@ -48,7 +48,7 @@ const retrievePropertiesAboutWorkspace = defineRestOperation({
|
|
|
48
48
|
output: docusignGenericObjectSchema
|
|
49
49
|
});
|
|
50
50
|
const updateWorkspaceInformation = defineRestOperation({
|
|
51
|
-
id: "
|
|
51
|
+
id: "docusign.update-workspace-information",
|
|
52
52
|
slug: "DOCUSIGN_UPDATE_WORKSPACE_INFORMATION",
|
|
53
53
|
name: "Update Workspace Information",
|
|
54
54
|
description: "Update workspace information.",
|
|
@@ -60,7 +60,7 @@ const updateWorkspaceInformation = defineRestOperation({
|
|
|
60
60
|
body: (input) => input.workspace
|
|
61
61
|
});
|
|
62
62
|
const deleteExistingWorkspaceLogically = defineRestOperation({
|
|
63
|
-
id: "
|
|
63
|
+
id: "docusign.delete-existing-workspace-logically",
|
|
64
64
|
slug: "DOCUSIGN_DELETE_EXISTING_WORKSPACE_LOGICALLY",
|
|
65
65
|
name: "Logically Delete Workspace",
|
|
66
66
|
description: "Soft-delete a workspace.",
|
|
@@ -72,7 +72,7 @@ const deleteExistingWorkspaceLogically = defineRestOperation({
|
|
|
72
72
|
transformResponse: () => ({ success: true })
|
|
73
73
|
});
|
|
74
74
|
const addFileToWorkspace = defineRestOperation({
|
|
75
|
-
id: "
|
|
75
|
+
id: "docusign.add-file-to-workspace",
|
|
76
76
|
slug: "DOCUSIGN_ADD_FILE_TO_WORKSPACE",
|
|
77
77
|
name: "Add File To Workspace",
|
|
78
78
|
description: "Upload a file into a workspace folder.",
|
|
@@ -84,7 +84,7 @@ const addFileToWorkspace = defineRestOperation({
|
|
|
84
84
|
body: (input) => input.file
|
|
85
85
|
});
|
|
86
86
|
const getWorkspaceFile = defineBinaryOperation({
|
|
87
|
-
id: "
|
|
87
|
+
id: "docusign.get-workspace-file",
|
|
88
88
|
slug: "DOCUSIGN_GET_WORKSPACE_FILE",
|
|
89
89
|
name: "Get Workspace File",
|
|
90
90
|
description: "Download a file from a workspace folder.",
|
|
@@ -94,7 +94,7 @@ const getWorkspaceFile = defineBinaryOperation({
|
|
|
94
94
|
output: binaryResponseSchema
|
|
95
95
|
});
|
|
96
96
|
const listWorkspaceFilePages = defineRestOperation({
|
|
97
|
-
id: "
|
|
97
|
+
id: "docusign.list-workspace-file-pages",
|
|
98
98
|
slug: "DOCUSIGN_LIST_WORKSPACE_FILE_PAGES",
|
|
99
99
|
name: "List Workspace File Pages",
|
|
100
100
|
description: "List page images for a workspace file.",
|
|
@@ -104,7 +104,7 @@ const listWorkspaceFilePages = defineRestOperation({
|
|
|
104
104
|
output: docusignGenericObjectSchema
|
|
105
105
|
});
|
|
106
106
|
const getWorkspaceFolderContents = defineRestOperation({
|
|
107
|
-
id: "
|
|
107
|
+
id: "docusign.get-workspace-folder-contents",
|
|
108
108
|
slug: "DOCUSIGN_GET_WORKSPACE_FOLDER_CONTENTS",
|
|
109
109
|
name: "Get Workspace Folder Contents",
|
|
110
110
|
description: "List the contents of a workspace folder.",
|
|
@@ -114,7 +114,7 @@ const getWorkspaceFolderContents = defineRestOperation({
|
|
|
114
114
|
output: docusignGenericObjectSchema
|
|
115
115
|
});
|
|
116
116
|
const deleteWorkspaceFilesOrFolders = defineRestOperation({
|
|
117
|
-
id: "
|
|
117
|
+
id: "docusign.delete-workspace-files-or-folders",
|
|
118
118
|
slug: "DOCUSIGN_DELETE_WORKSPACE_FILES_OR_FOLDERS",
|
|
119
119
|
name: "Delete Workspace Files Or Folders",
|
|
120
120
|
description: "Delete files or folders from a workspace.",
|
|
@@ -127,7 +127,7 @@ const deleteWorkspaceFilesOrFolders = defineRestOperation({
|
|
|
127
127
|
transformResponse: () => ({ success: true })
|
|
128
128
|
});
|
|
129
129
|
const updateWorkspaceItemMetadata = defineRestOperation({
|
|
130
|
-
id: "
|
|
130
|
+
id: "docusign.update-workspace-item-metadata",
|
|
131
131
|
slug: "DOCUSIGN_UPDATE_WORKSPACE_ITEM_METADATA",
|
|
132
132
|
name: "Update Workspace Item Metadata",
|
|
133
133
|
description: "Update metadata on a workspace item.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/docusign",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
],
|
|
246
246
|
"dependencies": {
|
|
247
247
|
"@keystrokehq/credential-connection": "^1.0.0",
|
|
248
|
-
"@keystrokehq/integration-authoring": "^0.0.
|
|
248
|
+
"@keystrokehq/integration-authoring": "^0.0.8",
|
|
249
249
|
"zod": "^4.3.6"
|
|
250
250
|
},
|
|
251
251
|
"peerDependencies": {
|