@robinpath/jotform 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 +105 -105
- package/package.json +16 -3
- 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/dist/jotform.d.ts +0 -190
- package/dist/jotform.d.ts.map +0 -1
- package/dist/jotform.js +0 -113
- package/dist/jotform.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,105 +1,105 @@
|
|
|
1
|
-
# @robinpath/jotform
|
|
2
|
-
|
|
3
|
-
> JotForm module for RobinPath.
|
|
4
|
-
|
|
5
|
-
   
|
|
6
|
-
|
|
7
|
-
## Why use this module?
|
|
8
|
-
|
|
9
|
-
The `jotform` module lets you:
|
|
10
|
-
|
|
11
|
-
- listForms
|
|
12
|
-
- getForm
|
|
13
|
-
- getFormQuestions
|
|
14
|
-
- listSubmissions
|
|
15
|
-
- getSubmission
|
|
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/jotform
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
## Quick Start
|
|
26
|
-
|
|
27
|
-
**1. Set up credentials**
|
|
28
|
-
|
|
29
|
-
```robinpath
|
|
30
|
-
jotform.setCredentials "your-credentials"
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
**2. listForms**
|
|
34
|
-
|
|
35
|
-
```robinpath
|
|
36
|
-
jotform.listForms
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
## Available Functions
|
|
40
|
-
|
|
41
|
-
| Function | Description |
|
|
42
|
-
|----------|-------------|
|
|
43
|
-
| `jotform.setCredentials` | Configure jotform credentials. |
|
|
44
|
-
| `jotform.listForms` | listForms |
|
|
45
|
-
| `jotform.getForm` | getForm |
|
|
46
|
-
| `jotform.getFormQuestions` | getFormQuestions |
|
|
47
|
-
| `jotform.listSubmissions` | listSubmissions |
|
|
48
|
-
| `jotform.getSubmission` | getSubmission |
|
|
49
|
-
| `jotform.createSubmission` | createSubmission |
|
|
50
|
-
| `jotform.deleteSubmission` | deleteSubmission |
|
|
51
|
-
| `jotform.getFormReports` | getFormReports |
|
|
52
|
-
| `jotform.getFormFiles` | getFormFiles |
|
|
53
|
-
| `jotform.listFolders` | listFolders |
|
|
54
|
-
| `jotform.getUser` | getUser |
|
|
55
|
-
| `jotform.getUsage` | getUsage |
|
|
56
|
-
| `jotform.getFormWebhooks` | getFormWebhooks |
|
|
57
|
-
| `jotform.createFormWebhook` | createFormWebhook |
|
|
58
|
-
|
|
59
|
-
## Examples
|
|
60
|
-
|
|
61
|
-
### listForms
|
|
62
|
-
|
|
63
|
-
```robinpath
|
|
64
|
-
jotform.listForms
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
### getForm
|
|
68
|
-
|
|
69
|
-
```robinpath
|
|
70
|
-
jotform.getForm
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
### getFormQuestions
|
|
74
|
-
|
|
75
|
-
```robinpath
|
|
76
|
-
jotform.getFormQuestions
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
## Integration with RobinPath
|
|
80
|
-
|
|
81
|
-
```typescript
|
|
82
|
-
import { RobinPath } from "@wiredwp/robinpath";
|
|
83
|
-
import Module from "@robinpath/jotform";
|
|
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
|
-
jotform.setCredentials "your-credentials"
|
|
91
|
-
jotform.listForms
|
|
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/json`](../json) — JSON module for complementary functionality
|
|
102
|
-
|
|
103
|
-
## License
|
|
104
|
-
|
|
105
|
-
MIT
|
|
1
|
+
# @robinpath/jotform
|
|
2
|
+
|
|
3
|
+
> JotForm module for RobinPath.
|
|
4
|
+
|
|
5
|
+
   
|
|
6
|
+
|
|
7
|
+
## Why use this module?
|
|
8
|
+
|
|
9
|
+
The `jotform` module lets you:
|
|
10
|
+
|
|
11
|
+
- listForms
|
|
12
|
+
- getForm
|
|
13
|
+
- getFormQuestions
|
|
14
|
+
- listSubmissions
|
|
15
|
+
- getSubmission
|
|
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/jotform
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Quick Start
|
|
26
|
+
|
|
27
|
+
**1. Set up credentials**
|
|
28
|
+
|
|
29
|
+
```robinpath
|
|
30
|
+
jotform.setCredentials "your-credentials"
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
**2. listForms**
|
|
34
|
+
|
|
35
|
+
```robinpath
|
|
36
|
+
jotform.listForms
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Available Functions
|
|
40
|
+
|
|
41
|
+
| Function | Description |
|
|
42
|
+
|----------|-------------|
|
|
43
|
+
| `jotform.setCredentials` | Configure jotform credentials. |
|
|
44
|
+
| `jotform.listForms` | listForms |
|
|
45
|
+
| `jotform.getForm` | getForm |
|
|
46
|
+
| `jotform.getFormQuestions` | getFormQuestions |
|
|
47
|
+
| `jotform.listSubmissions` | listSubmissions |
|
|
48
|
+
| `jotform.getSubmission` | getSubmission |
|
|
49
|
+
| `jotform.createSubmission` | createSubmission |
|
|
50
|
+
| `jotform.deleteSubmission` | deleteSubmission |
|
|
51
|
+
| `jotform.getFormReports` | getFormReports |
|
|
52
|
+
| `jotform.getFormFiles` | getFormFiles |
|
|
53
|
+
| `jotform.listFolders` | listFolders |
|
|
54
|
+
| `jotform.getUser` | getUser |
|
|
55
|
+
| `jotform.getUsage` | getUsage |
|
|
56
|
+
| `jotform.getFormWebhooks` | getFormWebhooks |
|
|
57
|
+
| `jotform.createFormWebhook` | createFormWebhook |
|
|
58
|
+
|
|
59
|
+
## Examples
|
|
60
|
+
|
|
61
|
+
### listForms
|
|
62
|
+
|
|
63
|
+
```robinpath
|
|
64
|
+
jotform.listForms
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### getForm
|
|
68
|
+
|
|
69
|
+
```robinpath
|
|
70
|
+
jotform.getForm
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### getFormQuestions
|
|
74
|
+
|
|
75
|
+
```robinpath
|
|
76
|
+
jotform.getFormQuestions
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Integration with RobinPath
|
|
80
|
+
|
|
81
|
+
```typescript
|
|
82
|
+
import { RobinPath } from "@wiredwp/robinpath";
|
|
83
|
+
import Module from "@robinpath/jotform";
|
|
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
|
+
jotform.setCredentials "your-credentials"
|
|
91
|
+
jotform.listForms
|
|
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/json`](../json) — JSON module for complementary functionality
|
|
102
|
+
|
|
103
|
+
## License
|
|
104
|
+
|
|
105
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robinpath/jotform",
|
|
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": "JotForm module for RobinPath.",
|
|
30
|
+
"keywords": [
|
|
31
|
+
"jotform",
|
|
32
|
+
"utility"
|
|
33
|
+
],
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"robinpath": {
|
|
36
|
+
"category": "utility",
|
|
37
|
+
"type": "utility",
|
|
38
|
+
"auth": "api-key",
|
|
39
|
+
"functionCount": 15,
|
|
40
|
+
"baseUrl": "https://api.jotform.com"
|
|
28
41
|
}
|
|
29
42
|
}
|
package/dist/index.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { ModuleAdapter } from "@wiredwp/robinpath";
|
|
2
|
-
declare const JotformModule: ModuleAdapter;
|
|
3
|
-
export default JotformModule;
|
|
4
|
-
export { JotformModule };
|
|
5
|
-
export { JotformFunctions, JotformFunctionMetadata, JotformModuleMetadata } from "./jotform.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,aAAa,EAAE,aAMpB,CAAC;AAEF,eAAe,aAAa,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,CAAC;AACzB,OAAO,EAAE,gBAAgB,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC"}
|
package/dist/index.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { JotformFunctions, JotformFunctionMetadata, JotformModuleMetadata } from "./jotform.js";
|
|
2
|
-
const JotformModule = {
|
|
3
|
-
name: "jotform",
|
|
4
|
-
functions: JotformFunctions,
|
|
5
|
-
functionMetadata: JotformFunctionMetadata,
|
|
6
|
-
moduleMetadata: JotformModuleMetadata,
|
|
7
|
-
global: false,
|
|
8
|
-
}; // as ModuleAdapter
|
|
9
|
-
export default JotformModule;
|
|
10
|
-
export { JotformModule };
|
|
11
|
-
export { JotformFunctions, JotformFunctionMetadata, JotformModuleMetadata } from "./jotform.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,gBAAgB,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAEhG,MAAM,aAAa,GAAkB;IACnC,IAAI,EAAE,SAAS;IACf,SAAS,EAAE,gBAAgB;IAC3B,gBAAgB,EAAE,uBAA8B;IAChD,cAAc,EAAE,qBAA4B;IAC5C,MAAM,EAAE,KAAK;CACd,CAAC,CAAC,mBAAmB;AAEtB,eAAe,aAAa,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,CAAC;AACzB,OAAO,EAAE,gBAAgB,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC"}
|
package/dist/jotform.d.ts
DELETED
|
@@ -1,190 +0,0 @@
|
|
|
1
|
-
import type { BuiltinHandler } from "@wiredwp/robinpath";
|
|
2
|
-
export declare const JotformFunctions: Record<string, BuiltinHandler>;
|
|
3
|
-
export declare const JotformFunctionMetadata: {
|
|
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
|
-
listForms: {
|
|
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
|
-
getForm: {
|
|
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
|
-
getFormQuestions: {
|
|
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
|
-
listSubmissions: {
|
|
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
|
-
getSubmission: {
|
|
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
|
-
createSubmission: {
|
|
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
|
-
deleteSubmission: {
|
|
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
|
-
getFormReports: {
|
|
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
|
-
getFormFiles: {
|
|
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
|
-
listFolders: {
|
|
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
|
-
getUser: {
|
|
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
|
-
getUsage: {
|
|
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
|
-
getFormWebhooks: {
|
|
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
|
-
createFormWebhook: {
|
|
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 JotformModuleMetadata: {
|
|
186
|
-
description: string;
|
|
187
|
-
methods: string[];
|
|
188
|
-
category: string;
|
|
189
|
-
};
|
|
190
|
-
//# sourceMappingURL=jotform.d.ts.map
|
package/dist/jotform.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"jotform.d.ts","sourceRoot":"","sources":["../src/jotform.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAA2C,MAAM,oBAAoB,CAAC;AAqGlG,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAE3D,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBnC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;CAIjC,CAAC"}
|
package/dist/jotform.js
DELETED
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
const config = new Map();
|
|
2
|
-
function getConfig(key) {
|
|
3
|
-
const val = config.get(key);
|
|
4
|
-
if (!val)
|
|
5
|
-
throw new Error(`Jotform: "${key}" not configured. Call jotform.setCredentials first.`);
|
|
6
|
-
return val;
|
|
7
|
-
}
|
|
8
|
-
async function apiCall(path, method = "GET", body) {
|
|
9
|
-
const res = await fetch(`https://api.jotform.com${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(`Jotform 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("jotform.setCredentials requires apiKey.");
|
|
25
|
-
config.set("apiKey", apiKey);
|
|
26
|
-
return "Jotform credentials configured.";
|
|
27
|
-
};
|
|
28
|
-
const listForms = async (args) => {
|
|
29
|
-
const id = args[0];
|
|
30
|
-
return apiCall(id ? `/listForms/${id}` : `/listForms`);
|
|
31
|
-
};
|
|
32
|
-
const getForm = async (args) => {
|
|
33
|
-
const id = args[0];
|
|
34
|
-
return apiCall(id ? `/getForm/${id}` : `/getForm`);
|
|
35
|
-
};
|
|
36
|
-
const getFormQuestions = async (args) => {
|
|
37
|
-
const id = args[0];
|
|
38
|
-
return apiCall(id ? `/getFormQuestions/${id}` : `/getFormQuestions`);
|
|
39
|
-
};
|
|
40
|
-
const listSubmissions = async (args) => {
|
|
41
|
-
const id = args[0];
|
|
42
|
-
return apiCall(id ? `/listSubmissions/${id}` : `/listSubmissions`);
|
|
43
|
-
};
|
|
44
|
-
const getSubmission = async (args) => {
|
|
45
|
-
const id = args[0];
|
|
46
|
-
return apiCall(id ? `/getSubmission/${id}` : `/getSubmission`);
|
|
47
|
-
};
|
|
48
|
-
const createSubmission = async (args) => {
|
|
49
|
-
const id = args[0];
|
|
50
|
-
const data = args[1] ?? args[0];
|
|
51
|
-
return apiCall(`/createSubmission`, "POST", typeof data === "object" ? data : { value: data });
|
|
52
|
-
};
|
|
53
|
-
const deleteSubmission = async (args) => {
|
|
54
|
-
const id = args[0];
|
|
55
|
-
if (!id)
|
|
56
|
-
throw new Error("jotform.deleteSubmission requires an ID.");
|
|
57
|
-
return apiCall(`/deleteSubmission/${id}`, "DELETE");
|
|
58
|
-
};
|
|
59
|
-
const getFormReports = async (args) => {
|
|
60
|
-
const id = args[0];
|
|
61
|
-
return apiCall(id ? `/getFormReports/${id}` : `/getFormReports`);
|
|
62
|
-
};
|
|
63
|
-
const getFormFiles = async (args) => {
|
|
64
|
-
const id = args[0];
|
|
65
|
-
return apiCall(id ? `/getFormFiles/${id}` : `/getFormFiles`);
|
|
66
|
-
};
|
|
67
|
-
const listFolders = async (args) => {
|
|
68
|
-
const id = args[0];
|
|
69
|
-
return apiCall(id ? `/listFolders/${id}` : `/listFolders`);
|
|
70
|
-
};
|
|
71
|
-
const getUser = async (args) => {
|
|
72
|
-
const id = args[0];
|
|
73
|
-
return apiCall(id ? `/getUser/${id}` : `/getUser`);
|
|
74
|
-
};
|
|
75
|
-
const getUsage = async (args) => {
|
|
76
|
-
const id = args[0];
|
|
77
|
-
return apiCall(id ? `/getUsage/${id}` : `/getUsage`);
|
|
78
|
-
};
|
|
79
|
-
const getFormWebhooks = async (args) => {
|
|
80
|
-
const id = args[0];
|
|
81
|
-
return apiCall(id ? `/getFormWebhooks/${id}` : `/getFormWebhooks`);
|
|
82
|
-
};
|
|
83
|
-
const createFormWebhook = async (args) => {
|
|
84
|
-
const id = args[0];
|
|
85
|
-
const data = args[1] ?? args[0];
|
|
86
|
-
return apiCall(`/createFormWebhook`, "POST", typeof data === "object" ? data : { value: data });
|
|
87
|
-
};
|
|
88
|
-
export const JotformFunctions = {
|
|
89
|
-
setCredentials, listForms, getForm, getFormQuestions, listSubmissions, getSubmission, createSubmission, deleteSubmission, getFormReports, getFormFiles, listFolders, getUser, getUsage, getFormWebhooks, createFormWebhook,
|
|
90
|
-
};
|
|
91
|
-
export const JotformFunctionMetadata = {
|
|
92
|
-
setCredentials: { description: "Configure jotform credentials.", parameters: [{ name: "apiKey", dataType: "string", description: "apiKey", formInputType: "text", required: true }], returnType: "object", returnDescription: "API response." },
|
|
93
|
-
listForms: { description: "listForms", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
94
|
-
getForm: { description: "getForm", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
95
|
-
getFormQuestions: { description: "getFormQuestions", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
96
|
-
listSubmissions: { description: "listSubmissions", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
97
|
-
getSubmission: { description: "getSubmission", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
98
|
-
createSubmission: { description: "createSubmission", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
99
|
-
deleteSubmission: { description: "deleteSubmission", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
100
|
-
getFormReports: { description: "getFormReports", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
101
|
-
getFormFiles: { description: "getFormFiles", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
102
|
-
listFolders: { description: "listFolders", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
103
|
-
getUser: { description: "getUser", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
104
|
-
getUsage: { description: "getUsage", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
105
|
-
getFormWebhooks: { description: "getFormWebhooks", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
106
|
-
createFormWebhook: { description: "createFormWebhook", parameters: [{ name: "input", dataType: "string", description: "Input parameter", formInputType: "text", required: false }], returnType: "object", returnDescription: "API response." },
|
|
107
|
-
};
|
|
108
|
-
export const JotformModuleMetadata = {
|
|
109
|
-
description: "JotForm — forms, submissions, reports, folders, and webhooks.",
|
|
110
|
-
methods: Object.keys(JotformFunctions),
|
|
111
|
-
category: "forms",
|
|
112
|
-
};
|
|
113
|
-
//# sourceMappingURL=jotform.js.map
|
package/dist/jotform.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"jotform.js","sourceRoot":"","sources":["../src/jotform.ts"],"names":[],"mappings":"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"}
|