@robinpath/hellosign 0.1.0 → 0.1.1
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/README.md +109 -109
- package/package.json +16 -3
- package/dist/hellosign.d.ts +0 -190
- package/dist/hellosign.d.ts.map +0 -1
- package/dist/hellosign.js +0 -123
- package/dist/hellosign.js.map +0 -1
- package/dist/index.d.ts +0 -6
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -12
- package/dist/index.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,109 +1,109 @@
|
|
|
1
|
-
# @robinpath/hellosign
|
|
2
|
-
|
|
3
|
-
> HelloSign module for RobinPath.
|
|
4
|
-
|
|
5
|
-
   
|
|
6
|
-
|
|
7
|
-
## Why use this module?
|
|
8
|
-
|
|
9
|
-
The `hellosign` module lets you:
|
|
10
|
-
|
|
11
|
-
- getSignatureRequest
|
|
12
|
-
- listSignatureRequests
|
|
13
|
-
- sendSignatureRequest
|
|
14
|
-
- sendWithTemplate
|
|
15
|
-
- cancelSignatureRequest
|
|
16
|
-
|
|
17
|
-
All functions are callable directly from RobinPath scripts with a simple, consistent API.
|
|
18
|
-
|
|
19
|
-
## Installation
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
npm install @robinpath/hellosign
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
## Quick Start
|
|
26
|
-
|
|
27
|
-
**1. Set up credentials**
|
|
28
|
-
|
|
29
|
-
```robinpath
|
|
30
|
-
hellosign.setCredentials "your-credentials"
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
**2. getSignatureRequest**
|
|
34
|
-
|
|
35
|
-
```robinpath
|
|
36
|
-
hellosign.getSignatureRequest
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
## Available Functions
|
|
40
|
-
|
|
41
|
-
| Function | Description |
|
|
42
|
-
|----------|-------------|
|
|
43
|
-
| `hellosign.setCredentials` | Configure hellosign credentials. |
|
|
44
|
-
| `hellosign.getSignatureRequest` | getSignatureRequest |
|
|
45
|
-
| `hellosign.listSignatureRequests` | listSignatureRequests |
|
|
46
|
-
| `hellosign.sendSignatureRequest` | sendSignatureRequest |
|
|
47
|
-
| `hellosign.sendWithTemplate` | sendWithTemplate |
|
|
48
|
-
| `hellosign.cancelSignatureRequest` | cancelSignatureRequest |
|
|
49
|
-
| `hellosign.downloadSignatureRequest` | downloadSignatureRequest |
|
|
50
|
-
| `hellosign.remindSignatureRequest` | remindSignatureRequest |
|
|
51
|
-
| `hellosign.listTemplates` | listTemplates |
|
|
52
|
-
| `hellosign.getTemplate` | getTemplate |
|
|
53
|
-
| `hellosign.deleteTemplate` | deleteTemplate |
|
|
54
|
-
| `hellosign.createEmbeddedSignatureRequest` | createEmbeddedSignatureRequest |
|
|
55
|
-
| `hellosign.getAccount` | getAccount |
|
|
56
|
-
| `hellosign.updateAccount` | updateAccount |
|
|
57
|
-
| `hellosign.listTeamMembers` | listTeamMembers |
|
|
58
|
-
|
|
59
|
-
## Examples
|
|
60
|
-
|
|
61
|
-
### getSignatureRequest
|
|
62
|
-
|
|
63
|
-
```robinpath
|
|
64
|
-
hellosign.getSignatureRequest
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
### listSignatureRequests
|
|
68
|
-
|
|
69
|
-
```robinpath
|
|
70
|
-
hellosign.listSignatureRequests
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
### sendSignatureRequest
|
|
74
|
-
|
|
75
|
-
```robinpath
|
|
76
|
-
hellosign.sendSignatureRequest
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
## Integration with RobinPath
|
|
80
|
-
|
|
81
|
-
```typescript
|
|
82
|
-
import { RobinPath } from "@wiredwp/robinpath";
|
|
83
|
-
import Module from "@robinpath/hellosign";
|
|
84
|
-
|
|
85
|
-
const rp = new RobinPath();
|
|
86
|
-
rp.registerModule(Module.name, Module.functions);
|
|
87
|
-
rp.registerModuleMeta(Module.name, Module.functionMetadata);
|
|
88
|
-
|
|
89
|
-
const result = await rp.executeScript(`
|
|
90
|
-
hellosign.setCredentials "your-credentials"
|
|
91
|
-
hellosign.getSignatureRequest
|
|
92
|
-
`);
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
## Full API Reference
|
|
96
|
-
|
|
97
|
-
See [MODULE.md](./MODULE.md) for complete documentation including all parameters, return types, error handling, and advanced examples.
|
|
98
|
-
|
|
99
|
-
## Related Modules
|
|
100
|
-
|
|
101
|
-
- [`@robinpath/pdf`](../pdf) — PDF module for complementary functionality
|
|
102
|
-
- [`@robinpath/excel`](../excel) — Excel module for complementary functionality
|
|
103
|
-
- [`@robinpath/office`](../office) — Office module for complementary functionality
|
|
104
|
-
- [`@robinpath/docusign`](../docusign) — DocuSign module for complementary functionality
|
|
105
|
-
- [`@robinpath/pandadoc`](../pandadoc) — PandaDoc module for complementary functionality
|
|
106
|
-
|
|
107
|
-
## License
|
|
108
|
-
|
|
109
|
-
MIT
|
|
1
|
+
# @robinpath/hellosign
|
|
2
|
+
|
|
3
|
+
> HelloSign module for RobinPath.
|
|
4
|
+
|
|
5
|
+
   
