@justbrunasso/n8n-nodes-glpi 1.0.28 → 1.0.30
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/credentials/GithubIssuesApi.credentials.d.ts +10 -0
- package/dist/credentials/GithubIssuesApi.credentials.js +37 -0
- package/dist/credentials/GithubIssuesApi.credentials.js.map +1 -0
- package/dist/credentials/GithubIssuesOAuth2Api.credentials.d.ts +9 -0
- package/dist/credentials/GithubIssuesOAuth2Api.credentials.js +54 -0
- package/dist/credentials/GithubIssuesOAuth2Api.credentials.js.map +1 -0
- package/dist/credentials/GlpiApi.credentials.d.ts +3 -4
- package/dist/credentials/GlpiApi.credentials.js +27 -27
- package/dist/credentials/GlpiApi.credentials.js.map +1 -1
- package/dist/icons/glpi.dark.svg +0 -0
- package/dist/icons/glpi.svg +0 -0
- package/dist/nodes/Example/Example.node.d.ts +5 -0
- package/dist/nodes/Example/Example.node.js +61 -0
- package/dist/nodes/Example/Example.node.js.map +1 -0
- package/dist/nodes/Example/Example.node.json +18 -0
- package/dist/nodes/Example/example.dark.svg +13 -0
- package/dist/nodes/Example/example.svg +13 -0
- package/dist/nodes/GithubIssues/GithubIssues.node.d.ts +14 -0
- package/dist/nodes/GithubIssues/GithubIssues.node.js +101 -0
- package/dist/nodes/GithubIssues/GithubIssues.node.js.map +1 -0
- package/dist/nodes/GithubIssues/GithubIssues.node.json +18 -0
- package/dist/nodes/GithubIssues/listSearch/getIssues.d.ts +2 -0
- package/dist/nodes/GithubIssues/listSearch/getIssues.js +28 -0
- package/dist/nodes/GithubIssues/listSearch/getIssues.js.map +1 -0
- package/dist/nodes/GithubIssues/listSearch/getRepositories.d.ts +2 -0
- package/dist/nodes/GithubIssues/listSearch/getRepositories.js +31 -0
- package/dist/nodes/GithubIssues/listSearch/getRepositories.js.map +1 -0
- package/dist/nodes/GithubIssues/listSearch/getUsers.d.ts +2 -0
- package/dist/nodes/GithubIssues/listSearch/getUsers.js +29 -0
- package/dist/nodes/GithubIssues/listSearch/getUsers.js.map +1 -0
- package/dist/nodes/GithubIssues/resources/issue/create.d.ts +2 -0
- package/dist/nodes/GithubIssues/resources/issue/create.js +75 -0
- package/dist/nodes/GithubIssues/resources/issue/create.js.map +1 -0
- package/dist/nodes/GithubIssues/resources/issue/get.d.ts +2 -0
- package/dist/nodes/GithubIssues/resources/issue/get.js +15 -0
- package/dist/nodes/GithubIssues/resources/issue/get.js.map +1 -0
- package/dist/nodes/GithubIssues/resources/issue/getAll.d.ts +2 -0
- package/dist/nodes/GithubIssues/resources/issue/getAll.js +125 -0
- package/dist/nodes/GithubIssues/resources/issue/getAll.js.map +1 -0
- package/dist/nodes/GithubIssues/resources/issue/index.d.ts +2 -0
- package/dist/nodes/GithubIssues/resources/issue/index.js +76 -0
- package/dist/nodes/GithubIssues/resources/issue/index.js.map +1 -0
- package/dist/nodes/GithubIssues/resources/issueComment/getAll.d.ts +2 -0
- package/dist/nodes/GithubIssues/resources/issueComment/getAll.js +66 -0
- package/dist/nodes/GithubIssues/resources/issueComment/getAll.js.map +1 -0
- package/dist/nodes/GithubIssues/resources/issueComment/index.d.ts +2 -0
- package/dist/nodes/GithubIssues/resources/issueComment/index.js +48 -0
- package/dist/nodes/GithubIssues/resources/issueComment/index.js.map +1 -0
- package/dist/nodes/GithubIssues/shared/descriptions.d.ts +4 -0
- package/dist/nodes/GithubIssues/shared/descriptions.js +151 -0
- package/dist/nodes/GithubIssues/shared/descriptions.js.map +1 -0
- package/dist/nodes/GithubIssues/shared/transport.d.ts +2 -0
- package/dist/nodes/GithubIssues/shared/transport.js +16 -0
- package/dist/nodes/GithubIssues/shared/transport.js.map +1 -0
- package/dist/nodes/GithubIssues/shared/utils.d.ts +3 -0
- package/dist/nodes/GithubIssues/shared/utils.js +17 -0
- package/dist/nodes/GithubIssues/shared/utils.js.map +1 -0
- package/dist/nodes/GlpiApi/GlpiApi.node.d.ts +5 -0
- package/dist/nodes/GlpiApi/GlpiApi.node.js +217 -0
- package/dist/nodes/GlpiApi/GlpiApi.node.js.map +1 -0
- package/dist/nodes/GlpiApi/GlpiApi.node.json +18 -0
- package/dist/nodes/GlpiApi/glpi.dark.svg +1 -0
- package/dist/nodes/GlpiApi/glpi.svg +1 -0
- package/dist/package.json +9 -8
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -8
- package/dist/nodes/Glpi/Glpi.node.d.ts +0 -5
- package/dist/nodes/Glpi/Glpi.node.dark.svg +0 -0
- package/dist/nodes/Glpi/Glpi.node.js +0 -321
- package/dist/nodes/Glpi/Glpi.node.js.map +0 -1
- package/dist/nodes/Glpi/Glpi.node.json +0 -13
- package/dist/nodes/Glpi/Glpi.node.svg +0 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.issueCreateDescription = void 0;
|
|
4
|
+
const showOnlyForIssueCreate = {
|
|
5
|
+
operation: ['create'],
|
|
6
|
+
resource: ['issue'],
|
|
7
|
+
};
|
|
8
|
+
exports.issueCreateDescription = [
|
|
9
|
+
{
|
|
10
|
+
displayName: 'Title',
|
|
11
|
+
name: 'title',
|
|
12
|
+
type: 'string',
|
|
13
|
+
default: '',
|
|
14
|
+
required: true,
|
|
15
|
+
displayOptions: {
|
|
16
|
+
show: showOnlyForIssueCreate,
|
|
17
|
+
},
|
|
18
|
+
description: 'The title of the issue',
|
|
19
|
+
routing: {
|
|
20
|
+
send: {
|
|
21
|
+
type: 'body',
|
|
22
|
+
property: 'title',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
displayName: 'Body',
|
|
28
|
+
name: 'body',
|
|
29
|
+
type: 'string',
|
|
30
|
+
typeOptions: {
|
|
31
|
+
rows: 5,
|
|
32
|
+
},
|
|
33
|
+
default: '',
|
|
34
|
+
displayOptions: {
|
|
35
|
+
show: showOnlyForIssueCreate,
|
|
36
|
+
},
|
|
37
|
+
description: 'The body of the issue',
|
|
38
|
+
routing: {
|
|
39
|
+
send: {
|
|
40
|
+
type: 'body',
|
|
41
|
+
property: 'body',
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
displayName: 'Labels',
|
|
47
|
+
name: 'labels',
|
|
48
|
+
type: 'collection',
|
|
49
|
+
typeOptions: {
|
|
50
|
+
multipleValues: true,
|
|
51
|
+
multipleValueButtonText: 'Add Label',
|
|
52
|
+
},
|
|
53
|
+
displayOptions: {
|
|
54
|
+
show: showOnlyForIssueCreate,
|
|
55
|
+
},
|
|
56
|
+
default: { label: '' },
|
|
57
|
+
options: [
|
|
58
|
+
{
|
|
59
|
+
displayName: 'Label',
|
|
60
|
+
name: 'label',
|
|
61
|
+
type: 'string',
|
|
62
|
+
default: '',
|
|
63
|
+
description: 'Label to add to issue',
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
routing: {
|
|
67
|
+
send: {
|
|
68
|
+
type: 'body',
|
|
69
|
+
property: 'labels',
|
|
70
|
+
value: '={{$value.map((data) => data.label)}}',
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
];
|
|
75
|
+
//# sourceMappingURL=create.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../../../nodes/GithubIssues/resources/issue/create.ts"],"names":[],"mappings":";;;AAEA,MAAM,sBAAsB,GAAG;IAC9B,SAAS,EAAE,CAAC,QAAQ,CAAC;IACrB,QAAQ,EAAE,CAAC,OAAO,CAAC;CACnB,CAAC;AAEW,QAAA,sBAAsB,GAAsB;IACxD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,EAAE;QACX,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE;YACf,IAAI,EAAE,sBAAsB;SAC5B;QACD,WAAW,EAAE,wBAAwB;QACrC,OAAO,EAAE;YACR,IAAI,EAAE;gBACL,IAAI,EAAE,MAAM;gBACZ,QAAQ,EAAE,OAAO;aACjB;SACD;KACD;IACD;QACC,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACZ,IAAI,EAAE,CAAC;SACP;QACD,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE,sBAAsB;SAC5B;QACD,WAAW,EAAE,uBAAuB;QACpC,OAAO,EAAE;YACR,IAAI,EAAE;gBACL,IAAI,EAAE,MAAM;gBACZ,QAAQ,EAAE,MAAM;aAChB;SACD;KACD;IACD;QACC,WAAW,EAAE,QAAQ;QACrB,IAAI,EAAE,QAAQ;QACd,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE;YACZ,cAAc,EAAE,IAAI;YACpB,uBAAuB,EAAE,WAAW;SACpC;QACD,cAAc,EAAE;YACf,IAAI,EAAE,sBAAsB;SAC5B;QACD,OAAO,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE;QACtB,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,uBAAuB;aACpC;SACD;QACD,OAAO,EAAE;YACR,IAAI,EAAE;gBACL,IAAI,EAAE,MAAM;gBACZ,QAAQ,EAAE,QAAQ;gBAClB,KAAK,EAAE,uCAAuC;aAC9C;SACD;KACD;CACD,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.issueGetDescription = void 0;
|
|
4
|
+
const descriptions_1 = require("../../shared/descriptions");
|
|
5
|
+
const showOnlyForIssueGet = {
|
|
6
|
+
operation: ['get'],
|
|
7
|
+
resource: ['issue'],
|
|
8
|
+
};
|
|
9
|
+
exports.issueGetDescription = [
|
|
10
|
+
{
|
|
11
|
+
...descriptions_1.issueSelect,
|
|
12
|
+
displayOptions: { show: showOnlyForIssueGet },
|
|
13
|
+
},
|
|
14
|
+
];
|
|
15
|
+
//# sourceMappingURL=get.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get.js","sourceRoot":"","sources":["../../../../../nodes/GithubIssues/resources/issue/get.ts"],"names":[],"mappings":";;;AACA,4DAAwD;AAExD,MAAM,mBAAmB,GAAG;IAC3B,SAAS,EAAE,CAAC,KAAK,CAAC;IAClB,QAAQ,EAAE,CAAC,OAAO,CAAC;CACnB,CAAC;AAEW,QAAA,mBAAmB,GAAsB;IACrD;QACC,GAAG,0BAAW;QACd,cAAc,EAAE,EAAE,IAAI,EAAE,mBAAmB,EAAE;KAC7C;CACD,CAAC"}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.issueGetManyDescription = void 0;
|
|
4
|
+
const utils_1 = require("../../shared/utils");
|
|
5
|
+
const showOnlyForIssueGetMany = {
|
|
6
|
+
operation: ['getAll'],
|
|
7
|
+
resource: ['issue'],
|
|
8
|
+
};
|
|
9
|
+
exports.issueGetManyDescription = [
|
|
10
|
+
{
|
|
11
|
+
displayName: 'Limit',
|
|
12
|
+
name: 'limit',
|
|
13
|
+
type: 'number',
|
|
14
|
+
displayOptions: {
|
|
15
|
+
show: {
|
|
16
|
+
...showOnlyForIssueGetMany,
|
|
17
|
+
returnAll: [false],
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
typeOptions: {
|
|
21
|
+
minValue: 1,
|
|
22
|
+
maxValue: 100,
|
|
23
|
+
},
|
|
24
|
+
default: 50,
|
|
25
|
+
routing: {
|
|
26
|
+
send: {
|
|
27
|
+
type: 'query',
|
|
28
|
+
property: 'per_page',
|
|
29
|
+
},
|
|
30
|
+
output: {
|
|
31
|
+
maxResults: '={{$value}}',
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
description: 'Max number of results to return',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
displayName: 'Return All',
|
|
38
|
+
name: 'returnAll',
|
|
39
|
+
type: 'boolean',
|
|
40
|
+
displayOptions: {
|
|
41
|
+
show: showOnlyForIssueGetMany,
|
|
42
|
+
},
|
|
43
|
+
default: false,
|
|
44
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
45
|
+
routing: {
|
|
46
|
+
send: {
|
|
47
|
+
paginate: '={{ $value }}',
|
|
48
|
+
type: 'query',
|
|
49
|
+
property: 'per_page',
|
|
50
|
+
value: '100',
|
|
51
|
+
},
|
|
52
|
+
operations: {
|
|
53
|
+
pagination: {
|
|
54
|
+
type: 'generic',
|
|
55
|
+
properties: {
|
|
56
|
+
continue: `={{ !!(${utils_1.parseLinkHeader.toString()})($response.headers?.link).next }}`,
|
|
57
|
+
request: {
|
|
58
|
+
url: `={{ (${utils_1.parseLinkHeader.toString()})($response.headers?.link)?.next ?? $request.url }}`,
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
displayName: 'Filters',
|
|
67
|
+
name: 'filters',
|
|
68
|
+
type: 'collection',
|
|
69
|
+
typeOptions: {
|
|
70
|
+
multipleValueButtonText: 'Add Filter',
|
|
71
|
+
},
|
|
72
|
+
displayOptions: {
|
|
73
|
+
show: showOnlyForIssueGetMany,
|
|
74
|
+
},
|
|
75
|
+
default: {},
|
|
76
|
+
options: [
|
|
77
|
+
{
|
|
78
|
+
displayName: 'Updated Since',
|
|
79
|
+
name: 'since',
|
|
80
|
+
type: 'dateTime',
|
|
81
|
+
default: '',
|
|
82
|
+
description: 'Return only issues updated at or after this time',
|
|
83
|
+
routing: {
|
|
84
|
+
request: {
|
|
85
|
+
qs: {
|
|
86
|
+
since: '={{$value}}',
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
displayName: 'State',
|
|
93
|
+
name: 'state',
|
|
94
|
+
type: 'options',
|
|
95
|
+
options: [
|
|
96
|
+
{
|
|
97
|
+
name: 'All',
|
|
98
|
+
value: 'all',
|
|
99
|
+
description: 'Returns issues with any state',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: 'Closed',
|
|
103
|
+
value: 'closed',
|
|
104
|
+
description: 'Return issues with "closed" state',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
name: 'Open',
|
|
108
|
+
value: 'open',
|
|
109
|
+
description: 'Return issues with "open" state',
|
|
110
|
+
},
|
|
111
|
+
],
|
|
112
|
+
default: 'open',
|
|
113
|
+
description: 'The issue state to filter on',
|
|
114
|
+
routing: {
|
|
115
|
+
request: {
|
|
116
|
+
qs: {
|
|
117
|
+
state: '={{$value}}',
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
},
|
|
124
|
+
];
|
|
125
|
+
//# sourceMappingURL=getAll.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAll.js","sourceRoot":"","sources":["../../../../../nodes/GithubIssues/resources/issue/getAll.ts"],"names":[],"mappings":";;;AACA,8CAAqD;AAErD,MAAM,uBAAuB,GAAG;IAC/B,SAAS,EAAE,CAAC,QAAQ,CAAC;IACrB,QAAQ,EAAE,CAAC,OAAO,CAAC;CACnB,CAAC;AAEW,QAAA,uBAAuB,GAAsB;IACzD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,GAAG,uBAAuB;gBAC1B,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,WAAW,EAAE;YACZ,QAAQ,EAAE,CAAC;YACX,QAAQ,EAAE,GAAG;SACb;QACD,OAAO,EAAE,EAAE;QACX,OAAO,EAAE;YACR,IAAI,EAAE;gBACL,IAAI,EAAE,OAAO;gBACb,QAAQ,EAAE,UAAU;aACpB;YACD,MAAM,EAAE;gBACP,UAAU,EAAE,aAAa;aACzB;SACD;QACD,WAAW,EAAE,iCAAiC;KAC9C;IACD;QACC,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,cAAc,EAAE;YACf,IAAI,EAAE,uBAAuB;SAC7B;QACD,OAAO,EAAE,KAAK;QACd,WAAW,EAAE,2DAA2D;QACxE,OAAO,EAAE;YACR,IAAI,EAAE;gBACL,QAAQ,EAAE,eAAe;gBACzB,IAAI,EAAE,OAAO;gBACb,QAAQ,EAAE,UAAU;gBACpB,KAAK,EAAE,KAAK;aACZ;YACD,UAAU,EAAE;gBACX,UAAU,EAAE;oBACX,IAAI,EAAE,SAAS;oBACf,UAAU,EAAE;wBACX,QAAQ,EAAE,UAAU,uBAAe,CAAC,QAAQ,EAAE,oCAAoC;wBAClF,OAAO,EAAE;4BACR,GAAG,EAAE,QAAQ,uBAAe,CAAC,QAAQ,EAAE,qDAAqD;yBAC5F;qBACD;iBACD;aACD;SACD;KACD;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE;YACZ,uBAAuB,EAAE,YAAY;SACrC;QACD,cAAc,EAAE;YACf,IAAI,EAAE,uBAAuB;SAC7B;QACD,OAAO,EAAE,EAAE;QACX,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,eAAe;gBAC5B,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,UAAU;gBAChB,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,kDAAkD;gBAC/D,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,EAAE,EAAE;4BACH,KAAK,EAAE,aAAa;yBACpB;qBACD;iBACD;aACD;YACD;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE;oBACR;wBACC,IAAI,EAAE,KAAK;wBACX,KAAK,EAAE,KAAK;wBACZ,WAAW,EAAE,+BAA+B;qBAC5C;oBACD;wBACC,IAAI,EAAE,QAAQ;wBACd,KAAK,EAAE,QAAQ;wBACf,WAAW,EAAE,mCAAmC;qBAChD;oBACD;wBACC,IAAI,EAAE,MAAM;wBACZ,KAAK,EAAE,MAAM;wBACb,WAAW,EAAE,iCAAiC;qBAC9C;iBACD;gBACD,OAAO,EAAE,MAAM;gBACf,WAAW,EAAE,8BAA8B;gBAC3C,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,EAAE,EAAE;4BACH,KAAK,EAAE,aAAa;yBACpB;qBACD;iBACD;aACD;SACD;KACD;CACD,CAAC"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.issueDescription = void 0;
|
|
4
|
+
const descriptions_1 = require("../../shared/descriptions");
|
|
5
|
+
const getAll_1 = require("./getAll");
|
|
6
|
+
const get_1 = require("./get");
|
|
7
|
+
const create_1 = require("./create");
|
|
8
|
+
const showOnlyForIssues = {
|
|
9
|
+
resource: ['issue'],
|
|
10
|
+
};
|
|
11
|
+
exports.issueDescription = [
|
|
12
|
+
{
|
|
13
|
+
displayName: 'Operation',
|
|
14
|
+
name: 'operation',
|
|
15
|
+
type: 'options',
|
|
16
|
+
noDataExpression: true,
|
|
17
|
+
displayOptions: {
|
|
18
|
+
show: showOnlyForIssues,
|
|
19
|
+
},
|
|
20
|
+
options: [
|
|
21
|
+
{
|
|
22
|
+
name: 'Get Many',
|
|
23
|
+
value: 'getAll',
|
|
24
|
+
action: 'Get issues in a repository',
|
|
25
|
+
description: 'Get many issues in a repository',
|
|
26
|
+
routing: {
|
|
27
|
+
request: {
|
|
28
|
+
method: 'GET',
|
|
29
|
+
url: '=/repos/{{$parameter.owner}}/{{$parameter.repository}}/issues',
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
name: 'Get',
|
|
35
|
+
value: 'get',
|
|
36
|
+
action: 'Get an issue',
|
|
37
|
+
description: 'Get the data of a single issue',
|
|
38
|
+
routing: {
|
|
39
|
+
request: {
|
|
40
|
+
method: 'GET',
|
|
41
|
+
url: '=/repos/{{$parameter.owner}}/{{$parameter.repository}}/issues/{{$parameter.issue}}',
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Create',
|
|
47
|
+
value: 'create',
|
|
48
|
+
action: 'Create a new issue',
|
|
49
|
+
description: 'Create a new issue',
|
|
50
|
+
routing: {
|
|
51
|
+
request: {
|
|
52
|
+
method: 'POST',
|
|
53
|
+
url: '=/repos/{{$parameter.owner}}/{{$parameter.repository}}/issues',
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
default: 'getAll',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
...descriptions_1.repoOwnerSelect,
|
|
62
|
+
displayOptions: {
|
|
63
|
+
show: showOnlyForIssues,
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
...descriptions_1.repoNameSelect,
|
|
68
|
+
displayOptions: {
|
|
69
|
+
show: showOnlyForIssues,
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
...getAll_1.issueGetManyDescription,
|
|
73
|
+
...get_1.issueGetDescription,
|
|
74
|
+
...create_1.issueCreateDescription,
|
|
75
|
+
];
|
|
76
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/GithubIssues/resources/issue/index.ts"],"names":[],"mappings":";;;AACA,4DAA4E;AAC5E,qCAAmD;AACnD,+BAA4C;AAC5C,qCAAkD;AAElD,MAAM,iBAAiB,GAAG;IACzB,QAAQ,EAAE,CAAC,OAAO,CAAC;CACnB,CAAC;AAEW,QAAA,gBAAgB,GAAsB;IAClD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE,iBAAiB;SACvB;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,QAAQ;gBACf,MAAM,EAAE,4BAA4B;gBACpC,WAAW,EAAE,iCAAiC;gBAC9C,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,MAAM,EAAE,KAAK;wBACb,GAAG,EAAE,+DAA+D;qBACpE;iBACD;aACD;YACD;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,MAAM,EAAE,cAAc;gBACtB,WAAW,EAAE,gCAAgC;gBAC7C,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,MAAM,EAAE,KAAK;wBACb,GAAG,EAAE,oFAAoF;qBACzF;iBACD;aACD;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,MAAM,EAAE,oBAAoB;gBAC5B,WAAW,EAAE,oBAAoB;gBACjC,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,MAAM,EAAE,MAAM;wBACd,GAAG,EAAE,+DAA+D;qBACpE;iBACD;aACD;SACD;QACD,OAAO,EAAE,QAAQ;KACjB;IACD;QACC,GAAG,8BAAe;QAClB,cAAc,EAAE;YACf,IAAI,EAAE,iBAAiB;SACvB;KACD;IACD;QACC,GAAG,6BAAc;QACjB,cAAc,EAAE;YACf,IAAI,EAAE,iBAAiB;SACvB;KACD;IACD,GAAG,gCAAuB;IAC1B,GAAG,yBAAmB;IACtB,GAAG,+BAAsB;CACzB,CAAC"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.issueCommentGetManyDescription = void 0;
|
|
4
|
+
const utils_1 = require("../../shared/utils");
|
|
5
|
+
const showOnlyForIssueCommentGetMany = {
|
|
6
|
+
operation: ['getAll'],
|
|
7
|
+
resource: ['issueComment'],
|
|
8
|
+
};
|
|
9
|
+
exports.issueCommentGetManyDescription = [
|
|
10
|
+
{
|
|
11
|
+
displayName: 'Limit',
|
|
12
|
+
name: 'limit',
|
|
13
|
+
type: 'number',
|
|
14
|
+
displayOptions: {
|
|
15
|
+
show: {
|
|
16
|
+
...showOnlyForIssueCommentGetMany,
|
|
17
|
+
returnAll: [false],
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
typeOptions: {
|
|
21
|
+
minValue: 1,
|
|
22
|
+
maxValue: 100,
|
|
23
|
+
},
|
|
24
|
+
default: 50,
|
|
25
|
+
routing: {
|
|
26
|
+
send: {
|
|
27
|
+
type: 'query',
|
|
28
|
+
property: 'per_page',
|
|
29
|
+
},
|
|
30
|
+
output: {
|
|
31
|
+
maxResults: '={{$value}}',
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
description: 'Max number of results to return',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
displayName: 'Return All',
|
|
38
|
+
name: 'returnAll',
|
|
39
|
+
type: 'boolean',
|
|
40
|
+
displayOptions: {
|
|
41
|
+
show: showOnlyForIssueCommentGetMany,
|
|
42
|
+
},
|
|
43
|
+
default: false,
|
|
44
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
45
|
+
routing: {
|
|
46
|
+
send: {
|
|
47
|
+
paginate: '={{ $value }}',
|
|
48
|
+
type: 'query',
|
|
49
|
+
property: 'per_page',
|
|
50
|
+
value: '100',
|
|
51
|
+
},
|
|
52
|
+
operations: {
|
|
53
|
+
pagination: {
|
|
54
|
+
type: 'generic',
|
|
55
|
+
properties: {
|
|
56
|
+
continue: `={{ !!(${utils_1.parseLinkHeader.toString()})($response.headers?.link).next }}`,
|
|
57
|
+
request: {
|
|
58
|
+
url: `={{ (${utils_1.parseLinkHeader.toString()})($response.headers?.link)?.next ?? $request.url }}`,
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
];
|
|
66
|
+
//# sourceMappingURL=getAll.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAll.js","sourceRoot":"","sources":["../../../../../nodes/GithubIssues/resources/issueComment/getAll.ts"],"names":[],"mappings":";;;AACA,8CAAqD;AAErD,MAAM,8BAA8B,GAAG;IACtC,SAAS,EAAE,CAAC,QAAQ,CAAC;IACrB,QAAQ,EAAE,CAAC,cAAc,CAAC;CAC1B,CAAC;AAEW,QAAA,8BAA8B,GAAsB;IAChE;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,GAAG,8BAA8B;gBACjC,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,WAAW,EAAE;YACZ,QAAQ,EAAE,CAAC;YACX,QAAQ,EAAE,GAAG;SACb;QACD,OAAO,EAAE,EAAE;QACX,OAAO,EAAE;YACR,IAAI,EAAE;gBACL,IAAI,EAAE,OAAO;gBACb,QAAQ,EAAE,UAAU;aACpB;YACD,MAAM,EAAE;gBACP,UAAU,EAAE,aAAa;aACzB;SACD;QACD,WAAW,EAAE,iCAAiC;KAC9C;IACD;QACC,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,cAAc,EAAE;YACf,IAAI,EAAE,8BAA8B;SACpC;QACD,OAAO,EAAE,KAAK;QACd,WAAW,EAAE,2DAA2D;QACxE,OAAO,EAAE;YACR,IAAI,EAAE;gBACL,QAAQ,EAAE,eAAe;gBACzB,IAAI,EAAE,OAAO;gBACb,QAAQ,EAAE,UAAU;gBACpB,KAAK,EAAE,KAAK;aACZ;YACD,UAAU,EAAE;gBACX,UAAU,EAAE;oBACX,IAAI,EAAE,SAAS;oBACf,UAAU,EAAE;wBACX,QAAQ,EAAE,UAAU,uBAAe,CAAC,QAAQ,EAAE,oCAAoC;wBAClF,OAAO,EAAE;4BACR,GAAG,EAAE,QAAQ,uBAAe,CAAC,QAAQ,EAAE,qDAAqD;yBAC5F;qBACD;iBACD;aACD;SACD;KACD;CACD,CAAC"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.issueCommentDescription = void 0;
|
|
4
|
+
const descriptions_1 = require("../../shared/descriptions");
|
|
5
|
+
const getAll_1 = require("./getAll");
|
|
6
|
+
const showOnlyForIssueComments = {
|
|
7
|
+
resource: ['issueComment'],
|
|
8
|
+
};
|
|
9
|
+
exports.issueCommentDescription = [
|
|
10
|
+
{
|
|
11
|
+
displayName: 'Operation',
|
|
12
|
+
name: 'operation',
|
|
13
|
+
type: 'options',
|
|
14
|
+
noDataExpression: true,
|
|
15
|
+
displayOptions: {
|
|
16
|
+
show: showOnlyForIssueComments,
|
|
17
|
+
},
|
|
18
|
+
options: [
|
|
19
|
+
{
|
|
20
|
+
name: 'Get Many',
|
|
21
|
+
value: 'getAll',
|
|
22
|
+
action: 'Get issue comments',
|
|
23
|
+
description: 'Get issue comments',
|
|
24
|
+
routing: {
|
|
25
|
+
request: {
|
|
26
|
+
method: 'GET',
|
|
27
|
+
url: '=/repos/{{$parameter.owner}}/{{$parameter.repository}}/issues/comments',
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
],
|
|
32
|
+
default: 'getAll',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
...descriptions_1.repoOwnerSelect,
|
|
36
|
+
displayOptions: {
|
|
37
|
+
show: showOnlyForIssueComments,
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
...descriptions_1.repoNameSelect,
|
|
42
|
+
displayOptions: {
|
|
43
|
+
show: showOnlyForIssueComments,
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
...getAll_1.issueCommentGetManyDescription,
|
|
47
|
+
];
|
|
48
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/GithubIssues/resources/issueComment/index.ts"],"names":[],"mappings":";;;AACA,4DAA4E;AAC5E,qCAA0D;AAE1D,MAAM,wBAAwB,GAAG;IAChC,QAAQ,EAAE,CAAC,cAAc,CAAC;CAC1B,CAAC;AAEW,QAAA,uBAAuB,GAAsB;IACzD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE,wBAAwB;SAC9B;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,QAAQ;gBACf,MAAM,EAAE,oBAAoB;gBAC5B,WAAW,EAAE,oBAAoB;gBACjC,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,MAAM,EAAE,KAAK;wBACb,GAAG,EAAE,wEAAwE;qBAC7E;iBACD;aACD;SACD;QACD,OAAO,EAAE,QAAQ;KACjB;IACD;QACC,GAAG,8BAAe;QAClB,cAAc,EAAE;YACf,IAAI,EAAE,wBAAwB;SAC9B;KACD;IACD;QACC,GAAG,6BAAc;QACjB,cAAc,EAAE;YACf,IAAI,EAAE,wBAAwB;SAC9B;KACD;IACD,GAAG,uCAA8B;CACjC,CAAC"}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.issueSelect = exports.repoNameSelect = exports.repoOwnerSelect = void 0;
|
|
4
|
+
exports.repoOwnerSelect = {
|
|
5
|
+
displayName: 'Repository Owner',
|
|
6
|
+
name: 'owner',
|
|
7
|
+
type: 'resourceLocator',
|
|
8
|
+
default: { mode: 'list', value: '' },
|
|
9
|
+
required: true,
|
|
10
|
+
modes: [
|
|
11
|
+
{
|
|
12
|
+
displayName: 'Repository Owner',
|
|
13
|
+
name: 'list',
|
|
14
|
+
type: 'list',
|
|
15
|
+
placeholder: 'Select an owner...',
|
|
16
|
+
typeOptions: {
|
|
17
|
+
searchListMethod: 'getUsers',
|
|
18
|
+
searchable: true,
|
|
19
|
+
searchFilterRequired: false,
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
displayName: 'Link',
|
|
24
|
+
name: 'url',
|
|
25
|
+
type: 'string',
|
|
26
|
+
placeholder: 'e.g. https://github.com/n8n-io',
|
|
27
|
+
extractValue: {
|
|
28
|
+
type: 'regex',
|
|
29
|
+
regex: 'https:\\/\\/github.com\\/([-_0-9a-zA-Z]+)',
|
|
30
|
+
},
|
|
31
|
+
validation: [
|
|
32
|
+
{
|
|
33
|
+
type: 'regex',
|
|
34
|
+
properties: {
|
|
35
|
+
regex: 'https:\\/\\/github.com\\/([-_0-9a-zA-Z]+)(?:.*)',
|
|
36
|
+
errorMessage: 'Not a valid GitHub URL',
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
],
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
displayName: 'By Name',
|
|
43
|
+
name: 'name',
|
|
44
|
+
type: 'string',
|
|
45
|
+
placeholder: 'e.g. n8n-io',
|
|
46
|
+
validation: [
|
|
47
|
+
{
|
|
48
|
+
type: 'regex',
|
|
49
|
+
properties: {
|
|
50
|
+
regex: '[-_a-zA-Z0-9]+',
|
|
51
|
+
errorMessage: 'Not a valid GitHub Owner Name',
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
],
|
|
55
|
+
url: '=https://github.com/{{$value}}',
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
};
|
|
59
|
+
exports.repoNameSelect = {
|
|
60
|
+
displayName: 'Repository Name',
|
|
61
|
+
name: 'repository',
|
|
62
|
+
type: 'resourceLocator',
|
|
63
|
+
default: {
|
|
64
|
+
mode: 'list',
|
|
65
|
+
value: '',
|
|
66
|
+
},
|
|
67
|
+
required: true,
|
|
68
|
+
modes: [
|
|
69
|
+
{
|
|
70
|
+
displayName: 'Repository Name',
|
|
71
|
+
name: 'list',
|
|
72
|
+
type: 'list',
|
|
73
|
+
placeholder: 'Select an Repository...',
|
|
74
|
+
typeOptions: {
|
|
75
|
+
searchListMethod: 'getRepositories',
|
|
76
|
+
searchable: true,
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
displayName: 'Link',
|
|
81
|
+
name: 'url',
|
|
82
|
+
type: 'string',
|
|
83
|
+
placeholder: 'e.g. https://github.com/n8n-io/n8n',
|
|
84
|
+
extractValue: {
|
|
85
|
+
type: 'regex',
|
|
86
|
+
regex: 'https:\\/\\/github.com\\/(?:[-_0-9a-zA-Z]+)\\/([-_.0-9a-zA-Z]+)',
|
|
87
|
+
},
|
|
88
|
+
validation: [
|
|
89
|
+
{
|
|
90
|
+
type: 'regex',
|
|
91
|
+
properties: {
|
|
92
|
+
regex: 'https:\\/\\/github.com\\/(?:[-_0-9a-zA-Z]+)\\/([-_.0-9a-zA-Z]+)(?:.*)',
|
|
93
|
+
errorMessage: 'Not a valid GitHub Repository URL',
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
],
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
displayName: 'By Name',
|
|
100
|
+
name: 'name',
|
|
101
|
+
type: 'string',
|
|
102
|
+
placeholder: 'e.g. n8n',
|
|
103
|
+
validation: [
|
|
104
|
+
{
|
|
105
|
+
type: 'regex',
|
|
106
|
+
properties: {
|
|
107
|
+
regex: '[-_.0-9a-zA-Z]+',
|
|
108
|
+
errorMessage: 'Not a valid GitHub Repository Name',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
],
|
|
112
|
+
url: '=https://github.com/{{$parameter["owner"]}}/{{$value}}',
|
|
113
|
+
},
|
|
114
|
+
],
|
|
115
|
+
displayOptions: {
|
|
116
|
+
hide: {
|
|
117
|
+
resource: ['user', 'organization'],
|
|
118
|
+
operation: ['getRepositories'],
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
};
|
|
122
|
+
exports.issueSelect = {
|
|
123
|
+
displayName: 'Issue',
|
|
124
|
+
name: 'issue',
|
|
125
|
+
type: 'resourceLocator',
|
|
126
|
+
default: {
|
|
127
|
+
mode: 'list',
|
|
128
|
+
value: '',
|
|
129
|
+
},
|
|
130
|
+
required: true,
|
|
131
|
+
modes: [
|
|
132
|
+
{
|
|
133
|
+
displayName: 'Issue',
|
|
134
|
+
name: 'list',
|
|
135
|
+
type: 'list',
|
|
136
|
+
placeholder: 'Select an Issue...',
|
|
137
|
+
typeOptions: {
|
|
138
|
+
searchListMethod: 'getIssues',
|
|
139
|
+
searchable: true,
|
|
140
|
+
},
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
displayName: 'By ID',
|
|
144
|
+
name: 'name',
|
|
145
|
+
type: 'string',
|
|
146
|
+
placeholder: 'e.g. 123',
|
|
147
|
+
url: '=https://github.com/{{$parameter.owner}}/{{$parameter.repository}}/issues/{{$value}}',
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
};
|
|
151
|
+
//# sourceMappingURL=descriptions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"descriptions.js","sourceRoot":"","sources":["../../../../nodes/GithubIssues/shared/descriptions.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { IHookFunctions, IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions, IHttpRequestMethods, IDataObject } from 'n8n-workflow';
|
|
2
|
+
export declare function githubApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: IHttpRequestMethods, resource: string, qs?: IDataObject, body?: IDataObject | undefined): Promise<any>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.githubApiRequest = githubApiRequest;
|
|
4
|
+
async function githubApiRequest(method, resource, qs = {}, body = undefined) {
|
|
5
|
+
const authenticationMethod = this.getNodeParameter('authentication', 0);
|
|
6
|
+
const options = {
|
|
7
|
+
method: method,
|
|
8
|
+
qs,
|
|
9
|
+
body,
|
|
10
|
+
url: `https://api.github.com${resource}`,
|
|
11
|
+
json: true,
|
|
12
|
+
};
|
|
13
|
+
const credentialType = authenticationMethod === 'accessToken' ? 'githubIssuesApi' : 'githubIssuesOAuth2Api';
|
|
14
|
+
return this.helpers.httpRequestWithAuthentication.call(this, credentialType, options);
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=transport.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transport.js","sourceRoot":"","sources":["../../../../nodes/GithubIssues/shared/transport.ts"],"names":[],"mappings":";;AAUA,4CAqBC;AArBM,KAAK,UAAU,gBAAgB,CAErC,MAA2B,EAC3B,QAAgB,EAChB,KAAkB,EAAE,EACpB,OAAgC,SAAS;IAEzC,MAAM,oBAAoB,GAAG,IAAI,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;IAExE,MAAM,OAAO,GAAwB;QACpC,MAAM,EAAE,MAAM;QACd,EAAE;QACF,IAAI;QACJ,GAAG,EAAE,yBAAyB,QAAQ,EAAE;QACxC,IAAI,EAAE,IAAI;KACV,CAAC;IAEF,MAAM,cAAc,GACnB,oBAAoB,KAAK,aAAa,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,uBAAuB,CAAC;IAEtF,OAAO,IAAI,CAAC,OAAO,CAAC,6BAA6B,CAAC,IAAI,CAAC,IAAI,EAAE,cAAc,EAAE,OAAO,CAAC,CAAC;AACvF,CAAC"}
|