n8n-nodes-quipu 0.1.0
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/LICENSE.md +18 -0
- package/README.md +176 -0
- package/dist/credentials/ExampleCredentialsApi.credentials.d.ts +8 -0
- package/dist/credentials/ExampleCredentialsApi.credentials.js +46 -0
- package/dist/credentials/ExampleCredentialsApi.credentials.js.map +1 -0
- package/dist/credentials/HttpBinApi.credentials.d.ts +9 -0
- package/dist/credentials/HttpBinApi.credentials.js +43 -0
- package/dist/credentials/HttpBinApi.credentials.js.map +1 -0
- package/dist/credentials/QuipuApi.credentials.d.ts +9 -0
- package/dist/credentials/QuipuApi.credentials.js +75 -0
- package/dist/credentials/QuipuApi.credentials.js.map +1 -0
- package/dist/nodes/ExampleNode/ExampleNode.node.d.ts +5 -0
- package/dist/nodes/ExampleNode/ExampleNode.node.js +63 -0
- package/dist/nodes/ExampleNode/ExampleNode.node.js.map +1 -0
- package/dist/nodes/HttpBin/HttpBin.node.d.ts +4 -0
- package/dist/nodes/HttpBin/HttpBin.node.js +55 -0
- package/dist/nodes/HttpBin/HttpBin.node.js.map +1 -0
- package/dist/nodes/HttpBin/HttpBin.node.json +18 -0
- package/dist/nodes/HttpBin/HttpVerbDescription.d.ts +3 -0
- package/dist/nodes/HttpBin/HttpVerbDescription.js +234 -0
- package/dist/nodes/HttpBin/HttpVerbDescription.js.map +1 -0
- package/dist/nodes/HttpBin/httpbin.svg +18 -0
- package/dist/nodes/Quipu/HttpBin.node.d.ts +4 -0
- package/dist/nodes/Quipu/HttpBin.node.js +76 -0
- package/dist/nodes/Quipu/HttpBin.node.js.map +1 -0
- package/dist/nodes/Quipu/HttpBin.node.json +19 -0
- package/dist/nodes/Quipu/HttpVerbDescription.d.ts +3 -0
- package/dist/nodes/Quipu/HttpVerbDescription.js +234 -0
- package/dist/nodes/Quipu/HttpVerbDescription.js.map +1 -0
- package/dist/nodes/Quipu/Quipu.node.d.ts +4 -0
- package/dist/nodes/Quipu/Quipu.node.js +76 -0
- package/dist/nodes/Quipu/Quipu.node.js.map +1 -0
- package/dist/nodes/Quipu/Quipu.node.json +19 -0
- package/dist/nodes/Quipu/httpbin.svg +18 -0
- package/dist/nodes/Quipu/openapi.json +3147 -0
- package/dist/nodes/Quipu/quipu.svg +18 -0
- package/dist/package.json +57 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/index.js +0 -0
- package/package.json +56 -0
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.httpVerbFields = exports.httpVerbOperations = void 0;
|
|
4
|
+
exports.httpVerbOperations = [
|
|
5
|
+
{
|
|
6
|
+
displayName: "Operation",
|
|
7
|
+
name: "operation",
|
|
8
|
+
type: "options",
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ["httpVerb"],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: "GET",
|
|
18
|
+
value: "get",
|
|
19
|
+
description: "Perform a GET request",
|
|
20
|
+
routing: {
|
|
21
|
+
request: {
|
|
22
|
+
method: "GET",
|
|
23
|
+
url: "/get",
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: "DELETE",
|
|
29
|
+
value: "delete",
|
|
30
|
+
description: "Perform a DELETE request",
|
|
31
|
+
routing: {
|
|
32
|
+
request: {
|
|
33
|
+
method: "DELETE",
|
|
34
|
+
url: "/delete",
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
default: "get",
|
|
40
|
+
},
|
|
41
|
+
];
|
|
42
|
+
const getOperation = [
|
|
43
|
+
{
|
|
44
|
+
displayName: "Type of Data",
|
|
45
|
+
name: "typeofData",
|
|
46
|
+
default: "queryParameter",
|
|
47
|
+
description: "Select type of data to send [Query Parameters]",
|
|
48
|
+
displayOptions: {
|
|
49
|
+
show: {
|
|
50
|
+
resource: ["httpVerb"],
|
|
51
|
+
operation: ["get"],
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
type: "options",
|
|
55
|
+
options: [
|
|
56
|
+
{
|
|
57
|
+
name: "Query",
|
|
58
|
+
value: "queryParameter",
|
|
59
|
+
},
|
|
60
|
+
],
|
|
61
|
+
required: true,
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
displayName: "Query Parameters",
|
|
65
|
+
name: "arguments",
|
|
66
|
+
default: {},
|
|
67
|
+
description: "The request's query parameters",
|
|
68
|
+
displayOptions: {
|
|
69
|
+
show: {
|
|
70
|
+
resource: ["httpVerb"],
|
|
71
|
+
operation: ["get"],
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
options: [
|
|
75
|
+
{
|
|
76
|
+
name: "keyvalue",
|
|
77
|
+
displayName: "Key:Value",
|
|
78
|
+
values: [
|
|
79
|
+
{
|
|
80
|
+
displayName: "Key",
|
|
81
|
+
name: "key",
|
|
82
|
+
type: "string",
|
|
83
|
+
default: "",
|
|
84
|
+
required: true,
|
|
85
|
+
description: "Key of query parameter",
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
displayName: "Value",
|
|
89
|
+
name: "value",
|
|
90
|
+
type: "string",
|
|
91
|
+
default: "",
|
|
92
|
+
routing: {
|
|
93
|
+
send: {
|
|
94
|
+
property: "={{$parent.key}}",
|
|
95
|
+
type: "query",
|
|
96
|
+
},
|
|
97
|
+
},
|
|
98
|
+
required: true,
|
|
99
|
+
description: "Value of query parameter",
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
],
|
|
104
|
+
type: "fixedCollection",
|
|
105
|
+
typeOptions: {
|
|
106
|
+
multipleValues: true,
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
];
|
|
110
|
+
const deleteOperation = [
|
|
111
|
+
{
|
|
112
|
+
displayName: "Type of Data",
|
|
113
|
+
name: "typeofData",
|
|
114
|
+
default: "queryParameter",
|
|
115
|
+
description: "Select type of data to send [Query Parameter Arguments, JSON-Body]",
|
|
116
|
+
displayOptions: {
|
|
117
|
+
show: {
|
|
118
|
+
resource: ["httpVerb"],
|
|
119
|
+
operation: ["delete"],
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
options: [
|
|
123
|
+
{
|
|
124
|
+
name: "Query",
|
|
125
|
+
value: "queryParameter",
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
name: "JSON",
|
|
129
|
+
value: "jsonData",
|
|
130
|
+
},
|
|
131
|
+
],
|
|
132
|
+
required: true,
|
|
133
|
+
type: "options",
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
displayName: "Query Parameters",
|
|
137
|
+
name: "arguments",
|
|
138
|
+
default: {},
|
|
139
|
+
description: "The request's query parameters",
|
|
140
|
+
displayOptions: {
|
|
141
|
+
show: {
|
|
142
|
+
resource: ["httpVerb"],
|
|
143
|
+
operation: ["delete"],
|
|
144
|
+
typeofData: ["queryParameter"],
|
|
145
|
+
},
|
|
146
|
+
},
|
|
147
|
+
options: [
|
|
148
|
+
{
|
|
149
|
+
name: "keyvalue",
|
|
150
|
+
displayName: "Key:Value",
|
|
151
|
+
values: [
|
|
152
|
+
{
|
|
153
|
+
displayName: "Key",
|
|
154
|
+
name: "key",
|
|
155
|
+
type: "string",
|
|
156
|
+
default: "",
|
|
157
|
+
required: true,
|
|
158
|
+
description: "Key of query parameter",
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
displayName: "Value",
|
|
162
|
+
name: "value",
|
|
163
|
+
type: "string",
|
|
164
|
+
default: "",
|
|
165
|
+
routing: {
|
|
166
|
+
send: {
|
|
167
|
+
property: "={{$parent.key}}",
|
|
168
|
+
type: "query",
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
required: true,
|
|
172
|
+
description: "Value of query parameter",
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
},
|
|
176
|
+
],
|
|
177
|
+
type: "fixedCollection",
|
|
178
|
+
typeOptions: {
|
|
179
|
+
multipleValues: true,
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
displayName: "JSON Object",
|
|
184
|
+
name: "arguments",
|
|
185
|
+
default: {},
|
|
186
|
+
description: "The request's JSON properties",
|
|
187
|
+
displayOptions: {
|
|
188
|
+
show: {
|
|
189
|
+
resource: ["httpVerb"],
|
|
190
|
+
operation: ["delete"],
|
|
191
|
+
typeofData: ["jsonData"],
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
options: [
|
|
195
|
+
{
|
|
196
|
+
name: "keyvalue",
|
|
197
|
+
displayName: "Key:Value",
|
|
198
|
+
values: [
|
|
199
|
+
{
|
|
200
|
+
displayName: "Key",
|
|
201
|
+
name: "key",
|
|
202
|
+
type: "string",
|
|
203
|
+
default: "",
|
|
204
|
+
required: true,
|
|
205
|
+
description: "Key of JSON property",
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
displayName: "Value",
|
|
209
|
+
name: "value",
|
|
210
|
+
type: "string",
|
|
211
|
+
default: "",
|
|
212
|
+
routing: {
|
|
213
|
+
send: {
|
|
214
|
+
property: "={{$parent.key}}",
|
|
215
|
+
type: "body",
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
required: true,
|
|
219
|
+
description: "Value of JSON property",
|
|
220
|
+
},
|
|
221
|
+
],
|
|
222
|
+
},
|
|
223
|
+
],
|
|
224
|
+
type: "fixedCollection",
|
|
225
|
+
typeOptions: {
|
|
226
|
+
multipleValues: true,
|
|
227
|
+
},
|
|
228
|
+
},
|
|
229
|
+
];
|
|
230
|
+
exports.httpVerbFields = [
|
|
231
|
+
...getOperation,
|
|
232
|
+
...deleteOperation,
|
|
233
|
+
];
|
|
234
|
+
//# sourceMappingURL=HttpVerbDescription.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HttpVerbDescription.js","sourceRoot":"","sources":["../../../nodes/HttpBin/HttpVerbDescription.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> <image id="image0" width="32" height="32" x="0" y="0"
|
|
4
|
+
href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAABGdBTUEAALGPC/xhBQAAACBjSFJN
|
|
5
|
+
AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElN
|
|
6
|
+
RQfmBg4UAC/TqOZZAAACA0lEQVRIx5XVv09TURwF8M+jFHDSyRkGFhPAEfyRdDHi5uriXyDoYgKT
|
|
7
|
+
MJDWzUT/Ahf/AiOEpajEgCESmpiYmDCxGowDTYE+h76+vte+15Zzk753b7733HNO772PbEw7ECba
|
|
8
|
+
genswtEcgl0/PHARV72066YrIDSZ6k8KBym4741r0XsB284TdUX8chn1zrzwJUmw4KFXPqjFE0Y0
|
|
9
|
+
u5YKEhpmfLZuy7f2wLKGI8WhDRYdaVhurdTCidmU5P44N+skaaGQH1IfFFrOYMotT932zNgQExve
|
|
10
|
+
OfTeT8dtBceO3TFlOyopY7UPxV+/fWyn3Y0xrFhJjZWFXhs12pKdRO9ObGSuyB8Xbd9JjMjDc6HQ
|
|
11
|
+
IcrKqAiVe8vyCEJPrGBWxZYqqtZt9RbmHabAvAAVdVUlJTvWshbMt0AYn40OmlchSKOePTyYIMQn
|
|
12
|
+
rb8yI8TsDCrRs4od7Jv3KOoPGWKboBqp2LN3FQvdO7EPshSsRSTXrSop2cSiiUGkG/bj2JqaQiHW
|
|
13
|
+
4nv50mFcu28j30KQarAnEPhuzvwwGYQ975vx7+JwGXTjTIAzoYlhCArR5d0KkfauqJAVY6+FG5hD
|
|
14
|
+
OS6veqyCuSiTAQT/jKmlQtyxIBCoZV28HQvN6LuQvJFC4xjvibfYOZUdUXd9taTWJbOubiIVXmjG
|
|
15
|
+
W/fs9qpZcpr6pOe1U0udSf8BR7ef4yxyOskAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjItMDYtMTRU
|
|
16
|
+
MTc6MDA6NDcrMDM6MDBfo1sRAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIyLTA2LTE0VDE3OjAwOjQ3
|
|
17
|
+
KzAzOjAwLv7jrQAAAABJRU5ErkJggg==" />
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.Quipu = void 0;
|
|
37
|
+
const n8n_openapi_node_1 = require("@devlikeapro/n8n-openapi-node");
|
|
38
|
+
const doc = __importStar(require("./openapi.json"));
|
|
39
|
+
const config = {};
|
|
40
|
+
const parser = new n8n_openapi_node_1.N8NPropertiesBuilder(doc, config);
|
|
41
|
+
const properties = parser.build();
|
|
42
|
+
class Quipu {
|
|
43
|
+
constructor() {
|
|
44
|
+
this.description = {
|
|
45
|
+
displayName: "Quipu",
|
|
46
|
+
name: "quipu",
|
|
47
|
+
icon: "file:quipu.svg",
|
|
48
|
+
group: ["finance"],
|
|
49
|
+
version: 1,
|
|
50
|
+
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
51
|
+
description: "Interact with Quipu API for invoicing, accounting and taxes",
|
|
52
|
+
defaults: {
|
|
53
|
+
name: "Quipu",
|
|
54
|
+
},
|
|
55
|
+
inputs: ["main"],
|
|
56
|
+
outputs: ["main"],
|
|
57
|
+
credentials: [
|
|
58
|
+
{
|
|
59
|
+
name: "quipuApi",
|
|
60
|
+
required: true,
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
requestDefaults: {
|
|
64
|
+
baseURL: "https://getquipu.com",
|
|
65
|
+
url: "",
|
|
66
|
+
headers: {
|
|
67
|
+
Accept: "application/vnd.quipu.v1+json",
|
|
68
|
+
"Content-Type": "application/vnd.quipu.v1+json",
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
properties: properties,
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
exports.Quipu = Quipu;
|
|
76
|
+
//# sourceMappingURL=HttpBin.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HttpBin.node.js","sourceRoot":"","sources":["../../../nodes/Quipu/HttpBin.node.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKA,oEAGuC;AACvC,oDAAsC;AAEtC,MAAM,MAAM,GAA+B,EAAE,CAAC;AAC9C,MAAM,MAAM,GAAG,IAAI,uCAAoB,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;AACrD,MAAM,UAAU,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC;AAElC,MAAa,KAAK;IAAlB;QACE,gBAAW,GAAyB;YAClC,WAAW,EAAE,OAAO;YACpB,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,gBAAgB;YACtB,KAAK,EAAE,CAAC,SAAS,CAAC;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,6DAA6D;YAC1E,QAAQ,EAAE;gBACR,IAAI,EAAE,OAAO;aACd;YACD,MAAM,EAAE,QAAyB;YACjC,OAAO,EAAE,QAAyB;YAClC,WAAW,EAAE;gBACX;oBACE,IAAI,EAAE,UAAU;oBAChB,QAAQ,EAAE,IAAI;iBACf;aACF;YACD,eAAe,EAAE;gBACf,OAAO,EAAE,sBAAsB;gBAC/B,GAAG,EAAE,EAAE;gBACP,OAAO,EAAE;oBACP,MAAM,EAAE,+BAA+B;oBACvC,cAAc,EAAE,+BAA+B;iBAChD;aACF;YACD,UAAU,EAAE,UAAU;SACvB,CAAC;IACJ,CAAC;CAAA;AA9BD,sBA8BC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-quipu.quipu",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": ["Finance", "Accounting"],
|
|
6
|
+
"resources": {
|
|
7
|
+
"credentialDocumentation": [
|
|
8
|
+
{
|
|
9
|
+
"url": "https://getquipu.com/en/integrations"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"primaryDocumentation": [
|
|
13
|
+
{
|
|
14
|
+
"url": "https://getquipu.com/en/integrations"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
"alias": ["Invoicing", "Accounting", "Taxes", "Billing"]
|
|
19
|
+
}
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.httpVerbFields = exports.httpVerbOperations = void 0;
|
|
4
|
+
exports.httpVerbOperations = [
|
|
5
|
+
{
|
|
6
|
+
displayName: "Operation",
|
|
7
|
+
name: "operation",
|
|
8
|
+
type: "options",
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ["httpVerb"],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: "GET",
|
|
18
|
+
value: "get",
|
|
19
|
+
description: "Perform a GET request",
|
|
20
|
+
routing: {
|
|
21
|
+
request: {
|
|
22
|
+
method: "GET",
|
|
23
|
+
url: "/get",
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: "DELETE",
|
|
29
|
+
value: "delete",
|
|
30
|
+
description: "Perform a DELETE request",
|
|
31
|
+
routing: {
|
|
32
|
+
request: {
|
|
33
|
+
method: "DELETE",
|
|
34
|
+
url: "/delete",
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
default: "get",
|
|
40
|
+
},
|
|
41
|
+
];
|
|
42
|
+
const getOperation = [
|
|
43
|
+
{
|
|
44
|
+
displayName: "Type of Data",
|
|
45
|
+
name: "typeofData",
|
|
46
|
+
default: "queryParameter",
|
|
47
|
+
description: "Select type of data to send [Query Parameters]",
|
|
48
|
+
displayOptions: {
|
|
49
|
+
show: {
|
|
50
|
+
resource: ["httpVerb"],
|
|
51
|
+
operation: ["get"],
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
type: "options",
|
|
55
|
+
options: [
|
|
56
|
+
{
|
|
57
|
+
name: "Query",
|
|
58
|
+
value: "queryParameter",
|
|
59
|
+
},
|
|
60
|
+
],
|
|
61
|
+
required: true,
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
displayName: "Query Parameters",
|
|
65
|
+
name: "arguments",
|
|
66
|
+
default: {},
|
|
67
|
+
description: "The request's query parameters",
|
|
68
|
+
displayOptions: {
|
|
69
|
+
show: {
|
|
70
|
+
resource: ["httpVerb"],
|
|
71
|
+
operation: ["get"],
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
options: [
|
|
75
|
+
{
|
|
76
|
+
name: "keyvalue",
|
|
77
|
+
displayName: "Key:Value",
|
|
78
|
+
values: [
|
|
79
|
+
{
|
|
80
|
+
displayName: "Key",
|
|
81
|
+
name: "key",
|
|
82
|
+
type: "string",
|
|
83
|
+
default: "",
|
|
84
|
+
required: true,
|
|
85
|
+
description: "Key of query parameter",
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
displayName: "Value",
|
|
89
|
+
name: "value",
|
|
90
|
+
type: "string",
|
|
91
|
+
default: "",
|
|
92
|
+
routing: {
|
|
93
|
+
send: {
|
|
94
|
+
property: "={{$parent.key}}",
|
|
95
|
+
type: "query",
|
|
96
|
+
},
|
|
97
|
+
},
|
|
98
|
+
required: true,
|
|
99
|
+
description: "Value of query parameter",
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
],
|
|
104
|
+
type: "fixedCollection",
|
|
105
|
+
typeOptions: {
|
|
106
|
+
multipleValues: true,
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
];
|
|
110
|
+
const deleteOperation = [
|
|
111
|
+
{
|
|
112
|
+
displayName: "Type of Data",
|
|
113
|
+
name: "typeofData",
|
|
114
|
+
default: "queryParameter",
|
|
115
|
+
description: "Select type of data to send [Query Parameter Arguments, JSON-Body]",
|
|
116
|
+
displayOptions: {
|
|
117
|
+
show: {
|
|
118
|
+
resource: ["httpVerb"],
|
|
119
|
+
operation: ["delete"],
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
options: [
|
|
123
|
+
{
|
|
124
|
+
name: "Query",
|
|
125
|
+
value: "queryParameter",
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
name: "JSON",
|
|
129
|
+
value: "jsonData",
|
|
130
|
+
},
|
|
131
|
+
],
|
|
132
|
+
required: true,
|
|
133
|
+
type: "options",
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
displayName: "Query Parameters",
|
|
137
|
+
name: "arguments",
|
|
138
|
+
default: {},
|
|
139
|
+
description: "The request's query parameters",
|
|
140
|
+
displayOptions: {
|
|
141
|
+
show: {
|
|
142
|
+
resource: ["httpVerb"],
|
|
143
|
+
operation: ["delete"],
|
|
144
|
+
typeofData: ["queryParameter"],
|
|
145
|
+
},
|
|
146
|
+
},
|
|
147
|
+
options: [
|
|
148
|
+
{
|
|
149
|
+
name: "keyvalue",
|
|
150
|
+
displayName: "Key:Value",
|
|
151
|
+
values: [
|
|
152
|
+
{
|
|
153
|
+
displayName: "Key",
|
|
154
|
+
name: "key",
|
|
155
|
+
type: "string",
|
|
156
|
+
default: "",
|
|
157
|
+
required: true,
|
|
158
|
+
description: "Key of query parameter",
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
displayName: "Value",
|
|
162
|
+
name: "value",
|
|
163
|
+
type: "string",
|
|
164
|
+
default: "",
|
|
165
|
+
routing: {
|
|
166
|
+
send: {
|
|
167
|
+
property: "={{$parent.key}}",
|
|
168
|
+
type: "query",
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
required: true,
|
|
172
|
+
description: "Value of query parameter",
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
},
|
|
176
|
+
],
|
|
177
|
+
type: "fixedCollection",
|
|
178
|
+
typeOptions: {
|
|
179
|
+
multipleValues: true,
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
displayName: "JSON Object",
|
|
184
|
+
name: "arguments",
|
|
185
|
+
default: {},
|
|
186
|
+
description: "The request's JSON properties",
|
|
187
|
+
displayOptions: {
|
|
188
|
+
show: {
|
|
189
|
+
resource: ["httpVerb"],
|
|
190
|
+
operation: ["delete"],
|
|
191
|
+
typeofData: ["jsonData"],
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
options: [
|
|
195
|
+
{
|
|
196
|
+
name: "keyvalue",
|
|
197
|
+
displayName: "Key:Value",
|
|
198
|
+
values: [
|
|
199
|
+
{
|
|
200
|
+
displayName: "Key",
|
|
201
|
+
name: "key",
|
|
202
|
+
type: "string",
|
|
203
|
+
default: "",
|
|
204
|
+
required: true,
|
|
205
|
+
description: "Key of JSON property",
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
displayName: "Value",
|
|
209
|
+
name: "value",
|
|
210
|
+
type: "string",
|
|
211
|
+
default: "",
|
|
212
|
+
routing: {
|
|
213
|
+
send: {
|
|
214
|
+
property: "={{$parent.key}}",
|
|
215
|
+
type: "body",
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
required: true,
|
|
219
|
+
description: "Value of JSON property",
|
|
220
|
+
},
|
|
221
|
+
],
|
|
222
|
+
},
|
|
223
|
+
],
|
|
224
|
+
type: "fixedCollection",
|
|
225
|
+
typeOptions: {
|
|
226
|
+
multipleValues: true,
|
|
227
|
+
},
|
|
228
|
+
},
|
|
229
|
+
];
|
|
230
|
+
exports.httpVerbFields = [
|
|
231
|
+
...getOperation,
|
|
232
|
+
...deleteOperation,
|
|
233
|
+
];
|
|
234
|
+
//# sourceMappingURL=HttpVerbDescription.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HttpVerbDescription.js","sourceRoot":"","sources":["../../../nodes/Quipu/HttpVerbDescription.ts"],"names":[],"mappings":"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"}
|