@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
|
@@ -8,7 +8,7 @@ import { z } from "zod";
|
|
|
8
8
|
*/
|
|
9
9
|
const fieldId = z.object({ customFieldId: z.string().min(1) });
|
|
10
10
|
const createAccountCustomField = defineRestOperation({
|
|
11
|
-
id: "
|
|
11
|
+
id: "docusign.create-account-custom-field",
|
|
12
12
|
slug: "DOCUSIGN_CREATE_ACCOUNT_CUSTOM_FIELD",
|
|
13
13
|
name: "Create Account Custom Field",
|
|
14
14
|
description: "Create a custom field at the account level.",
|
|
@@ -24,7 +24,7 @@ const createAccountCustomField = defineRestOperation({
|
|
|
24
24
|
body: (input) => input.customField
|
|
25
25
|
});
|
|
26
26
|
const updateAccountCustomField = defineRestOperation({
|
|
27
|
-
id: "
|
|
27
|
+
id: "docusign.update-account-custom-field",
|
|
28
28
|
slug: "DOCUSIGN_UPDATE_ACCOUNT_CUSTOM_FIELD",
|
|
29
29
|
name: "Update Account Custom Field",
|
|
30
30
|
description: "Update an account-level custom field.",
|
|
@@ -36,7 +36,7 @@ const updateAccountCustomField = defineRestOperation({
|
|
|
36
36
|
body: (input) => input.customField
|
|
37
37
|
});
|
|
38
38
|
const deleteAccountCustomField = defineRestOperation({
|
|
39
|
-
id: "
|
|
39
|
+
id: "docusign.delete-account-custom-field",
|
|
40
40
|
slug: "DOCUSIGN_DELETE_ACCOUNT_CUSTOM_FIELD",
|
|
41
41
|
name: "Delete Account Custom Field",
|
|
42
42
|
description: "Delete an account-level custom field.",
|
|
@@ -48,7 +48,7 @@ const deleteAccountCustomField = defineRestOperation({
|
|
|
48
48
|
transformResponse: () => ({ success: true })
|
|
49
49
|
});
|
|
50
50
|
const retrieveAllAccountTabs = defineRestOperation({
|
|
51
|
-
id: "
|
|
51
|
+
id: "docusign.retrieve-all-account-tabs",
|
|
52
52
|
slug: "DOCUSIGN_RETRIEVE_ALL_ACCOUNT_TABS",
|
|
53
53
|
name: "Retrieve All Account Tabs",
|
|
54
54
|
description: "Retrieve all tabs available on the account.",
|
package/dist/account-stamps.mjs
CHANGED
|
@@ -14,7 +14,7 @@ const binaryResponseSchema = docusignLooseObjectSchema({
|
|
|
14
14
|
body: z.string()
|
|
15
15
|
});
|
|
16
16
|
const addOrUpdateAccountStamps = defineRestOperation({
|
|
17
|
-
id: "
|
|
17
|
+
id: "docusign.add-or-update-account-stamps",
|
|
18
18
|
slug: "DOCUSIGN_ADD_OR_UPDATE_ACCOUNT_STAMPS",
|
|
19
19
|
name: "Add Or Update Account Stamps",
|
|
20
20
|
description: "Add or update account stamp configurations.",
|
|
@@ -26,7 +26,7 @@ const addOrUpdateAccountStamps = defineRestOperation({
|
|
|
26
26
|
body: (input) => ({ stamps: input.stamps })
|
|
27
27
|
});
|
|
28
28
|
const retrieveAvailableAccountStamps = defineRestOperation({
|
|
29
|
-
id: "
|
|
29
|
+
id: "docusign.retrieve-available-account-stamps",
|
|
30
30
|
slug: "DOCUSIGN_RETRIEVE_AVAILABLE_ACCOUNT_STAMPS",
|
|
31
31
|
name: "Retrieve Available Account Stamps",
|
|
32
32
|
description: "Retrieve the available account stamps.",
|
|
@@ -37,7 +37,7 @@ const retrieveAvailableAccountStamps = defineRestOperation({
|
|
|
37
37
|
query: (input) => ({ status: input.status })
|
|
38
38
|
});
|
|
39
39
|
const getSpecifiedAccountStampInfo = defineRestOperation({
|
|
40
|
-
id: "
|
|
40
|
+
id: "docusign.get-specified-account-stamp-info",
|
|
41
41
|
slug: "DOCUSIGN_GET_SPECIFIED_ACCOUNT_STAMP_INFO",
|
|
42
42
|
name: "Get Account Stamp Info",
|
|
43
43
|
description: "Retrieve metadata for a specific account stamp.",
|
|
@@ -47,7 +47,7 @@ const getSpecifiedAccountStampInfo = defineRestOperation({
|
|
|
47
47
|
output: docusignGenericObjectSchema
|
|
48
48
|
});
|
|
49
49
|
const getAccountStampImage = defineBinaryOperation({
|
|
50
|
-
id: "
|
|
50
|
+
id: "docusign.get-account-stamp-image",
|
|
51
51
|
slug: "DOCUSIGN_GET_ACCOUNT_STAMP_IMAGE",
|
|
52
52
|
name: "Get Account Stamp Image",
|
|
53
53
|
description: "Download the image for an account stamp.",
|
|
@@ -58,7 +58,7 @@ const getAccountStampImage = defineBinaryOperation({
|
|
|
58
58
|
output: binaryResponseSchema
|
|
59
59
|
});
|
|
60
60
|
const updateAccountStampById = defineRestOperation({
|
|
61
|
-
id: "
|
|
61
|
+
id: "docusign.update-account-stamp-by-id",
|
|
62
62
|
slug: "DOCUSIGN_UPDATE_ACCOUNT_STAMP_BY_ID",
|
|
63
63
|
name: "Update Account Stamp By Id",
|
|
64
64
|
description: "Update a specific account stamp.",
|
|
@@ -70,7 +70,7 @@ const updateAccountStampById = defineRestOperation({
|
|
|
70
70
|
body: (input) => input.stamp
|
|
71
71
|
});
|
|
72
72
|
const updateAccountStamps = defineRestOperation({
|
|
73
|
-
id: "
|
|
73
|
+
id: "docusign.update-account-stamps",
|
|
74
74
|
slug: "DOCUSIGN_UPDATE_ACCOUNT_STAMPS",
|
|
75
75
|
name: "Update Account Stamps",
|
|
76
76
|
description: "Batch update account stamps.",
|
|
@@ -82,7 +82,7 @@ const updateAccountStamps = defineRestOperation({
|
|
|
82
82
|
body: (input) => ({ stamps: input.stamps })
|
|
83
83
|
});
|
|
84
84
|
const deleteAccountStamp = defineRestOperation({
|
|
85
|
-
id: "
|
|
85
|
+
id: "docusign.delete-account-stamp",
|
|
86
86
|
slug: "DOCUSIGN_DELETE_ACCOUNT_STAMP",
|
|
87
87
|
name: "Delete Account Stamp",
|
|
88
88
|
description: "Delete a single account stamp.",
|
|
@@ -94,7 +94,7 @@ const deleteAccountStamp = defineRestOperation({
|
|
|
94
94
|
transformResponse: () => ({ success: true })
|
|
95
95
|
});
|
|
96
96
|
const deleteStampImageForAccount = defineRestOperation({
|
|
97
|
-
id: "
|
|
97
|
+
id: "docusign.delete-stamp-image-for-account",
|
|
98
98
|
slug: "DOCUSIGN_DELETE_STAMP_IMAGE_FOR_ACCOUNT",
|
|
99
99
|
name: "Delete Stamp Image",
|
|
100
100
|
description: "Delete the image for an account stamp.",
|
|
@@ -106,7 +106,7 @@ const deleteStampImageForAccount = defineRestOperation({
|
|
|
106
106
|
transformResponse: () => ({ success: true })
|
|
107
107
|
});
|
|
108
108
|
const getWatermarkDetailsForAccount = defineRestOperation({
|
|
109
|
-
id: "
|
|
109
|
+
id: "docusign.get-watermark-details-for-account",
|
|
110
110
|
slug: "DOCUSIGN_GET_WATERMARK_DETAILS_FOR_ACCOUNT",
|
|
111
111
|
name: "Get Watermark Details",
|
|
112
112
|
description: "Retrieve watermark details for the account.",
|
|
@@ -116,7 +116,7 @@ const getWatermarkDetailsForAccount = defineRestOperation({
|
|
|
116
116
|
output: docusignGenericObjectSchema
|
|
117
117
|
});
|
|
118
118
|
const updateAccountWatermarkInformation = defineRestOperation({
|
|
119
|
-
id: "
|
|
119
|
+
id: "docusign.update-account-watermark-information",
|
|
120
120
|
slug: "DOCUSIGN_UPDATE_ACCOUNT_WATERMARK_INFORMATION",
|
|
121
121
|
name: "Update Account Watermark",
|
|
122
122
|
description: "Update the account watermark.",
|
|
@@ -128,7 +128,7 @@ const updateAccountWatermarkInformation = defineRestOperation({
|
|
|
128
128
|
body: (input) => input.watermark
|
|
129
129
|
});
|
|
130
130
|
const updateAccountWatermarkPreview = defineRestOperation({
|
|
131
|
-
id: "
|
|
131
|
+
id: "docusign.update-account-watermark-preview",
|
|
132
132
|
slug: "DOCUSIGN_UPDATE_ACCOUNT_WATERMARK_PREVIEW",
|
|
133
133
|
name: "Update Account Watermark Preview",
|
|
134
134
|
description: "Preview a watermark update.",
|
package/dist/account-tabs.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { z } from "zod";
|
|
|
8
8
|
*/
|
|
9
9
|
const customTabId = z.object({ customTabId: z.string().min(1) });
|
|
10
10
|
const getTabSettingsForAccount = defineRestOperation({
|
|
11
|
-
id: "
|
|
11
|
+
id: "docusign.get-tab-settings-for-account",
|
|
12
12
|
slug: "DOCUSIGN_GET_TAB_SETTINGS_FOR_ACCOUNT",
|
|
13
13
|
name: "Get Tab Settings For Account",
|
|
14
14
|
description: "Retrieve tab settings for the account.",
|
|
@@ -18,7 +18,7 @@ const getTabSettingsForAccount = defineRestOperation({
|
|
|
18
18
|
output: docusignGenericObjectSchema
|
|
19
19
|
});
|
|
20
20
|
const modifyTabSettingsForAccount = defineRestOperation({
|
|
21
|
-
id: "
|
|
21
|
+
id: "docusign.modify-tab-settings-for-account",
|
|
22
22
|
slug: "DOCUSIGN_MODIFY_TAB_SETTINGS_FOR_ACCOUNT",
|
|
23
23
|
name: "Modify Tab Settings",
|
|
24
24
|
description: "Update tab settings for the account.",
|
|
@@ -30,7 +30,7 @@ const modifyTabSettingsForAccount = defineRestOperation({
|
|
|
30
30
|
body: (input) => input.tabSettings
|
|
31
31
|
});
|
|
32
32
|
const createCustomTabWithProperties = defineRestOperation({
|
|
33
|
-
id: "
|
|
33
|
+
id: "docusign.create-custom-tab-with-properties",
|
|
34
34
|
slug: "DOCUSIGN_CREATE_CUSTOM_TAB_WITH_PROPERTIES",
|
|
35
35
|
name: "Create Custom Tab",
|
|
36
36
|
description: "Create a custom tab on the account.",
|
|
@@ -42,7 +42,7 @@ const createCustomTabWithProperties = defineRestOperation({
|
|
|
42
42
|
body: (input) => input.tab
|
|
43
43
|
});
|
|
44
44
|
const retrieveCustomTabInformation = defineRestOperation({
|
|
45
|
-
id: "
|
|
45
|
+
id: "docusign.retrieve-custom-tab-information",
|
|
46
46
|
slug: "DOCUSIGN_RETRIEVE_CUSTOM_TAB_INFORMATION",
|
|
47
47
|
name: "Retrieve Custom Tab Information",
|
|
48
48
|
description: "Retrieve information for a specific custom tab definition.",
|
|
@@ -52,7 +52,7 @@ const retrieveCustomTabInformation = defineRestOperation({
|
|
|
52
52
|
output: docusignGenericObjectSchema
|
|
53
53
|
});
|
|
54
54
|
const updateCustomTabInformationForAccount = defineRestOperation({
|
|
55
|
-
id: "
|
|
55
|
+
id: "docusign.update-custom-tab-information-for-account",
|
|
56
56
|
slug: "DOCUSIGN_UPDATE_CUSTOM_TAB_INFORMATION_FOR_ACCOUNT",
|
|
57
57
|
name: "Update Custom Tab Information",
|
|
58
58
|
description: "Update a custom tab definition.",
|
|
@@ -64,7 +64,7 @@ const updateCustomTabInformationForAccount = defineRestOperation({
|
|
|
64
64
|
body: (input) => input.tab
|
|
65
65
|
});
|
|
66
66
|
const deleteCustomTabInformation = defineRestOperation({
|
|
67
|
-
id: "
|
|
67
|
+
id: "docusign.delete-custom-tab-information",
|
|
68
68
|
slug: "DOCUSIGN_DELETE_CUSTOM_TAB_INFORMATION",
|
|
69
69
|
name: "Delete Custom Tab Information",
|
|
70
70
|
description: "Delete a custom tab definition.",
|
package/dist/account.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { z } from "zod";
|
|
|
8
8
|
* Covers PLAN.md § 6.31.
|
|
9
9
|
*/
|
|
10
10
|
const retrieveAccountInformationForSpecifiedAccount = defineRestOperation({
|
|
11
|
-
id: "
|
|
11
|
+
id: "docusign.retrieve-account-information-for-specified-account",
|
|
12
12
|
slug: "DOCUSIGN_RETRIEVE_ACCOUNT_INFORMATION_FOR_SPECIFIED_ACCOUNT",
|
|
13
13
|
name: "Retrieve Account Information",
|
|
14
14
|
description: "Retrieve information about the connected DocuSign account.",
|
|
@@ -19,7 +19,7 @@ const retrieveAccountInformationForSpecifiedAccount = defineRestOperation({
|
|
|
19
19
|
query: (input) => ({ include_account_settings: input.includeAccountSettings })
|
|
20
20
|
});
|
|
21
21
|
const deleteSpecifiedAccount = defineRestOperation({
|
|
22
|
-
id: "
|
|
22
|
+
id: "docusign.delete-specified-account",
|
|
23
23
|
slug: "DOCUSIGN_DELETE_SPECIFIED_ACCOUNT",
|
|
24
24
|
name: "Delete Account",
|
|
25
25
|
description: "Close the connected DocuSign account (admin only).",
|
|
@@ -32,7 +32,7 @@ const deleteSpecifiedAccount = defineRestOperation({
|
|
|
32
32
|
transformResponse: () => ({ success: true })
|
|
33
33
|
});
|
|
34
34
|
const retrieveAccountSettingsInformation = defineRestOperation({
|
|
35
|
-
id: "
|
|
35
|
+
id: "docusign.retrieve-account-settings-information",
|
|
36
36
|
slug: "DOCUSIGN_RETRIEVE_ACCOUNT_SETTINGS_INFORMATION",
|
|
37
37
|
name: "Retrieve Account Settings",
|
|
38
38
|
description: "Retrieve account settings.",
|
|
@@ -42,7 +42,7 @@ const retrieveAccountSettingsInformation = defineRestOperation({
|
|
|
42
42
|
output: docusignGenericObjectSchema
|
|
43
43
|
});
|
|
44
44
|
const updateAccountSettings = defineRestOperation({
|
|
45
|
-
id: "
|
|
45
|
+
id: "docusign.update-account-settings",
|
|
46
46
|
slug: "DOCUSIGN_UPDATE_ACCOUNT_SETTINGS",
|
|
47
47
|
name: "Update Account Settings",
|
|
48
48
|
description: "Update account settings.",
|
|
@@ -54,7 +54,7 @@ const updateAccountSettings = defineRestOperation({
|
|
|
54
54
|
body: (input) => input.accountSettings
|
|
55
55
|
});
|
|
56
56
|
const getAccountPasswordRules = defineRestOperation({
|
|
57
|
-
id: "
|
|
57
|
+
id: "docusign.get-account-password-rules",
|
|
58
58
|
slug: "DOCUSIGN_GET_ACCOUNT_PASSWORD_RULES",
|
|
59
59
|
name: "Get Account Password Rules",
|
|
60
60
|
description: "Retrieve password rules on the account.",
|
|
@@ -64,7 +64,7 @@ const getAccountPasswordRules = defineRestOperation({
|
|
|
64
64
|
output: docusignGenericObjectSchema
|
|
65
65
|
});
|
|
66
66
|
const retrieveAccountPasswordRules = defineRestOperation({
|
|
67
|
-
id: "
|
|
67
|
+
id: "docusign.retrieve-account-password-rules",
|
|
68
68
|
slug: "DOCUSIGN_RETRIEVE_ACCOUNT_PASSWORD_RULES",
|
|
69
69
|
name: "Retrieve Account Password Rules",
|
|
70
70
|
description: "Alias: retrieve password rules on the account.",
|
|
@@ -74,7 +74,7 @@ const retrieveAccountPasswordRules = defineRestOperation({
|
|
|
74
74
|
output: docusignGenericObjectSchema
|
|
75
75
|
});
|
|
76
76
|
const updateAccountPasswordRules = defineRestOperation({
|
|
77
|
-
id: "
|
|
77
|
+
id: "docusign.update-account-password-rules",
|
|
78
78
|
slug: "DOCUSIGN_UPDATE_ACCOUNT_PASSWORD_RULES",
|
|
79
79
|
name: "Update Account Password Rules",
|
|
80
80
|
description: "Update password rules on the account.",
|
|
@@ -86,7 +86,7 @@ const updateAccountPasswordRules = defineRestOperation({
|
|
|
86
86
|
body: (input) => input.passwordRules
|
|
87
87
|
});
|
|
88
88
|
const retrieveAccountProvisioningInfo = defineRestOperation({
|
|
89
|
-
id: "
|
|
89
|
+
id: "docusign.retrieve-account-provisioning-info",
|
|
90
90
|
slug: "DOCUSIGN_RETRIEVE_ACCOUNT_PROVISIONING_INFO",
|
|
91
91
|
name: "Retrieve Account Provisioning Info",
|
|
92
92
|
description: "Retrieve provisioning info for the account.",
|
|
@@ -97,7 +97,7 @@ const retrieveAccountProvisioningInfo = defineRestOperation({
|
|
|
97
97
|
accountScoped: false
|
|
98
98
|
});
|
|
99
99
|
const retrieveAccountSealProviders = defineRestOperation({
|
|
100
|
-
id: "
|
|
100
|
+
id: "docusign.retrieve-account-seal-providers",
|
|
101
101
|
slug: "DOCUSIGN_RETRIEVE_ACCOUNT_SEAL_PROVIDERS",
|
|
102
102
|
name: "Retrieve Account Seal Providers",
|
|
103
103
|
description: "Retrieve seal providers configured on the account.",
|
|
@@ -107,7 +107,7 @@ const retrieveAccountSealProviders = defineRestOperation({
|
|
|
107
107
|
output: docusignGenericObjectSchema
|
|
108
108
|
});
|
|
109
109
|
const retrieveAccountEnvelopePurgeConfig = defineRestOperation({
|
|
110
|
-
id: "
|
|
110
|
+
id: "docusign.retrieve-account-envelope-purge-config",
|
|
111
111
|
slug: "DOCUSIGN_RETRIEVE_ACCOUNT_ENVELOPE_PURGE_CONFIG",
|
|
112
112
|
name: "Retrieve Envelope Purge Config",
|
|
113
113
|
description: "Retrieve the envelope-purge configuration.",
|
|
@@ -117,7 +117,7 @@ const retrieveAccountEnvelopePurgeConfig = defineRestOperation({
|
|
|
117
117
|
output: docusignGenericObjectSchema
|
|
118
118
|
});
|
|
119
119
|
const setEnvelopePurgeConfigForAccount = defineRestOperation({
|
|
120
|
-
id: "
|
|
120
|
+
id: "docusign.set-envelope-purge-config-for-account",
|
|
121
121
|
slug: "DOCUSIGN_SET_ENVELOPE_PURGE_CONFIG_FOR_ACCOUNT",
|
|
122
122
|
name: "Set Envelope Purge Config",
|
|
123
123
|
description: "Update the envelope-purge configuration.",
|
|
@@ -129,7 +129,7 @@ const setEnvelopePurgeConfigForAccount = defineRestOperation({
|
|
|
129
129
|
body: (input) => input.config
|
|
130
130
|
});
|
|
131
131
|
const retrieveAccountVerificationWorkflows = defineRestOperation({
|
|
132
|
-
id: "
|
|
132
|
+
id: "docusign.retrieve-account-verification-workflows",
|
|
133
133
|
slug: "DOCUSIGN_RETRIEVE_ACCOUNT_VERIFICATION_WORKFLOWS",
|
|
134
134
|
name: "Retrieve Account Verification Workflows",
|
|
135
135
|
description: "Retrieve verification workflows (identity) on the account.",
|
|
@@ -139,7 +139,7 @@ const retrieveAccountVerificationWorkflows = defineRestOperation({
|
|
|
139
139
|
output: docusignGenericObjectSchema
|
|
140
140
|
});
|
|
141
141
|
const listSignatureProvidersForAccount = defineRestOperation({
|
|
142
|
-
id: "
|
|
142
|
+
id: "docusign.list-signature-providers-for-account",
|
|
143
143
|
slug: "DOCUSIGN_LIST_SIGNATURE_PROVIDERS_FOR_ACCOUNT",
|
|
144
144
|
name: "List Signature Providers",
|
|
145
145
|
description: "List signature providers available to the account.",
|
|
@@ -149,7 +149,7 @@ const listSignatureProvidersForAccount = defineRestOperation({
|
|
|
149
149
|
output: docusignGenericObjectSchema
|
|
150
150
|
});
|
|
151
151
|
const getSupportedLanguagesForRecipients = defineRestOperation({
|
|
152
|
-
id: "
|
|
152
|
+
id: "docusign.get-supported-languages-for-recipients",
|
|
153
153
|
slug: "DOCUSIGN_GET_SUPPORTED_LANGUAGES_FOR_RECIPIENTS",
|
|
154
154
|
name: "Get Supported Languages",
|
|
155
155
|
description: "Return the list of supported recipient languages.",
|
|
@@ -159,7 +159,7 @@ const getSupportedLanguagesForRecipients = defineRestOperation({
|
|
|
159
159
|
output: docusignGenericObjectSchema
|
|
160
160
|
});
|
|
161
161
|
const getUnsupportedFileTypesList = defineRestOperation({
|
|
162
|
-
id: "
|
|
162
|
+
id: "docusign.get-unsupported-file-types-list",
|
|
163
163
|
slug: "DOCUSIGN_GET_UNSUPPORTED_FILE_TYPES_LIST",
|
|
164
164
|
name: "Get Unsupported File Types",
|
|
165
165
|
description: "Return the list of unsupported file types for envelope documents.",
|
|
@@ -169,7 +169,7 @@ const getUnsupportedFileTypesList = defineRestOperation({
|
|
|
169
169
|
output: docusignGenericObjectSchema
|
|
170
170
|
});
|
|
171
171
|
const modifyAccountNotificationSettings = defineRestOperation({
|
|
172
|
-
id: "
|
|
172
|
+
id: "docusign.modify-account-notification-settings",
|
|
173
173
|
slug: "DOCUSIGN_MODIFY_ACCOUNT_NOTIFICATION_SETTINGS",
|
|
174
174
|
name: "Modify Account Notification Settings",
|
|
175
175
|
description: "Modify account-level notification defaults.",
|
|
@@ -181,7 +181,7 @@ const modifyAccountNotificationSettings = defineRestOperation({
|
|
|
181
181
|
body: (input) => input.notifications
|
|
182
182
|
});
|
|
183
183
|
const listResourcesForRestVersionSpecified = defineRestOperation({
|
|
184
|
-
id: "
|
|
184
|
+
id: "docusign.list-resources-for-rest-version-specified",
|
|
185
185
|
slug: "DOCUSIGN_LIST_RESOURCES_FOR_RESTVERSION_SPECIFIED",
|
|
186
186
|
name: "List REST Resources",
|
|
187
187
|
description: "List resources available for a REST version.",
|
|
@@ -192,7 +192,7 @@ const listResourcesForRestVersionSpecified = defineRestOperation({
|
|
|
192
192
|
accountScoped: false
|
|
193
193
|
});
|
|
194
194
|
const retrieveRestApiVersions = defineRestOperation({
|
|
195
|
-
id: "
|
|
195
|
+
id: "docusign.retrieve-rest-api-versions",
|
|
196
196
|
slug: "DOCUSIGN_RETRIEVE_REST_API_VERSIONS",
|
|
197
197
|
name: "Retrieve REST API Versions",
|
|
198
198
|
description: "List available REST API versions.",
|
package/dist/admin.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import { z } from "zod";
|
|
|
7
7
|
* DocuSign Admin API — plan-gated in v1.
|
|
8
8
|
*/
|
|
9
9
|
const adminNotImplemented = definePlanGatedOperation({
|
|
10
|
-
id: "
|
|
10
|
+
id: "docusign.admin-not-implemented",
|
|
11
11
|
slug: "DOCUSIGN_ADMIN_NOT_IMPLEMENTED",
|
|
12
12
|
name: "DocuSign Admin (not implemented)",
|
|
13
13
|
description: "Placeholder for DocuSign Admin API (cross-account SSO, domains, permissions).",
|
package/dist/auth.mjs
CHANGED
|
@@ -13,7 +13,7 @@ import { z } from "zod";
|
|
|
13
13
|
* fire automatically during connect/refresh (see `./oauth-connection.ts`).
|
|
14
14
|
*/
|
|
15
15
|
const retrieveDocusignUserinfo = docusignOperation({
|
|
16
|
-
id: "
|
|
16
|
+
id: "docusign.retrieve-docusign-userinfo",
|
|
17
17
|
name: "Retrieve DocuSign Userinfo",
|
|
18
18
|
description: `Call ${DOCUSIGN_USERINFO_URL} with the stored access token to re-resolve the connected user's accounts, names, and base URIs.`,
|
|
19
19
|
input: z.object({}),
|
|
@@ -32,7 +32,7 @@ const retrieveDocusignUserinfo = docusignOperation({
|
|
|
32
32
|
}
|
|
33
33
|
});
|
|
34
34
|
const resolveCurrentAccount = docusignOperation({
|
|
35
|
-
id: "
|
|
35
|
+
id: "docusign.resolve-current-account",
|
|
36
36
|
name: "Resolve Current Account",
|
|
37
37
|
description: "Return the active `accountId` + `baseUri` pair stored on the connection. Useful for downstream operations that need to construct account-scoped URLs themselves.",
|
|
38
38
|
input: z.object({}),
|
package/dist/bcc-archive.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { z } from "zod";
|
|
|
8
8
|
*/
|
|
9
9
|
const bccId = z.object({ bccEmailArchiveId: z.string().min(1) });
|
|
10
10
|
const createBccEmailArchiveConfiguration = defineRestOperation({
|
|
11
|
-
id: "
|
|
11
|
+
id: "docusign.create-bcc-email-archive-configuration",
|
|
12
12
|
slug: "DOCUSIGN_CREATE_BCC_EMAIL_ARCHIVE_CONFIGURATION",
|
|
13
13
|
name: "Create BCC Email Archive Configuration",
|
|
14
14
|
description: "Configure a BCC email archive address for the account.",
|
|
@@ -20,7 +20,7 @@ const createBccEmailArchiveConfiguration = defineRestOperation({
|
|
|
20
20
|
body: (input) => input.bccEmailArchive
|
|
21
21
|
});
|
|
22
22
|
const getBccEmailArchiveConfigurations = defineRestOperation({
|
|
23
|
-
id: "
|
|
23
|
+
id: "docusign.get-bcc-email-archive-configurations",
|
|
24
24
|
slug: "DOCUSIGN_GET_BCC_EMAIL_ARCHIVE_CONFIGURATIONS",
|
|
25
25
|
name: "Get BCC Email Archive Configurations",
|
|
26
26
|
description: "List BCC email archive configurations.",
|
|
@@ -37,7 +37,7 @@ const getBccEmailArchiveConfigurations = defineRestOperation({
|
|
|
37
37
|
})
|
|
38
38
|
});
|
|
39
39
|
const getBccEmailArchiveHistory = defineRestOperation({
|
|
40
|
-
id: "
|
|
40
|
+
id: "docusign.get-bcc-email-archive-history",
|
|
41
41
|
slug: "DOCUSIGN_GET_BCCEMAIL_ARCHIVE_HISTORY",
|
|
42
42
|
name: "Get BCC Email Archive History",
|
|
43
43
|
description: "Retrieve history for a BCC email archive configuration.",
|
|
@@ -54,7 +54,7 @@ const getBccEmailArchiveHistory = defineRestOperation({
|
|
|
54
54
|
})
|
|
55
55
|
});
|
|
56
56
|
const deleteBccEmailArchiveConfiguration = defineRestOperation({
|
|
57
|
-
id: "
|
|
57
|
+
id: "docusign.delete-bcc-email-archive-configuration",
|
|
58
58
|
slug: "DOCUSIGN_DELETE_BCC_EMAIL_ARCHIVE_CONFIGURATION",
|
|
59
59
|
name: "Delete BCC Email Archive Configuration",
|
|
60
60
|
description: "Delete a BCC email archive configuration.",
|
package/dist/billing.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const invoiceId = z.object({ invoiceId: z.string().min(1) });
|
|
|
10
10
|
const planId = z.object({ planId: z.string().min(1) });
|
|
11
11
|
const paymentId = z.object({ paymentId: z.string().min(1) });
|
|
12
12
|
const retrieveAccountBillingPlan = defineRestOperation({
|
|
13
|
-
id: "
|
|
13
|
+
id: "docusign.retrieve-account-billing-plan",
|
|
14
14
|
slug: "DOCUSIGN_RETRIEVE_ACCOUNT_BILLING_PLAN",
|
|
15
15
|
name: "Retrieve Account Billing Plan",
|
|
16
16
|
description: "Retrieve the current billing plan on the account.",
|
|
@@ -29,7 +29,7 @@ const retrieveAccountBillingPlan = defineRestOperation({
|
|
|
29
29
|
})
|
|
30
30
|
});
|
|
31
31
|
const retrieveBillingPlanDetails = defineRestOperation({
|
|
32
|
-
id: "
|
|
32
|
+
id: "docusign.retrieve-billing-plan-details",
|
|
33
33
|
slug: "DOCUSIGN_RETRIEVE_BILLING_PLAN_DETAILS",
|
|
34
34
|
name: "Retrieve Billing Plan Details",
|
|
35
35
|
description: "Retrieve details of a specific billing plan.",
|
|
@@ -40,7 +40,7 @@ const retrieveBillingPlanDetails = defineRestOperation({
|
|
|
40
40
|
accountScoped: false
|
|
41
41
|
});
|
|
42
42
|
const retrieveListOfBillingPlans = defineRestOperation({
|
|
43
|
-
id: "
|
|
43
|
+
id: "docusign.retrieve-list-of-billing-plans",
|
|
44
44
|
slug: "DOCUSIGN_RETRIEVE_LIST_OF_BILLING_PLANS",
|
|
45
45
|
name: "Retrieve List Of Billing Plans",
|
|
46
46
|
description: "Retrieve the list of billing plans available for the account.",
|
|
@@ -51,7 +51,7 @@ const retrieveListOfBillingPlans = defineRestOperation({
|
|
|
51
51
|
accountScoped: false
|
|
52
52
|
});
|
|
53
53
|
const updateBillingPlanForAccount = defineRestOperation({
|
|
54
|
-
id: "
|
|
54
|
+
id: "docusign.update-billing-plan-for-account",
|
|
55
55
|
slug: "DOCUSIGN_UPDATE_BILLING_PLAN_FOR_ACCOUNT",
|
|
56
56
|
name: "Update Billing Plan",
|
|
57
57
|
description: "Update the billing plan attached to the account.",
|
|
@@ -63,7 +63,7 @@ const updateBillingPlanForAccount = defineRestOperation({
|
|
|
63
63
|
body: (input) => input.plan
|
|
64
64
|
});
|
|
65
65
|
const getDowngradePlanInfoForAccount = defineRestOperation({
|
|
66
|
-
id: "
|
|
66
|
+
id: "docusign.get-downgrade-plan-info-for-account",
|
|
67
67
|
slug: "DOCUSIGN_GET_DOWNGRADE_PLAN_INFO_FOR_ACCOUNT",
|
|
68
68
|
name: "Get Downgrade Plan Info",
|
|
69
69
|
description: "Retrieve downgrade-plan information for the account.",
|
|
@@ -73,7 +73,7 @@ const getDowngradePlanInfoForAccount = defineRestOperation({
|
|
|
73
73
|
output: docusignGenericObjectSchema
|
|
74
74
|
});
|
|
75
75
|
const queueDowngradeBillingPlanRequest = defineRestOperation({
|
|
76
|
-
id: "
|
|
76
|
+
id: "docusign.queue-downgrade-billing-plan-request",
|
|
77
77
|
slug: "DOCUSIGN_QUEUE_DOWNGRADE_BILLING_PLAN_REQUEST",
|
|
78
78
|
name: "Queue Downgrade Billing Plan",
|
|
79
79
|
description: "Queue a downgrade-plan request for the account.",
|
|
@@ -85,7 +85,7 @@ const queueDowngradeBillingPlanRequest = defineRestOperation({
|
|
|
85
85
|
body: (input) => input.request
|
|
86
86
|
});
|
|
87
87
|
const purchaseAdditionalEnvelopes = defineRestOperation({
|
|
88
|
-
id: "
|
|
88
|
+
id: "docusign.purchase-additional-envelopes",
|
|
89
89
|
slug: "DOCUSIGN_PURCHASE_ADDITIONAL_ENVELOPES",
|
|
90
90
|
name: "Purchase Additional Envelopes",
|
|
91
91
|
description: "Purchase additional envelopes for the account.",
|
|
@@ -97,7 +97,7 @@ const purchaseAdditionalEnvelopes = defineRestOperation({
|
|
|
97
97
|
body: (input) => input.request
|
|
98
98
|
});
|
|
99
99
|
const getAccountBillingChargesList = defineRestOperation({
|
|
100
|
-
id: "
|
|
100
|
+
id: "docusign.get-account-billing-charges-list",
|
|
101
101
|
slug: "DOCUSIGN_GET_ACCOUNT_BILLING_CHARGES_LIST",
|
|
102
102
|
name: "Get Account Billing Charges",
|
|
103
103
|
description: "List billing charges.",
|
|
@@ -108,7 +108,7 @@ const getAccountBillingChargesList = defineRestOperation({
|
|
|
108
108
|
query: (input) => ({ include_charges: input.includeCharges })
|
|
109
109
|
});
|
|
110
110
|
const listBillingInvoices = defineRestOperation({
|
|
111
|
-
id: "
|
|
111
|
+
id: "docusign.list-billing-invoices",
|
|
112
112
|
slug: "DOCUSIGN_LIST_BILLING_INVOICES",
|
|
113
113
|
name: "List Billing Invoices",
|
|
114
114
|
description: "List billing invoices.",
|
|
@@ -125,7 +125,7 @@ const listBillingInvoices = defineRestOperation({
|
|
|
125
125
|
})
|
|
126
126
|
});
|
|
127
127
|
const listPastDueInvoices = defineRestOperation({
|
|
128
|
-
id: "
|
|
128
|
+
id: "docusign.list-past-due-invoices",
|
|
129
129
|
slug: "DOCUSIGN_LIST_PAST_DUE_INVOICES",
|
|
130
130
|
name: "List Past Due Invoices",
|
|
131
131
|
description: "List past-due billing invoices.",
|
|
@@ -135,7 +135,7 @@ const listPastDueInvoices = defineRestOperation({
|
|
|
135
135
|
output: docusignGenericObjectSchema
|
|
136
136
|
});
|
|
137
137
|
const retrieveBillingInvoice = defineRestOperation({
|
|
138
|
-
id: "
|
|
138
|
+
id: "docusign.retrieve-billing-invoice",
|
|
139
139
|
slug: "DOCUSIGN_RETRIEVE_BILLING_INVOICE",
|
|
140
140
|
name: "Retrieve Billing Invoice",
|
|
141
141
|
description: "Retrieve a specific billing invoice.",
|
|
@@ -145,7 +145,7 @@ const retrieveBillingInvoice = defineRestOperation({
|
|
|
145
145
|
output: docusignGenericObjectSchema
|
|
146
146
|
});
|
|
147
147
|
const retrieveBillingPaymentInfo = defineRestOperation({
|
|
148
|
-
id: "
|
|
148
|
+
id: "docusign.retrieve-billing-payment-info",
|
|
149
149
|
slug: "DOCUSIGN_RETRIEVE_BILLING_PAYMENT_INFO",
|
|
150
150
|
name: "Retrieve Billing Payment Info",
|
|
151
151
|
description: "Retrieve billing payment information for a specific payment.",
|
|
@@ -155,7 +155,7 @@ const retrieveBillingPaymentInfo = defineRestOperation({
|
|
|
155
155
|
output: docusignGenericObjectSchema
|
|
156
156
|
});
|
|
157
157
|
const retrievePaymentInformationList = defineRestOperation({
|
|
158
|
-
id: "
|
|
158
|
+
id: "docusign.retrieve-payment-information-list",
|
|
159
159
|
slug: "DOCUSIGN_RETRIEVE_PAYMENT_INFORMATION_LIST",
|
|
160
160
|
name: "Retrieve Payment Information List",
|
|
161
161
|
description: "List billing payment history.",
|
|
@@ -172,7 +172,7 @@ const retrievePaymentInformationList = defineRestOperation({
|
|
|
172
172
|
})
|
|
173
173
|
});
|
|
174
174
|
const postPaymentToInvoice = defineRestOperation({
|
|
175
|
-
id: "
|
|
175
|
+
id: "docusign.post-payment-to-invoice",
|
|
176
176
|
slug: "DOCUSIGN_POST_PAYMENT_TO_INVOICE",
|
|
177
177
|
name: "Post Payment To Invoice",
|
|
178
178
|
description: "Post a payment against a billing invoice.",
|
|
@@ -184,7 +184,7 @@ const postPaymentToInvoice = defineRestOperation({
|
|
|
184
184
|
body: (input) => input.payment
|
|
185
185
|
});
|
|
186
186
|
const retrieveCreditCardInfo = defineRestOperation({
|
|
187
|
-
id: "
|
|
187
|
+
id: "docusign.retrieve-credit-card-info",
|
|
188
188
|
slug: "DOCUSIGN_RETRIEVE_CREDIT_CARD_INFO",
|
|
189
189
|
name: "Retrieve Credit Card Info",
|
|
190
190
|
description: "Retrieve the credit-card-on-file for the account.",
|
|
@@ -194,7 +194,7 @@ const retrieveCreditCardInfo = defineRestOperation({
|
|
|
194
194
|
output: docusignGenericObjectSchema
|
|
195
195
|
});
|
|
196
196
|
const listPaymentGatewayAccountsInfo = defineRestOperation({
|
|
197
|
-
id: "
|
|
197
|
+
id: "docusign.list-payment-gateway-accounts-info",
|
|
198
198
|
slug: "DOCUSIGN_LIST_PAYMENT_GATEWAY_ACCOUNTS_INFO",
|
|
199
199
|
name: "List Payment Gateway Accounts",
|
|
200
200
|
description: "List payment gateway accounts available to the account.",
|
package/dist/brands.mjs
CHANGED
|
@@ -20,7 +20,7 @@ const binaryResponseSchema = docusignLooseObjectSchema({
|
|
|
20
20
|
body: z.string()
|
|
21
21
|
});
|
|
22
22
|
const createBrandProfilesForAccount = defineRestOperation({
|
|
23
|
-
id: "
|
|
23
|
+
id: "docusign.create-brand-profiles-for-account",
|
|
24
24
|
slug: "DOCUSIGN_CREATE_BRAND_PROFILES_FOR_ACCOUNT",
|
|
25
25
|
name: "Create Brand Profiles",
|
|
26
26
|
description: "Create new brand profiles on the account.",
|
|
@@ -32,7 +32,7 @@ const createBrandProfilesForAccount = defineRestOperation({
|
|
|
32
32
|
body: (input) => ({ brands: input.brands })
|
|
33
33
|
});
|
|
34
34
|
const listBrandsForAccount = defineRestOperation({
|
|
35
|
-
id: "
|
|
35
|
+
id: "docusign.list-brands-for-account",
|
|
36
36
|
slug: "DOCUSIGN_LIST_BRANDS_FOR_ACCOUNT",
|
|
37
37
|
name: "List Brands For Account",
|
|
38
38
|
description: "List brand profiles on the account.",
|
|
@@ -49,7 +49,7 @@ const listBrandsForAccount = defineRestOperation({
|
|
|
49
49
|
})
|
|
50
50
|
});
|
|
51
51
|
const retrieveAccountBrandInformation = defineRestOperation({
|
|
52
|
-
id: "
|
|
52
|
+
id: "docusign.retrieve-account-brand-information",
|
|
53
53
|
slug: "DOCUSIGN_RETRIEVE_ACCOUNT_BRAND_INFORMATION",
|
|
54
54
|
name: "Retrieve Brand Information",
|
|
55
55
|
description: "Retrieve a specific account brand.",
|
|
@@ -60,7 +60,7 @@ const retrieveAccountBrandInformation = defineRestOperation({
|
|
|
60
60
|
query: (input) => ({ include: input.include })
|
|
61
61
|
});
|
|
62
62
|
const updateAccountBrandSettings = defineRestOperation({
|
|
63
|
-
id: "
|
|
63
|
+
id: "docusign.update-account-brand-settings",
|
|
64
64
|
slug: "DOCUSIGN_UPDATE_ACCOUNT_BRAND_SETTINGS",
|
|
65
65
|
name: "Update Brand Settings",
|
|
66
66
|
description: "Update an account brand.",
|
|
@@ -72,7 +72,7 @@ const updateAccountBrandSettings = defineRestOperation({
|
|
|
72
72
|
body: (input) => input.brand
|
|
73
73
|
});
|
|
74
74
|
const deleteAccountBrand = defineRestOperation({
|
|
75
|
-
id: "
|
|
75
|
+
id: "docusign.delete-account-brand",
|
|
76
76
|
slug: "DOCUSIGN_DELETE_ACCOUNT_BRAND",
|
|
77
77
|
name: "Delete Account Brand",
|
|
78
78
|
description: "Delete a single account brand.",
|
|
@@ -84,7 +84,7 @@ const deleteAccountBrand = defineRestOperation({
|
|
|
84
84
|
transformResponse: () => ({ success: true })
|
|
85
85
|
});
|
|
86
86
|
const deleteBrandProfiles = defineRestOperation({
|
|
87
|
-
id: "
|
|
87
|
+
id: "docusign.delete-brand-profiles",
|
|
88
88
|
slug: "DOCUSIGN_DELETE_BRAND_PROFILES",
|
|
89
89
|
name: "Delete Brand Profiles",
|
|
90
90
|
description: "Delete multiple brand profiles.",
|
|
@@ -97,7 +97,7 @@ const deleteBrandProfiles = defineRestOperation({
|
|
|
97
97
|
transformResponse: () => ({ success: true })
|
|
98
98
|
});
|
|
99
99
|
const exportBrandToXmlFile = defineBinaryOperation({
|
|
100
|
-
id: "
|
|
100
|
+
id: "docusign.export-brand-to-xml-file",
|
|
101
101
|
slug: "DOCUSIGN_EXPORT_BRAND_TO_XMLFILE",
|
|
102
102
|
name: "Export Brand To XML",
|
|
103
103
|
description: "Download a brand as XML.",
|
|
@@ -108,7 +108,7 @@ const exportBrandToXmlFile = defineBinaryOperation({
|
|
|
108
108
|
output: binaryResponseSchema
|
|
109
109
|
});
|
|
110
110
|
const getBrandLogoByType = defineBinaryOperation({
|
|
111
|
-
id: "
|
|
111
|
+
id: "docusign.get-brand-logo-by-type",
|
|
112
112
|
slug: "DOCUSIGN_GET_BRAND_LOGO_BY_TYPE",
|
|
113
113
|
name: "Get Brand Logo By Type",
|
|
114
114
|
description: "Download a brand logo by type.",
|
|
@@ -119,7 +119,7 @@ const getBrandLogoByType = defineBinaryOperation({
|
|
|
119
119
|
output: binaryResponseSchema
|
|
120
120
|
});
|
|
121
121
|
const deleteBrandLogoByType = defineRestOperation({
|
|
122
|
-
id: "
|
|
122
|
+
id: "docusign.delete-brand-logo-by-type",
|
|
123
123
|
slug: "DOCUSIGN_DELETE_BRAND_LOGO_BY_TYPE",
|
|
124
124
|
name: "Delete Brand Logo By Type",
|
|
125
125
|
description: "Delete a brand logo by type.",
|
|
@@ -131,7 +131,7 @@ const deleteBrandLogoByType = defineRestOperation({
|
|
|
131
131
|
transformResponse: () => ({ success: true })
|
|
132
132
|
});
|
|
133
133
|
const getSpecificBrandResourceFile = defineBinaryOperation({
|
|
134
|
-
id: "
|
|
134
|
+
id: "docusign.get-specific-brand-resource-file",
|
|
135
135
|
slug: "DOCUSIGN_GET_SPECIFIC_BRAND_RESOURCE_FILE",
|
|
136
136
|
name: "Get Brand Resource File",
|
|
137
137
|
description: "Download a specific brand resource file by resource type.",
|
|
@@ -143,7 +143,7 @@ const getSpecificBrandResourceFile = defineBinaryOperation({
|
|
|
143
143
|
query: (input) => ({ langcode: input.langcode })
|
|
144
144
|
});
|
|
145
145
|
const returnBrandResourceMetadataForAccount = defineRestOperation({
|
|
146
|
-
id: "
|
|
146
|
+
id: "docusign.return-brand-resource-metadata-for-account",
|
|
147
147
|
slug: "DOCUSIGN_RETURN_BRAND_RESOURCE_METADATA_FOR_ACCOUNT",
|
|
148
148
|
name: "Return Brand Resource Metadata",
|
|
149
149
|
description: "List metadata about all brand resources.",
|
package/dist/bulk-send.d.mts
CHANGED
|
@@ -42,8 +42,8 @@ declare const applyActionToBulkSendEnvelopes: _keystrokehq_core0.Operation<z.Zod
|
|
|
42
42
|
batchId: z.ZodString;
|
|
43
43
|
action: z.ZodEnum<{
|
|
44
44
|
void: "void";
|
|
45
|
-
correct: "correct";
|
|
46
45
|
resend: "resend";
|
|
46
|
+
correct: "correct";
|
|
47
47
|
}>;
|
|
48
48
|
}, z.core.$strip>, z.ZodObject<{
|
|
49
49
|
[x: string]: z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|