@probo/n8n-nodes-probo 0.165.3 → 0.166.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/dist/nodes/Probo/Probo.node.js +5 -0
- package/dist/nodes/Probo/Probo.node.js.map +1 -1
- package/dist/nodes/Probo/actions/document/archive.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/archive.operation.js +46 -0
- package/dist/nodes/Probo/actions/document/archive.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/cancelSignature.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/cancelSignature.operation.js +39 -0
- package/dist/nodes/Probo/actions/document/cancelSignature.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/create.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/create.operation.js +191 -0
- package/dist/nodes/Probo/actions/document/create.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/createDraftVersion.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/createDraftVersion.operation.js +52 -0
- package/dist/nodes/Probo/actions/document/createDraftVersion.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/delete.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/delete.operation.js +37 -0
- package/dist/nodes/Probo/actions/document/delete.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/deleteDraftVersion.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/deleteDraftVersion.operation.js +37 -0
- package/dist/nodes/Probo/actions/document/deleteDraftVersion.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/get.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/get.operation.js +46 -0
- package/dist/nodes/Probo/actions/document/get.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/getAll.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/getAll.operation.js +92 -0
- package/dist/nodes/Probo/actions/document/getAll.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/getAllSignatures.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/getAllSignatures.operation.js +95 -0
- package/dist/nodes/Probo/actions/document/getAllSignatures.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/getAllVersions.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/getAllVersions.operation.js +96 -0
- package/dist/nodes/Probo/actions/document/getAllVersions.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/getSignature.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/getSignature.operation.js +49 -0
- package/dist/nodes/Probo/actions/document/getSignature.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/getVersion.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/getVersion.operation.js +50 -0
- package/dist/nodes/Probo/actions/document/getVersion.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/index.d.ts +24 -0
- package/dist/nodes/Probo/actions/document/index.js +242 -0
- package/dist/nodes/Probo/actions/document/index.js.map +1 -0
- package/dist/nodes/Probo/actions/document/publishMajorVersion.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/publishMajorVersion.operation.js +79 -0
- package/dist/nodes/Probo/actions/document/publishMajorVersion.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/publishMinorVersion.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/publishMinorVersion.operation.js +79 -0
- package/dist/nodes/Probo/actions/document/publishMinorVersion.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/requestApproval.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/requestApproval.operation.js +79 -0
- package/dist/nodes/Probo/actions/document/requestApproval.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/requestSignature.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/requestSignature.operation.js +68 -0
- package/dist/nodes/Probo/actions/document/requestSignature.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/sendSigningNotifications.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/sendSigningNotifications.operation.js +37 -0
- package/dist/nodes/Probo/actions/document/sendSigningNotifications.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/unarchive.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/unarchive.operation.js +46 -0
- package/dist/nodes/Probo/actions/document/unarchive.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/update.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/update.operation.js +87 -0
- package/dist/nodes/Probo/actions/document/update.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/updateVersion.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/updateVersion.operation.js +123 -0
- package/dist/nodes/Probo/actions/document/updateVersion.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/voidApproval.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/voidApproval.operation.js +55 -0
- package/dist/nodes/Probo/actions/document/voidApproval.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/index.js +2 -0
- package/dist/nodes/Probo/actions/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.description = void 0;
|
|
4
|
+
exports.execute = execute;
|
|
5
|
+
const GenericFunctions_1 = require("../../GenericFunctions");
|
|
6
|
+
exports.description = [
|
|
7
|
+
{
|
|
8
|
+
displayName: 'Document Version ID',
|
|
9
|
+
name: 'documentVersionId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['document'],
|
|
14
|
+
operation: ['getAllSignatures'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the document version',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Return All',
|
|
23
|
+
name: 'returnAll',
|
|
24
|
+
type: 'boolean',
|
|
25
|
+
displayOptions: {
|
|
26
|
+
show: {
|
|
27
|
+
resource: ['document'],
|
|
28
|
+
operation: ['getAllSignatures'],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
default: false,
|
|
32
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
displayName: 'Limit',
|
|
36
|
+
name: 'limit',
|
|
37
|
+
type: 'number',
|
|
38
|
+
displayOptions: {
|
|
39
|
+
show: {
|
|
40
|
+
resource: ['document'],
|
|
41
|
+
operation: ['getAllSignatures'],
|
|
42
|
+
returnAll: [false],
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
typeOptions: {
|
|
46
|
+
minValue: 1,
|
|
47
|
+
},
|
|
48
|
+
default: 50,
|
|
49
|
+
description: 'Max number of results to return',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
async function execute(itemIndex) {
|
|
53
|
+
const documentVersionId = this.getNodeParameter('documentVersionId', itemIndex);
|
|
54
|
+
const returnAll = this.getNodeParameter('returnAll', itemIndex);
|
|
55
|
+
const limit = this.getNodeParameter('limit', itemIndex, 50);
|
|
56
|
+
const query = `
|
|
57
|
+
query GetDocumentVersionSignatures($documentVersionId: ID!, $first: Int, $after: CursorKey) {
|
|
58
|
+
node(id: $documentVersionId) {
|
|
59
|
+
... on DocumentVersion {
|
|
60
|
+
signatures(first: $first, after: $after) {
|
|
61
|
+
edges {
|
|
62
|
+
node {
|
|
63
|
+
id
|
|
64
|
+
state
|
|
65
|
+
signedAt
|
|
66
|
+
requestedAt
|
|
67
|
+
createdAt
|
|
68
|
+
updatedAt
|
|
69
|
+
signedBy {
|
|
70
|
+
id
|
|
71
|
+
fullName
|
|
72
|
+
primaryEmailAddress
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
pageInfo {
|
|
77
|
+
hasNextPage
|
|
78
|
+
endCursor
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
`;
|
|
85
|
+
const signatures = await GenericFunctions_1.proboApiRequestAllItems.call(this, query, { documentVersionId }, (response) => {
|
|
86
|
+
const data = response === null || response === void 0 ? void 0 : response.data;
|
|
87
|
+
const node = data === null || data === void 0 ? void 0 : data.node;
|
|
88
|
+
return node === null || node === void 0 ? void 0 : node.signatures;
|
|
89
|
+
}, returnAll, limit);
|
|
90
|
+
return {
|
|
91
|
+
json: { signatures },
|
|
92
|
+
pairedItem: { item: itemIndex },
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
//# sourceMappingURL=getAllSignatures.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAllSignatures.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/document/getAllSignatures.operation.ts"],"names":[],"mappings":";;;AAgEA,0BAuDC;AAxGD,6DAAiE;AAEpD,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,qBAAqB;QAClC,IAAI,EAAE,mBAAmB;QACzB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,UAAU,CAAC;gBACtB,SAAS,EAAE,CAAC,kBAAkB,CAAC;aAC/B;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,gCAAgC;QAC7C,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,UAAU,CAAC;gBACtB,SAAS,EAAE,CAAC,kBAAkB,CAAC;aAC/B;SACD;QACD,OAAO,EAAE,KAAK;QACd,WAAW,EAAE,2DAA2D;KACxE;IACD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,UAAU,CAAC;gBACtB,SAAS,EAAE,CAAC,kBAAkB,CAAC;gBAC/B,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,WAAW,EAAE;YACZ,QAAQ,EAAE,CAAC;SACX;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,iCAAiC;KAC9C;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,iBAAiB,GAAG,IAAI,CAAC,gBAAgB,CAAC,mBAAmB,EAAE,SAAS,CAAW,CAAC;IAC1F,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,SAAS,CAAY,CAAC;IAC3E,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;IAEtE,MAAM,KAAK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4Bb,CAAC;IAEF,MAAM,UAAU,GAAG,MAAM,0CAAuB,CAAC,IAAI,CACpD,IAAI,EACJ,KAAK,EACL,EAAE,iBAAiB,EAAE,EACrB,CAAC,QAAQ,EAAE,EAAE;QACZ,MAAM,IAAI,GAAG,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,IAA+B,CAAC;QACvD,MAAM,IAAI,GAAG,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,IAA+B,CAAC;QACnD,OAAO,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,UAAqC,CAAC;IACpD,CAAC,EACD,SAAS,EACT,KAAK,CACL,CAAC;IAEF,OAAO;QACN,IAAI,EAAE,EAAE,UAAU,EAAE;QACpB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.description = void 0;
|
|
4
|
+
exports.execute = execute;
|
|
5
|
+
const GenericFunctions_1 = require("../../GenericFunctions");
|
|
6
|
+
exports.description = [
|
|
7
|
+
{
|
|
8
|
+
displayName: 'Document ID',
|
|
9
|
+
name: 'documentId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['document'],
|
|
14
|
+
operation: ['getAllVersions'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the document',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Return All',
|
|
23
|
+
name: 'returnAll',
|
|
24
|
+
type: 'boolean',
|
|
25
|
+
displayOptions: {
|
|
26
|
+
show: {
|
|
27
|
+
resource: ['document'],
|
|
28
|
+
operation: ['getAllVersions'],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
default: false,
|
|
32
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
displayName: 'Limit',
|
|
36
|
+
name: 'limit',
|
|
37
|
+
type: 'number',
|
|
38
|
+
displayOptions: {
|
|
39
|
+
show: {
|
|
40
|
+
resource: ['document'],
|
|
41
|
+
operation: ['getAllVersions'],
|
|
42
|
+
returnAll: [false],
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
typeOptions: {
|
|
46
|
+
minValue: 1,
|
|
47
|
+
},
|
|
48
|
+
default: 50,
|
|
49
|
+
description: 'Max number of results to return',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
async function execute(itemIndex) {
|
|
53
|
+
const documentId = this.getNodeParameter('documentId', itemIndex);
|
|
54
|
+
const returnAll = this.getNodeParameter('returnAll', itemIndex);
|
|
55
|
+
const limit = this.getNodeParameter('limit', itemIndex, 50);
|
|
56
|
+
const query = `
|
|
57
|
+
query GetDocumentVersions($documentId: ID!, $first: Int, $after: CursorKey) {
|
|
58
|
+
node(id: $documentId) {
|
|
59
|
+
... on Document {
|
|
60
|
+
versions(first: $first, after: $after) {
|
|
61
|
+
edges {
|
|
62
|
+
node {
|
|
63
|
+
id
|
|
64
|
+
title
|
|
65
|
+
major
|
|
66
|
+
minor
|
|
67
|
+
status
|
|
68
|
+
content
|
|
69
|
+
changelog
|
|
70
|
+
classification
|
|
71
|
+
documentType
|
|
72
|
+
publishedAt
|
|
73
|
+
createdAt
|
|
74
|
+
updatedAt
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
pageInfo {
|
|
78
|
+
hasNextPage
|
|
79
|
+
endCursor
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
`;
|
|
86
|
+
const versions = await GenericFunctions_1.proboApiRequestAllItems.call(this, query, { documentId }, (response) => {
|
|
87
|
+
const data = response === null || response === void 0 ? void 0 : response.data;
|
|
88
|
+
const node = data === null || data === void 0 ? void 0 : data.node;
|
|
89
|
+
return node === null || node === void 0 ? void 0 : node.versions;
|
|
90
|
+
}, returnAll, limit);
|
|
91
|
+
return {
|
|
92
|
+
json: { versions },
|
|
93
|
+
pairedItem: { item: itemIndex },
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
//# sourceMappingURL=getAllVersions.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAllVersions.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/document/getAllVersions.operation.ts"],"names":[],"mappings":";;;AAgEA,0BAwDC;AAzGD,6DAAiE;AAEpD,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,aAAa;QAC1B,IAAI,EAAE,YAAY;QAClB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,UAAU,CAAC;gBACtB,SAAS,EAAE,CAAC,gBAAgB,CAAC;aAC7B;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,wBAAwB;QACrC,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,UAAU,CAAC;gBACtB,SAAS,EAAE,CAAC,gBAAgB,CAAC;aAC7B;SACD;QACD,OAAO,EAAE,KAAK;QACd,WAAW,EAAE,2DAA2D;KACxE;IACD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,UAAU,CAAC;gBACtB,SAAS,EAAE,CAAC,gBAAgB,CAAC;gBAC7B,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,WAAW,EAAE;YACZ,QAAQ,EAAE,CAAC;SACX;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,iCAAiC;KAC9C;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,YAAY,EAAE,SAAS,CAAW,CAAC;IAC5E,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,SAAS,CAAY,CAAC;IAC3E,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;IAEtE,MAAM,KAAK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6Bb,CAAC;IAEF,MAAM,QAAQ,GAAG,MAAM,0CAAuB,CAAC,IAAI,CAClD,IAAI,EACJ,KAAK,EACL,EAAE,UAAU,EAAE,EACd,CAAC,QAAQ,EAAE,EAAE;QACZ,MAAM,IAAI,GAAG,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,IAA+B,CAAC;QACvD,MAAM,IAAI,GAAG,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,IAA+B,CAAC;QACnD,OAAO,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,QAAmC,CAAC;IAClD,CAAC,EACD,SAAS,EACT,KAAK,CACL,CAAC;IAEF,OAAO;QACN,IAAI,EAAE,EAAE,QAAQ,EAAE;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.description = void 0;
|
|
4
|
+
exports.execute = execute;
|
|
5
|
+
const GenericFunctions_1 = require("../../GenericFunctions");
|
|
6
|
+
exports.description = [
|
|
7
|
+
{
|
|
8
|
+
displayName: 'Signature ID',
|
|
9
|
+
name: 'signatureId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['document'],
|
|
14
|
+
operation: ['getSignature'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the document version signature',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
];
|
|
22
|
+
async function execute(itemIndex) {
|
|
23
|
+
const signatureId = this.getNodeParameter('signatureId', itemIndex);
|
|
24
|
+
const query = `
|
|
25
|
+
query GetDocumentVersionSignature($signatureId: ID!) {
|
|
26
|
+
node(id: $signatureId) {
|
|
27
|
+
... on DocumentVersionSignature {
|
|
28
|
+
id
|
|
29
|
+
state
|
|
30
|
+
signedAt
|
|
31
|
+
requestedAt
|
|
32
|
+
createdAt
|
|
33
|
+
updatedAt
|
|
34
|
+
signedBy {
|
|
35
|
+
id
|
|
36
|
+
fullName
|
|
37
|
+
primaryEmailAddress
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
`;
|
|
43
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { signatureId });
|
|
44
|
+
return {
|
|
45
|
+
json: responseData,
|
|
46
|
+
pairedItem: { item: itemIndex },
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=getSignature.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSignature.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/document/getSignature.operation.ts"],"names":[],"mappings":";;;AAkCA,0BAgCC;AAnDD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,cAAc;QAC3B,IAAI,EAAE,aAAa;QACnB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,UAAU,CAAC;gBACtB,SAAS,EAAE,CAAC,cAAc,CAAC;aAC3B;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,0CAA0C;QACvD,QAAQ,EAAE,IAAI;KACd;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,WAAW,GAAG,IAAI,CAAC,gBAAgB,CAAC,aAAa,EAAE,SAAS,CAAW,CAAC;IAE9E,MAAM,KAAK,GAAG;;;;;;;;;;;;;;;;;;EAkBb,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,WAAW,EAAE,CAAC,CAAC;IAE9E,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.description = void 0;
|
|
4
|
+
exports.execute = execute;
|
|
5
|
+
const GenericFunctions_1 = require("../../GenericFunctions");
|
|
6
|
+
exports.description = [
|
|
7
|
+
{
|
|
8
|
+
displayName: 'Document Version ID',
|
|
9
|
+
name: 'documentVersionId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['document'],
|
|
14
|
+
operation: ['getVersion'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the document version',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
];
|
|
22
|
+
async function execute(itemIndex) {
|
|
23
|
+
const documentVersionId = this.getNodeParameter('documentVersionId', itemIndex);
|
|
24
|
+
const query = `
|
|
25
|
+
query GetDocumentVersion($documentVersionId: ID!) {
|
|
26
|
+
node(id: $documentVersionId) {
|
|
27
|
+
... on DocumentVersion {
|
|
28
|
+
id
|
|
29
|
+
title
|
|
30
|
+
major
|
|
31
|
+
minor
|
|
32
|
+
status
|
|
33
|
+
content
|
|
34
|
+
changelog
|
|
35
|
+
classification
|
|
36
|
+
documentType
|
|
37
|
+
publishedAt
|
|
38
|
+
createdAt
|
|
39
|
+
updatedAt
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
`;
|
|
44
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { documentVersionId });
|
|
45
|
+
return {
|
|
46
|
+
json: responseData,
|
|
47
|
+
pairedItem: { item: itemIndex },
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=getVersion.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getVersion.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/document/getVersion.operation.ts"],"names":[],"mappings":";;;AAkCA,0BAiCC;AApDD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,qBAAqB;QAClC,IAAI,EAAE,mBAAmB;QACzB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,UAAU,CAAC;gBACtB,SAAS,EAAE,CAAC,YAAY,CAAC;aACzB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,gCAAgC;QAC7C,QAAQ,EAAE,IAAI;KACd;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,iBAAiB,GAAG,IAAI,CAAC,gBAAgB,CAAC,mBAAmB,EAAE,SAAS,CAAW,CAAC;IAE1F,MAAM,KAAK,GAAG;;;;;;;;;;;;;;;;;;;EAmBb,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,iBAAiB,EAAE,CAAC,CAAC;IAEpF,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { INodeProperties } from 'n8n-workflow';
|
|
2
|
+
import * as createOp from './create.operation';
|
|
3
|
+
import * as getOp from './get.operation';
|
|
4
|
+
import * as getAllOp from './getAll.operation';
|
|
5
|
+
import * as updateOp from './update.operation';
|
|
6
|
+
import * as deleteOp from './delete.operation';
|
|
7
|
+
import * as archiveOp from './archive.operation';
|
|
8
|
+
import * as unarchiveOp from './unarchive.operation';
|
|
9
|
+
import * as getVersionOp from './getVersion.operation';
|
|
10
|
+
import * as getAllVersionsOp from './getAllVersions.operation';
|
|
11
|
+
import * as createDraftVersionOp from './createDraftVersion.operation';
|
|
12
|
+
import * as updateVersionOp from './updateVersion.operation';
|
|
13
|
+
import * as deleteDraftVersionOp from './deleteDraftVersion.operation';
|
|
14
|
+
import * as publishMajorVersionOp from './publishMajorVersion.operation';
|
|
15
|
+
import * as publishMinorVersionOp from './publishMinorVersion.operation';
|
|
16
|
+
import * as requestApprovalOp from './requestApproval.operation';
|
|
17
|
+
import * as voidApprovalOp from './voidApproval.operation';
|
|
18
|
+
import * as getSignatureOp from './getSignature.operation';
|
|
19
|
+
import * as getAllSignaturesOp from './getAllSignatures.operation';
|
|
20
|
+
import * as requestSignatureOp from './requestSignature.operation';
|
|
21
|
+
import * as cancelSignatureOp from './cancelSignature.operation';
|
|
22
|
+
import * as sendSigningNotificationsOp from './sendSigningNotifications.operation';
|
|
23
|
+
export declare const description: INodeProperties[];
|
|
24
|
+
export { createOp as create, getOp as get, getAllOp as getAll, updateOp as update, deleteOp as delete, archiveOp as archive, unarchiveOp as unarchive, getVersionOp as getVersion, getAllVersionsOp as getAllVersions, createDraftVersionOp as createDraftVersion, updateVersionOp as updateVersion, deleteDraftVersionOp as deleteDraftVersion, publishMajorVersionOp as publishMajorVersion, publishMinorVersionOp as publishMinorVersion, requestApprovalOp as requestApproval, voidApprovalOp as voidApproval, getSignatureOp as getSignature, getAllSignaturesOp as getAllSignatures, requestSignatureOp as requestSignature, cancelSignatureOp as cancelSignature, sendSigningNotificationsOp as sendSigningNotifications, };
|
|
@@ -0,0 +1,242 @@
|
|
|
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.sendSigningNotifications = exports.cancelSignature = exports.requestSignature = exports.getAllSignatures = exports.getSignature = exports.voidApproval = exports.requestApproval = exports.publishMinorVersion = exports.publishMajorVersion = exports.deleteDraftVersion = exports.updateVersion = exports.createDraftVersion = exports.getAllVersions = exports.getVersion = exports.unarchive = exports.archive = exports.delete = exports.update = exports.getAll = exports.get = exports.create = exports.description = void 0;
|
|
37
|
+
const createOp = __importStar(require("./create.operation"));
|
|
38
|
+
exports.create = createOp;
|
|
39
|
+
const getOp = __importStar(require("./get.operation"));
|
|
40
|
+
exports.get = getOp;
|
|
41
|
+
const getAllOp = __importStar(require("./getAll.operation"));
|
|
42
|
+
exports.getAll = getAllOp;
|
|
43
|
+
const updateOp = __importStar(require("./update.operation"));
|
|
44
|
+
exports.update = updateOp;
|
|
45
|
+
const deleteOp = __importStar(require("./delete.operation"));
|
|
46
|
+
exports.delete = deleteOp;
|
|
47
|
+
const archiveOp = __importStar(require("./archive.operation"));
|
|
48
|
+
exports.archive = archiveOp;
|
|
49
|
+
const unarchiveOp = __importStar(require("./unarchive.operation"));
|
|
50
|
+
exports.unarchive = unarchiveOp;
|
|
51
|
+
const getVersionOp = __importStar(require("./getVersion.operation"));
|
|
52
|
+
exports.getVersion = getVersionOp;
|
|
53
|
+
const getAllVersionsOp = __importStar(require("./getAllVersions.operation"));
|
|
54
|
+
exports.getAllVersions = getAllVersionsOp;
|
|
55
|
+
const createDraftVersionOp = __importStar(require("./createDraftVersion.operation"));
|
|
56
|
+
exports.createDraftVersion = createDraftVersionOp;
|
|
57
|
+
const updateVersionOp = __importStar(require("./updateVersion.operation"));
|
|
58
|
+
exports.updateVersion = updateVersionOp;
|
|
59
|
+
const deleteDraftVersionOp = __importStar(require("./deleteDraftVersion.operation"));
|
|
60
|
+
exports.deleteDraftVersion = deleteDraftVersionOp;
|
|
61
|
+
const publishMajorVersionOp = __importStar(require("./publishMajorVersion.operation"));
|
|
62
|
+
exports.publishMajorVersion = publishMajorVersionOp;
|
|
63
|
+
const publishMinorVersionOp = __importStar(require("./publishMinorVersion.operation"));
|
|
64
|
+
exports.publishMinorVersion = publishMinorVersionOp;
|
|
65
|
+
const requestApprovalOp = __importStar(require("./requestApproval.operation"));
|
|
66
|
+
exports.requestApproval = requestApprovalOp;
|
|
67
|
+
const voidApprovalOp = __importStar(require("./voidApproval.operation"));
|
|
68
|
+
exports.voidApproval = voidApprovalOp;
|
|
69
|
+
const getSignatureOp = __importStar(require("./getSignature.operation"));
|
|
70
|
+
exports.getSignature = getSignatureOp;
|
|
71
|
+
const getAllSignaturesOp = __importStar(require("./getAllSignatures.operation"));
|
|
72
|
+
exports.getAllSignatures = getAllSignaturesOp;
|
|
73
|
+
const requestSignatureOp = __importStar(require("./requestSignature.operation"));
|
|
74
|
+
exports.requestSignature = requestSignatureOp;
|
|
75
|
+
const cancelSignatureOp = __importStar(require("./cancelSignature.operation"));
|
|
76
|
+
exports.cancelSignature = cancelSignatureOp;
|
|
77
|
+
const sendSigningNotificationsOp = __importStar(require("./sendSigningNotifications.operation"));
|
|
78
|
+
exports.sendSigningNotifications = sendSigningNotificationsOp;
|
|
79
|
+
exports.description = [
|
|
80
|
+
{
|
|
81
|
+
displayName: 'Operation',
|
|
82
|
+
name: 'operation',
|
|
83
|
+
type: 'options',
|
|
84
|
+
noDataExpression: true,
|
|
85
|
+
displayOptions: {
|
|
86
|
+
show: {
|
|
87
|
+
resource: ['document'],
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
options: [
|
|
91
|
+
{
|
|
92
|
+
name: 'Archive',
|
|
93
|
+
value: 'archive',
|
|
94
|
+
description: 'Archive a document',
|
|
95
|
+
action: 'Archive a document',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'Cancel Signature',
|
|
99
|
+
value: 'cancelSignature',
|
|
100
|
+
description: 'Cancel a signature request',
|
|
101
|
+
action: 'Cancel a document signature request',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
name: 'Create',
|
|
105
|
+
value: 'create',
|
|
106
|
+
description: 'Create a new document',
|
|
107
|
+
action: 'Create a document',
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: 'Create Draft Version',
|
|
111
|
+
value: 'createDraftVersion',
|
|
112
|
+
description: 'Create a new draft version from the latest published version',
|
|
113
|
+
action: 'Create a draft document version',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
name: 'Delete',
|
|
117
|
+
value: 'delete',
|
|
118
|
+
description: 'Delete a document',
|
|
119
|
+
action: 'Delete a document',
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
name: 'Delete Draft Version',
|
|
123
|
+
value: 'deleteDraftVersion',
|
|
124
|
+
description: 'Delete a draft document version',
|
|
125
|
+
action: 'Delete a draft document version',
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
name: 'Get',
|
|
129
|
+
value: 'get',
|
|
130
|
+
description: 'Get a document',
|
|
131
|
+
action: 'Get a document',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: 'Get Many',
|
|
135
|
+
value: 'getAll',
|
|
136
|
+
description: 'Get many documents',
|
|
137
|
+
action: 'Get many documents',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
name: 'Get Many Signatures',
|
|
141
|
+
value: 'getAllSignatures',
|
|
142
|
+
description: 'Get many signatures for a document version',
|
|
143
|
+
action: 'Get many document version signatures',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
name: 'Get Many Versions',
|
|
147
|
+
value: 'getAllVersions',
|
|
148
|
+
description: 'Get many versions of a document',
|
|
149
|
+
action: 'Get many document versions',
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
name: 'Get Signature',
|
|
153
|
+
value: 'getSignature',
|
|
154
|
+
description: 'Get a document version signature',
|
|
155
|
+
action: 'Get a document version signature',
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: 'Get Version',
|
|
159
|
+
value: 'getVersion',
|
|
160
|
+
description: 'Get a document version',
|
|
161
|
+
action: 'Get a document version',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
name: 'Publish Major Version',
|
|
165
|
+
value: 'publishMajorVersion',
|
|
166
|
+
description: 'Publish a draft as a new major version',
|
|
167
|
+
action: 'Publish a major document version',
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
name: 'Publish Minor Version',
|
|
171
|
+
value: 'publishMinorVersion',
|
|
172
|
+
description: 'Publish a draft as a minor version',
|
|
173
|
+
action: 'Publish a minor document version',
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
name: 'Request Approval',
|
|
177
|
+
value: 'requestApproval',
|
|
178
|
+
description: 'Request approval for a document version',
|
|
179
|
+
action: 'Request document version approval',
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
name: 'Request Signature',
|
|
183
|
+
value: 'requestSignature',
|
|
184
|
+
description: 'Request a signature for a document version',
|
|
185
|
+
action: 'Request a document version signature',
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
name: 'Send Signing Notifications',
|
|
189
|
+
value: 'sendSigningNotifications',
|
|
190
|
+
description: 'Send signing notifications to all pending signatories',
|
|
191
|
+
action: 'Send signing notifications',
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
name: 'Unarchive',
|
|
195
|
+
value: 'unarchive',
|
|
196
|
+
description: 'Unarchive a document',
|
|
197
|
+
action: 'Unarchive a document',
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
name: 'Update',
|
|
201
|
+
value: 'update',
|
|
202
|
+
description: 'Update an existing document',
|
|
203
|
+
action: 'Update a document',
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
name: 'Update Version',
|
|
207
|
+
value: 'updateVersion',
|
|
208
|
+
description: 'Update a draft document version',
|
|
209
|
+
action: 'Update a document version',
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
name: 'Void Approval',
|
|
213
|
+
value: 'voidApproval',
|
|
214
|
+
description: 'Void a pending approval request',
|
|
215
|
+
action: 'Void a document version approval',
|
|
216
|
+
},
|
|
217
|
+
],
|
|
218
|
+
default: 'create',
|
|
219
|
+
},
|
|
220
|
+
...createOp.description,
|
|
221
|
+
...getOp.description,
|
|
222
|
+
...getAllOp.description,
|
|
223
|
+
...updateOp.description,
|
|
224
|
+
...deleteOp.description,
|
|
225
|
+
...archiveOp.description,
|
|
226
|
+
...unarchiveOp.description,
|
|
227
|
+
...getVersionOp.description,
|
|
228
|
+
...getAllVersionsOp.description,
|
|
229
|
+
...createDraftVersionOp.description,
|
|
230
|
+
...updateVersionOp.description,
|
|
231
|
+
...deleteDraftVersionOp.description,
|
|
232
|
+
...publishMajorVersionOp.description,
|
|
233
|
+
...publishMinorVersionOp.description,
|
|
234
|
+
...requestApprovalOp.description,
|
|
235
|
+
...voidApprovalOp.description,
|
|
236
|
+
...getSignatureOp.description,
|
|
237
|
+
...getAllSignaturesOp.description,
|
|
238
|
+
...requestSignatureOp.description,
|
|
239
|
+
...cancelSignatureOp.description,
|
|
240
|
+
...sendSigningNotificationsOp.description,
|
|
241
|
+
];
|
|
242
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/document/index.ts"],"names":[],"mappings":"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"}
|