|
|
6
|
+
|
|
7
|
+
## Why use this module?
|
|
8
|
+
|
|
9
|
+
The `hellosign` module lets you:
|
|
10
|
+
|
|
11
|
+
- getSignatureRequest
|
|
12
|
+
- listSignatureRequests
|
|
13
|
+
- sendSignatureRequest
|
|
14
|
+
- sendWithTemplate
|
|
15
|
+
- cancelSignatureRequest
|
|
16
|
+
|
|
17
|
+
All functions are callable directly from RobinPath scripts with a simple, consistent API.
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install @robinpath/hellosign
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Quick Start
|
|
26
|
+
|
|
27
|
+
**1. Set up credentials**
|
|
28
|
+
|
|
29
|
+
```robinpath
|
|
30
|
+
hellosign.setCredentials "your-credentials"
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
**2. getSignatureRequest**
|
|
34
|
+
|
|
35
|
+
```robinpath
|
|
36
|
+
hellosign.getSignatureRequest
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Available Functions
|
|
40
|
+
|
|
41
|
+
| Function | Description |
|
|
42
|
+
|----------|-------------|
|
|
43
|
+
| `hellosign.setCredentials` | Configure hellosign credentials. |
|
|
44
|
+
| `hellosign.getSignatureRequest` | getSignatureRequest |
|
|
45
|
+
| `hellosign.listSignatureRequests` | listSignatureRequests |
|
|
46
|
+
| `hellosign.sendSignatureRequest` | sendSignatureRequest |
|
|
47
|
+
| `hellosign.sendWithTemplate` | sendWithTemplate |
|
|
48
|
+
| `hellosign.cancelSignatureRequest` | cancelSignatureRequest |
|
|
49
|
+
| `hellosign.downloadSignatureRequest` | downloadSignatureRequest |
|
|
50
|
+
| `hellosign.remindSignatureRequest` | remindSignatureRequest |
|
|
51
|
+
| `hellosign.listTemplates` | listTemplates |
|
|
52
|
+
| `hellosign.getTemplate` | getTemplate |
|
|
53
|
+
| `hellosign.deleteTemplate` | deleteTemplate |
|
|
54
|
+
| `hellosign.createEmbeddedSignatureRequest` | createEmbeddedSignatureRequest |
|
|
55
|
+
| `hellosign.getAccount` | getAccount |
|
|
56
|
+
| `hellosign.updateAccount` | updateAccount |
|
|
57
|
+
| `hellosign.listTeamMembers` | listTeamMembers |
|
|
58
|
+
|
|
59
|
+
## Examples
|
|
60
|
+
|
|
61
|
+
### getSignatureRequest
|
|
62
|
+
|
|
63
|
+
```robinpath
|
|
64
|
+
hellosign.getSignatureRequest
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### listSignatureRequests
|
|
68
|
+
|
|
69
|
+
```robinpath
|
|
70
|
+
hellosign.listSignatureRequests
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### sendSignatureRequest
|
|
74
|
+
|
|
75
|
+
```robinpath
|
|
76
|
+
hellosign.sendSignatureRequest
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Integration with RobinPath
|
|
80
|
+
|
|
81
|
+
```typescript
|
|
82
|
+
import { RobinPath } from "@wiredwp/robinpath";
|
|
83
|
+
import Module from "@robinpath/hellosign";
|
|
84
|
+
|
|
85
|
+
const rp = new RobinPath();
|
|
86
|
+
rp.registerModule(Module.name, Module.functions);
|
|
87
|
+
rp.registerModuleMeta(Module.name, Module.functionMetadata);
|
|
88
|
+
|
|
89
|
+
const result = await rp.executeScript(`
|
|
90
|
+
hellosign.setCredentials "your-credentials"
|
|
91
|
+
hellosign.getSignatureRequest
|
|
92
|
+
`);
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## Full API Reference
|
|
96
|
+
|
|
97
|
+
See [MODULE.md](./MODULE.md) for complete documentation including all parameters, return types, error handling, and advanced examples.
|
|
98
|
+
|
|
99
|
+
## Related Modules
|
|
100
|
+
|
|
101
|
+
- [`@robinpath/pdf`](../pdf) — PDF module for complementary functionality
|
|
102
|
+
- [`@robinpath/excel`](../excel) — Excel module for complementary functionality
|
|
103
|
+
- [`@robinpath/office`](../office) — Office module for complementary functionality
|
|
104
|
+
- [`@robinpath/docusign`](../docusign) — DocuSign module for complementary functionality
|
|
105
|
+
- [`@robinpath/pandadoc`](../pandadoc) — PandaDoc module for complementary functionality
|
|
106
|
+
|
|
107
|
+
## License
|
|
108
|
+
|
|
109
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robinpath/hellosign",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -20,10 +20,23 @@
|
|
|
20
20
|
"build": "tsc"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@
|
|
23
|
+
"@robinpath/core": ">=0.20.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@
|
|
26
|
+
"@robinpath/core": "^0.30.1",
|
|
27
27
|
"typescript": "^5.6.0"
|
|
28
|
+
},
|
|
29
|
+
"description": "HelloSign module for RobinPath.",
|
|
30
|
+
"keywords": [
|
|
31
|
+
"hellosign",
|
|
32
|
+
"documents"
|
|
33
|
+
],
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"robinpath": {
|
|
36
|
+
"category": "documents",
|
|
37
|
+
"type": "integration",
|
|
38
|
+
"auth": "api-key",
|
|
39
|
+
"functionCount": 15,
|
|
40
|
+
"baseUrl": "https://api.hellosign.com"
|
|
28
41
|
}
|
|
29
42
|
}
|
package/dist/hellosign.d.ts
DELETED
|
@@ -1,190 +0,0 @@
|
|
|
1
|
-
import type { BuiltinHandler } from "@wiredwp/robinpath";
|
|
2
|
-
export declare const HellosignFunctions: Record<string, BuiltinHandler>;
|
|
3
|
-
export declare const HellosignFunctionMetadata: {
|
|
4
|
-
setCredentials: {
|
|
5
|
-
description: string;
|
|
6
|
-
parameters: {
|
|
7
|
-
name: string;
|
|
8
|
-
dataType: string;
|
|
9
|
-
description: string;
|
|
10
|
-
formInputType: string;
|
|
11
|
-
required: boolean;
|
|
12
|
-
}[];
|
|
13
|
-
returnType: string;
|
|
14
|
-
returnDescription: string;
|
|
15
|
-
};
|
|
16
|
-
getSignatureRequest: {
|
|
17
|
-
description: string;
|
|
18
|
-
parameters: {
|
|
19
|
-
name: string;
|
|
20
|
-
dataType: string;
|
|
21
|
-
description: string;
|
|
22
|
-
formInputType: string;
|
|
23
|
-
required: boolean;
|
|
24
|
-
}[];
|
|
25
|
-
returnType: string;
|
|
26
|
-
returnDescription: string;
|
|
27
|
-
};
|
|
28
|
-
listSignatureRequests: {
|
|
29
|
-
description: string;
|
|
30
|
-
parameters: {
|
|
31
|
-
name: string;
|
|
32
|
-
dataType: string;
|
|
33
|
-
description: string;
|
|
34
|
-
formInputType: string;
|
|
35
|
-
required: boolean;
|
|
36
|
-
}[];
|
|
37
|
-
returnType: string;
|
|
38
|
-
returnDescription: string;
|
|
39
|
-
};
|
|
40
|
-
sendSignatureRequest: {
|
|
41
|
-
description: string;
|
|
42
|
-
parameters: {
|
|
43
|
-
name: string;
|
|
44
|
-
dataType: string;
|
|
45
|
-
description: string;
|
|
46
|
-
formInputType: string;
|
|
47
|
-
required: boolean;
|
|
48
|
-
}[];
|
|
49
|
-
returnType: string;
|
|
50
|
-
returnDescription: string;
|
|
51
|
-
};
|
|
52
|
-
sendWithTemplate: {
|
|
53
|
-
description: string;
|
|
54
|
-
parameters: {
|
|
55
|
-
name: string;
|
|
56
|
-
dataType: string;
|
|
57
|
-
description: string;
|
|
58
|
-
formInputType: string;
|
|
59
|
-
required: boolean;
|
|
60
|
-
}[];
|
|
61
|
-
returnType: string;
|
|
62
|
-
returnDescription: string;
|
|
63
|
-
};
|
|
64
|
-
cancelSignatureRequest: {
|
|
65
|
-
description: string;
|
|
66
|
-
parameters: {
|
|
67
|
-
name: string;
|
|
68
|
-
dataType: string;
|
|
69
|
-
description: string;
|
|
70
|
-
formInputType: string;
|
|
71
|
-
required: boolean;
|
|
72
|
-
}[];
|
|
73
|
-
returnType: string;
|
|
74
|
-
returnDescription: string;
|
|
75
|
-
};
|
|
76
|
-
downloadSignatureRequest: {
|
|
77
|
-
description: string;
|
|
78
|
-
parameters: {
|
|
79
|
-
name: string;
|
|
80
|
-
dataType: string;
|
|
81
|
-
description: string;
|
|
82
|
-
formInputType: string;
|
|
83
|
-
required: boolean;
|
|
84
|
-
}[];
|
|
85
|
-
returnType: string;
|
|
86
|
-
returnDescription: string;
|
|
87
|
-
};
|
|
88
|
-
remindSignatureRequest: {
|
|
89
|
-
description: string;
|
|
90
|
-
parameters: {
|
|
91
|
-
name: string;
|
|
92
|
-
dataType: string;
|
|
93
|
-
description: string;
|
|
94
|
-
formInputType: string;
|
|
95
|
-
required: boolean;
|
|
96
|
-
}[];
|
|
97
|
-
returnType: string;
|
|
98
|
-
returnDescription: string;
|
|
99
|
-
};
|
|
100
|
-
listTemplates: {
|
|
101
|
-
description: string;
|
|
102
|
-
parameters: {
|
|
103
|
-
name: string;
|
|
104
|
-
dataType: string;
|
|
105
|
-
description: string;
|
|
106
|
-
formInputType: string;
|
|
107
|
-
required: boolean;
|
|
108
|
-
}[];
|
|
109
|
-
returnType: string;
|
|
110
|
-
returnDescription: string;
|
|
111
|
-
};
|
|
112
|
-
getTemplate: {
|
|
113
|
-
description: string;
|
|
114
|
-
parameters: {
|
|
115
|
-
name: string;
|
|
116
|
-
dataType: string;
|
|
117
|
-
description: string;
|
|
118
|
-
formInputType: string;
|
|
119
|
-
required: boolean;
|
|
120
|
-
}[];
|
|
121
|
-
returnType: string;
|
|
122
|
-
returnDescription: string;
|
|
123
|
-
};
|
|
124
|
-
deleteTemplate: {
|
|
125
|
-
description: string;
|
|
126
|
-
parameters: {
|
|
127
|
-
name: string;
|
|
128
|
-
dataType: string;
|
|
129
|
-
description: string;
|
|
130
|
-
formInputType: string;
|
|
131
|
-
required: boolean;
|
|
132
|
-
}[];
|
|
133
|
-
returnType: string;
|
|
134
|
-
returnDescription: string;
|
|
135
|
-
};
|
|
136
|
-
createEmbeddedSignatureRequest: {
|
|
137
|
-
description: string;
|
|
138
|
-
parameters: {
|
|
139
|
-
name: string;
|
|
140
|
-
dataType: string;
|
|
141
|
-
description: string;
|
|
142
|
-
formInputType: string;
|
|
143
|
-
required: boolean;
|
|
144
|
-
}[];
|
|
145
|
-
returnType: string;
|
|
146
|
-
returnDescription: string;
|
|
147
|
-
};
|
|
148
|
-
getAccount: {
|
|
149
|
-
description: string;
|
|
150
|
-
parameters: {
|
|
151
|
-
name: string;
|
|
152
|
-
dataType: string;
|
|
153
|
-
description: string;
|
|
154
|
-
formInputType: string;
|
|
155
|
-
required: boolean;
|
|
156
|
-
}[];
|
|
157
|
-
returnType: string;
|
|
158
|
-
returnDescription: string;
|
|
159
|
-
};
|
|
160
|
-
updateAccount: {
|
|
161
|
-
description: string;
|
|
162
|
-
parameters: {
|
|
163
|
-
name: string;
|
|
164
|
-
dataType: string;
|
|
165
|
-
description: string;
|
|
166
|
-
formInputType: string;
|
|
167
|
-
required: boolean;
|
|
168
|
-
}[];
|
|
169
|
-
returnType: string;
|
|
170
|
-
returnDescription: string;
|
|
171
|
-
};
|
|
172
|
-
listTeamMembers: {
|
|
173
|
-
description: string;
|
|
174
|
-
parameters: {
|
|
175
|
-
name: string;
|
|
176
|
-
dataType: string;
|
|
177
|
-
description: string;
|
|
178
|
-
formInputType: string;
|
|
179
|
-
required: boolean;
|
|
180
|
-
}[];
|
|
181
|
-
returnType: string;
|
|
182
|
-
returnDescription: string;
|
|
183
|
-
};
|
|
184
|
-
};
|
|
185
|
-
export declare const HellosignModuleMetadata: {
|
|
186
|
-
description: string;
|
|
187
|
-
methods: string[];
|
|
188
|
-
category: string;
|
|
189
|
-
};
|
|
190
|
-
//# sourceMappingURL=hellosign.d.ts.map
|
package/dist/hellosign.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"hellosign.d.ts","sourceRoot":"","sources":["../src/hellosign.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAA2C,MAAM,oBAAoB,CAAC;AA4GlG,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAE7D,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBrC,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;CAInC,CAAC"}
|
package/dist/hellosign.js
DELETED
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
const config = new Map();
|
|
2
|
-
function getConfig(key) {
|
|
3
|
-
const val = config.get(key);
|
|
4
|
-
if (!val)
|
|
5
|
-
throw new Error(`Hellosign: "${key}" not configured. Call hellosign.setCredentials first.`);
|
|
6
|
-
return val;
|
|
7
|
-
}
|
|
8
|
-
async function apiCall(path, method = "GET", body) {
|
|
9
|
-
const res = await fetch(`https://api.hellosign.com/v3${path}`, {
|
|
10
|
-
method,
|
|
11
|
-
headers: { "Authorization": `Bearer ${getConfig("apiKey")}`, "Content-Type": "application/json", Accept: "application/json" },
|
|
12
|
-
body: body ? JSON.stringify(body) : undefined,
|
|
13
|
-
});
|
|
14
|
-
if (!res.ok) {
|
|
15
|
-
const t = await res.text();
|
|
16
|
-
throw new Error(`Hellosign API error (${res.status}): ${t}`);
|
|
17
|
-
}
|
|
18
|
-
const ct = res.headers.get("content-type");
|
|
19
|
-
return ct && ct.includes("application/json") ? res.json() : res.text();
|
|
20
|
-
}
|
|
21
|
-
const setCredentials = (args) => {
|
|
22
|
-
const apiKey = args[0];
|
|
23
|
-
if (!apiKey)
|
|
24
|
-
throw new Error("hellosign.setCredentials requires apiKey.");
|
|
25
|
-
config.set("apiKey", apiKey);
|
|
26
|
-
return "Hellosign credentials configured.";
|
|
27
|
-
};
|
|
28
|
-
const getSignatureRequest = async (args) => {
|
|
29
|
-
const id = args[0];
|
|
30
|
-
return apiCall(id ? `/getSignatureRequest/${id}` : `/getSignatureRequest`);
|
|
31
|
-
};
|
|
32
|
-
const listSignatureRequests = async (args) => {
|
|
33
|
-
const id = args[0];
|
|
34
|
-
return apiCall(id ? `/listSignatureRequests/${id}` : `/listSignatureRequests`);
|
|
35
|
-
};
|
|
36
|
-
const sendSignatureRequest = async (args) => {
|
|
37
|
-
const id = args[0];
|
|
38
|
-
const data = args[1] ?? args[0];
|
|
39
|
-
return apiCall(`/sendSignatureRequest`, "POST", typeof data === "object" ? data : { value: data });
|
|
40
|
-
};
|
|
41
|
-
const sendWithTemplate = async (args) => {
|
|
42
|
-
const id = args[0];
|
|
43
|
-
const data = args[1] ?? args[0];
|
|
44
|
-
return apiCall(`/sendWithTemplate`, "POST", typeof data === "object" ? data : { value: data });
|
|
45
|
-
};
|
|
46
|
-
const cancelSignatureRequest = async (args) => {
|
|
47
|
-
const id = args[0];
|
|
48
|
-
if (!id)
|
|
49
|
-
throw new Error("hellosign.cancelSignatureRequest requires an ID.");
|
|
50
|
-
const data = args[1] ?? {};
|
|
51
|
-
return apiCall(`/cancelSignatureRequest/${id}`, "PUT", typeof data === "object" ? data : { value: data });
|
|
52
|
-
};
|
|
53
|
-
const downloadSignatureRequest = async (args) => {
|
|
54
|
-
const id = args[0];
|
|
55
|
-
return apiCall(id ? `/downloadSignatureRequest/${id}` : `/downloadSignatureRequest`);
|
|
56
|
-
};
|
|
57
|
-
const remindSignatureRequest = async (args) => {
|
|
58
|
-
const id = args[0];
|
|
59
|
-
if (!id)
|
|
60
|
-
throw new Error("hellosign.remindSignatureRequest requires an ID.");
|
|
61
|
-
const data = args[1] ?? {};
|
|
62
|
-
return apiCall(`/remindSignatureRequest/${id}`, "PUT", typeof data === "object" ? data : { value: data });
|
|
63
|
-
};
|
|
64
|
-
const listTemplates = async (args) => {
|
|
65
|
-
const id = args[0];
|
|
66
|
-
return apiCall(id ? `/listTemplates/${id}` : `/listTemplates`);
|
|
67
|
-
};
|
|
68
|
-
const getTemplate = async (args) => {
|
|
69
|
-
const id = args[0];
|
|
70
|
-
return apiCall(id ? `/getTemplate/${id}` : `/getTemplate`);
|
|
71
|
-
};
|
|
72
|
-
const deleteTemplate = async (args) => {
|
|
73
|
-
const id = args[0];
|
|
74
|
-
if (!id)
|
|
75
|
-
throw new Error("hellosign.deleteTemplate requires an ID.");
|
|
76
|
-
return apiCall(`/deleteTemplate/${id}`, "DELETE");
|
|
77
|
-
};
|
|
78
|
-
const createEmbeddedSignatureRequest = async (args) => {
|
|
79
|
-
const id = args[0];
|
|
80
|
-
const data = args[1] ?? args[0];
|
|
81
|
-
return apiCall(`/createEmbeddedSignatureRequest`, "POST", typeof data === "object" ? data : { value: data });
|
|
82
|
-
};
|
|
83
|
-
const getAccount = async (args) => {
|
|
84
|
-
const id = args[0];
|
|
85
|
-
return apiCall(id ? `/getAccount/${id}` : `/getAccount`);
|
|
86
|
-
};
|
|
87
|
-
const updateAccount = async (args) => {
|
|
88
|
-
const id = args[0];
|
|
89
|
-
if (!id)
|
|
90
|
-
throw new Error("hellosign.updateAccount requires an ID.");
|
|
91
|
-
const data = args[1] ?? {};
|
|
92
|
-
return apiCall(`/updateAccount/${id}`, "PUT", typeof data === "object" ? data : { value: data });
|
|
93
|
-
};
|
|
94
|
-
const listTeamMembers = async (args) => {
|
|
95
|
-
const id = args[0];
|
|
96
|
-
return apiCall(id ? `/listTeamMembers/${id}` : `/listTeamMembers`);
|
|
97
|
-
};
|
|
98
|
-
export const HellosignFunctions = {
|
|
99
|
-
setCredentials, getSignatureRequest, listSignatureRequests, sendSignatureRequest, sendWithTemplate, cancelSignatureRequest, downloadSignatureRequest, remindSignatureRequest, listTemplates, getTemplate, deleteTemplate, createEmbeddedSignatureRequest, getAccount, updateAccount, listTeamMembers,
|
|
100
|
-
};
|
|
101
|
-
export const HellosignFunctionMetadata = {
|
|
102
|
-
setCredentials: { description: "Configure hellosign credentials.", parameters: [{ name: "apiKey", dataType: "string", description: "apiKey", formInputType: "text", required: true }], returnType: "object", returnDescription: "API response." },
|
|
103
|
-
getSignatureRequest: { description: "getSignatureRequest", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
104
|
-
listSignatureRequests: { description: "listSignatureRequests", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
105
|
-
sendSignatureRequest: { description: "sendSignatureRequest", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
106
|
-
sendWithTemplate: { description: "sendWithTemplate", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
107
|
-
cancelSignatureRequest: { description: "cancelSignatureRequest", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
108
|
-
downloadSignatureRequest: { description: "downloadSignatureRequest", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
109
|
-
remindSignatureRequest: { description: "remindSignatureRequest", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
110
|
-
listTemplates: { description: "listTemplates", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
111
|
-
getTemplate: { description: "getTemplate", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
112
|
-
deleteTemplate: { description: "deleteTemplate", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
113
|
-
createEmbeddedSignatureRequest: { description: "createEmbeddedSignatureRequest", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
114
|
-
getAccount: { description: "getAccount", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
115
|
-
updateAccount: { description: "updateAccount", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
116
|
-
listTeamMembers: { description: "listTeamMembers", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
117
|
-
};
|
|
118
|
-
export const HellosignModuleMetadata = {
|
|
119
|
-
description: "Dropbox Sign (HelloSign) — signature requests, templates, and team management.",
|
|
120
|
-
methods: Object.keys(HellosignFunctions),
|
|
121
|
-
category: "documents",
|
|
122
|
-
};
|
|
123
|
-
//# sourceMappingURL=hellosign.js.map
|
package/dist/hellosign.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"hellosign.js","sourceRoot":"","sources":["../src/hellosign.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { ModuleAdapter } from "@wiredwp/robinpath";
|
|
2
|
-
declare const HellosignModule: ModuleAdapter;
|
|
3
|
-
export default HellosignModule;
|
|
4
|
-
export { HellosignModule };
|
|
5
|
-
export { HellosignFunctions, HellosignFunctionMetadata, HellosignModuleMetadata } from "./hellosign.js";
|
|
6
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAGxD,QAAA,MAAM,eAAe,EAAE,aAMtB,CAAC;AAEF,eAAe,eAAe,CAAC;AAC/B,OAAO,EAAE,eAAe,EAAE,CAAC;AAC3B,OAAO,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC"}
|
package/dist/index.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { HellosignFunctions, HellosignFunctionMetadata, HellosignModuleMetadata } from "./hellosign.js";
|
|
2
|
-
const HellosignModule = {
|
|
3
|
-
name: "hellosign",
|
|
4
|
-
functions: HellosignFunctions,
|
|
5
|
-
functionMetadata: HellosignFunctionMetadata,
|
|
6
|
-
moduleMetadata: HellosignModuleMetadata,
|
|
7
|
-
global: false,
|
|
8
|
-
}; // as ModuleAdapter
|
|
9
|
-
export default HellosignModule;
|
|
10
|
-
export { HellosignModule };
|
|
11
|
-
export { HellosignFunctions, HellosignFunctionMetadata, HellosignModuleMetadata } from "./hellosign.js";
|
|
12
|
-
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAExG,MAAM,eAAe,GAAkB;IACrC,IAAI,EAAE,WAAW;IACjB,SAAS,EAAE,kBAAkB;IAC7B,gBAAgB,EAAE,yBAAgC;IAClD,cAAc,EAAE,uBAA8B;IAC9C,MAAM,EAAE,KAAK;CACd,CAAC,CAAC,mBAAmB;AAEtB,eAAe,eAAe,CAAC;AAC/B,OAAO,EAAE,eAAe,EAAE,CAAC;AAC3B,OAAO,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC"}
|