@activepieces/piece-jira-cloud 0.1.2 → 0.1.4
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/package.json +14 -12
- package/src/index.js +5 -2
- package/src/index.js.map +1 -1
- package/src/lib/actions/get-issue-attachment.d.ts +7 -0
- package/src/lib/actions/get-issue-attachment.js +47 -0
- package/src/lib/actions/get-issue-attachment.js.map +1 -0
- package/src/lib/triggers/updated-issue-status.d.ts +23 -0
- package/src/lib/triggers/updated-issue-status.js +67 -0
- package/src/lib/triggers/updated-issue-status.js.map +1 -0
package/package.json
CHANGED
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-jira-cloud",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@
|
|
5
|
+
"@ai-sdk/anthropic": "1.2.12",
|
|
6
|
+
"@ai-sdk/google": "1.2.19",
|
|
7
|
+
"@ai-sdk/openai": "1.3.22",
|
|
8
|
+
"@ai-sdk/replicate": "0.2.8",
|
|
6
9
|
"@sinclair/typebox": "0.34.11",
|
|
10
|
+
"ai": "4.3.16",
|
|
7
11
|
"axios": "1.8.3",
|
|
8
12
|
"axios-retry": "4.4.1",
|
|
9
13
|
"dayjs": "1.11.9",
|
|
10
14
|
"deepmerge-ts": "7.1.0",
|
|
15
|
+
"fast-glob": "3.3.3",
|
|
11
16
|
"form-data": "4.0.0",
|
|
12
17
|
"mime-types": "2.1.35",
|
|
13
18
|
"nanoid": "3.3.8",
|
|
14
|
-
"openai": "4.67.1",
|
|
15
|
-
"replicate": "0.34.1",
|
|
16
19
|
"semver": "7.6.0",
|
|
17
|
-
"zod": "3.
|
|
18
|
-
"@activepieces/pieces-common": "0.
|
|
19
|
-
"@activepieces/pieces-framework": "0.
|
|
20
|
-
"@activepieces/shared": "0.
|
|
21
|
-
"tslib": "
|
|
20
|
+
"zod": "3.25.67",
|
|
21
|
+
"@activepieces/pieces-common": "0.5.2",
|
|
22
|
+
"@activepieces/pieces-framework": "0.14.1",
|
|
23
|
+
"@activepieces/shared": "0.14.5",
|
|
24
|
+
"tslib": "2.8.1"
|
|
22
25
|
},
|
|
23
26
|
"overrides": {
|
|
24
|
-
"cross-spawn": "7.0.6",
|
|
25
27
|
"@tryfabric/martian": {
|
|
26
28
|
"@notionhq/client": "$@notionhq/client"
|
|
27
29
|
},
|
|
@@ -32,7 +34,7 @@
|
|
|
32
34
|
"resolutions": {
|
|
33
35
|
"rollup": "npm:@rollup/wasm-node"
|
|
34
36
|
},
|
|
37
|
+
"types": "./src/index.d.ts",
|
|
35
38
|
"main": "./src/index.js",
|
|
36
|
-
"type": "commonjs"
|
|
37
|
-
"types": "./src/index.d.ts"
|
|
39
|
+
"type": "commonjs"
|
|
38
40
|
}
|
package/src/index.js
CHANGED
|
@@ -10,6 +10,7 @@ const create_issue_1 = require("./lib/actions/create-issue");
|
|
|
10
10
|
const search_issues_1 = require("./lib/actions/search-issues");
|
|
11
11
|
const new_issue_1 = require("./lib/triggers/new-issue");
|
|
12
12
|
const updated_issue_1 = require("./lib/triggers/updated-issue");
|
|
13
|
+
const updated_issue_status_1 = require("./lib/triggers/updated-issue-status");
|
|
13
14
|
const add_comment_to_issue_1 = require("./lib/actions/add-comment-to-issue");
|
|
14
15
|
const add_attachment_to_issue_1 = require("./lib/actions/add-attachment-to-issue");
|
|
15
16
|
const update_issue_comment_1 = require("./lib/actions/update-issue-comment");
|
|
@@ -20,6 +21,7 @@ const list_issue_comments_1 = require("./lib/actions/list-issue-comments");
|
|
|
20
21
|
const find_user_1 = require("./lib/actions/find-user");
|
|
21
22
|
const add_watcher_to_issue_1 = require("./lib/actions/add-watcher-to-issue");
|
|
22
23
|
const link_issues_1 = require("./lib/actions/link-issues");
|
|
24
|
+
const get_issue_attachment_1 = require("./lib/actions/get-issue-attachment");
|
|
23
25
|
exports.jiraCloud = (0, pieces_framework_1.createPiece)({
|
|
24
26
|
displayName: 'Jira Cloud',
|
|
25
27
|
description: 'Issue tracking and project management',
|
|
@@ -27,7 +29,7 @@ exports.jiraCloud = (0, pieces_framework_1.createPiece)({
|
|
|
27
29
|
minimumSupportedRelease: '0.30.0',
|
|
28
30
|
logoUrl: 'https://cdn.activepieces.com/pieces/jira.png',
|
|
29
31
|
categories: [shared_1.PieceCategory.PRODUCTIVITY],
|
|
30
|
-
authors: ['kishanprmr', 'MoShizzle', 'abuaboud'],
|
|
32
|
+
authors: ['kishanprmr', 'MoShizzle', 'abuaboud', 'prasanna2000-max'],
|
|
31
33
|
actions: [
|
|
32
34
|
create_issue_1.createIssueAction,
|
|
33
35
|
update_issue_1.updateIssueAction,
|
|
@@ -35,6 +37,7 @@ exports.jiraCloud = (0, pieces_framework_1.createPiece)({
|
|
|
35
37
|
search_issues_1.searchIssues,
|
|
36
38
|
assign_issue_1.assignIssueAction,
|
|
37
39
|
add_attachment_to_issue_1.addAttachmentToIssueAction,
|
|
40
|
+
get_issue_attachment_1.getIssueAttachmentAction,
|
|
38
41
|
add_watcher_to_issue_1.addWatcherToIssueAction,
|
|
39
42
|
add_comment_to_issue_1.addCommentToIssueAction,
|
|
40
43
|
update_issue_comment_1.updateIssueCommentAction,
|
|
@@ -54,6 +57,6 @@ exports.jiraCloud = (0, pieces_framework_1.createPiece)({
|
|
|
54
57
|
}),
|
|
55
58
|
}),
|
|
56
59
|
],
|
|
57
|
-
triggers: [new_issue_1.newIssue, updated_issue_1.updatedIssue],
|
|
60
|
+
triggers: [new_issue_1.newIssue, updated_issue_1.updatedIssue, updated_issue_status_1.updatedIssueStatus],
|
|
58
61
|
});
|
|
59
62
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/jira-cloud/src/index.ts"],"names":[],"mappings":";;;;AAAA,qEAA6D;AAE7D,+DAAwE;AACxE,iDAAqD;AACrD,iCAAiD;AACjD,6DAA+D;AAC/D,+DAA2D;AAC3D,wDAAoD;AACpD,gEAA4D;AAC5D,6EAA6E;AAC7E,mFAAmF;AACnF,6EAA8E;AAC9E,6EAA8E;AAC9E,6DAA+D;AAC/D,6DAA+D;AAC/D,2EAA4E;AAC5E,uDAAyD;AACzD,6EAA6E;AAC7E,2DAA6D;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/jira-cloud/src/index.ts"],"names":[],"mappings":";;;;AAAA,qEAA6D;AAE7D,+DAAwE;AACxE,iDAAqD;AACrD,iCAAiD;AACjD,6DAA+D;AAC/D,+DAA2D;AAC3D,wDAAoD;AACpD,gEAA4D;AAC5D,8EAAyE;AACzE,6EAA6E;AAC7E,mFAAmF;AACnF,6EAA8E;AAC9E,6EAA8E;AAC9E,6DAA+D;AAC/D,6DAA+D;AAC/D,2EAA4E;AAC5E,uDAAyD;AACzD,6EAA6E;AAC7E,2DAA6D;AAC7D,6EAA8E;AAEjE,QAAA,SAAS,GAAG,IAAA,8BAAW,EAAC;IACpC,WAAW,EAAE,YAAY;IACzB,WAAW,EAAE,uCAAuC;IAEpD,IAAI,EAAE,oBAAa;IACnB,uBAAuB,EAAE,QAAQ;IACjC,OAAO,EAAE,8CAA8C;IACvD,UAAU,EAAE,CAAC,sBAAa,CAAC,YAAY,CAAC;IACxC,OAAO,EAAE,CAAC,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,kBAAkB,CAAC;IACpE,OAAO,EAAE;QACR,gCAAiB;QACjB,gCAAiB;QACjB,0BAAc;QACd,4BAAY;QACZ,gCAAiB;QACjB,oDAA0B;QAC1B,+CAAwB;QACxB,8CAAuB;QACvB,8CAAuB;QACvB,+CAAwB;QACxB,8BAAgB;QAChB,6CAAuB;QACvB,+CAAwB;QACxB,IAAA,yCAAyB,EAAC;YACzB,OAAO,EAAE,CAAC,IAAI,EAAE,EAAE;gBACjB,OAAO,GAAI,IAAiB,CAAC,WAAW,aAAa,CAAC;YACvD,CAAC;YACD,IAAI,EAAE,oBAAa;YACnB,WAAW,EAAE,CAAO,IAAI,EAAE,EAAE;gBAC3B,MAAM,SAAS,GAAG,IAAgB,CAAC;gBACnC,OAAO;oBACN,aAAa,EAAE,SAAS,MAAM,CAAC,IAAI,CAAC,GAAG,SAAS,CAAC,KAAK,IAAI,SAAS,CAAC,QAAQ,EAAE,CAAC,CAAC,QAAQ,CACvF,QAAQ,CACR,EAAE;iBACH,CAAC;YACH,CAAC,CAAA;SACD,CAAC;KACF;IACD,QAAQ,EAAE,CAAC,oBAAQ,EAAE,4BAAY,EAAE,yCAAkB,CAAC;CACtD,CAAC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const getIssueAttachmentAction: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
|
+
instanceUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
3
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
|
+
apiToken: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
5
|
+
}>, {
|
|
6
|
+
attachmentId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getIssueAttachmentAction = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
6
|
+
const auth_1 = require("../../auth");
|
|
7
|
+
const common_1 = require("../common");
|
|
8
|
+
const pieces_common_1 = require("@activepieces/pieces-common");
|
|
9
|
+
exports.getIssueAttachmentAction = (0, pieces_framework_1.createAction)({
|
|
10
|
+
auth: auth_1.jiraCloudAuth,
|
|
11
|
+
name: 'get-issue-attachment',
|
|
12
|
+
displayName: 'Get Issue Attachment',
|
|
13
|
+
description: 'Retrieves an attachment from an issue.',
|
|
14
|
+
props: {
|
|
15
|
+
attachmentId: pieces_framework_1.Property.ShortText({
|
|
16
|
+
displayName: 'Attachment ID',
|
|
17
|
+
required: true
|
|
18
|
+
})
|
|
19
|
+
},
|
|
20
|
+
run(context) {
|
|
21
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
22
|
+
const { attachmentId } = context.propsValue;
|
|
23
|
+
// https://community.developer.atlassian.com/t/download-attachment-from-rest-api/40860/2
|
|
24
|
+
const attachmentResponse = yield (0, common_1.jiraApiCall)({
|
|
25
|
+
method: pieces_common_1.HttpMethod.GET,
|
|
26
|
+
resourceUri: `/attachment/${attachmentId}`,
|
|
27
|
+
auth: context.auth,
|
|
28
|
+
});
|
|
29
|
+
const { filename, content } = attachmentResponse;
|
|
30
|
+
const response = yield pieces_common_1.httpClient.sendRequest({
|
|
31
|
+
url: content,
|
|
32
|
+
method: pieces_common_1.HttpMethod.GET,
|
|
33
|
+
authentication: {
|
|
34
|
+
type: pieces_common_1.AuthenticationType.BASIC,
|
|
35
|
+
username: context.auth.email,
|
|
36
|
+
password: context.auth.apiToken,
|
|
37
|
+
},
|
|
38
|
+
responseType: 'arraybuffer'
|
|
39
|
+
});
|
|
40
|
+
return Object.assign(Object.assign({}, attachmentResponse), { file: yield context.files.write({
|
|
41
|
+
fileName: filename,
|
|
42
|
+
data: Buffer.from(response.body)
|
|
43
|
+
}) });
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
//# sourceMappingURL=get-issue-attachment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-issue-attachment.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/jira-cloud/src/lib/actions/get-issue-attachment.ts"],"names":[],"mappings":";;;;AAAA,qEAAwE;AACxE,qCAA2C;AAC3C,sCAAwC;AACxC,+DAAyF;AAE5E,QAAA,wBAAwB,GAAG,IAAA,+BAAY,EAAC;IACjD,IAAI,EAAE,oBAAa;IACnB,IAAI,EAAE,sBAAsB;IAC5B,WAAW,EAAE,sBAAsB;IACnC,WAAW,EAAE,wCAAwC;IACrD,KAAK,EAAE;QACH,YAAY,EAAE,2BAAQ,CAAC,SAAS,CAAC;YAC7B,WAAW,EAAE,eAAe;YAC5B,QAAQ,EAAE,IAAI;SACjB,CAAC;KACL;IACK,GAAG,CAAC,OAAO;;YACb,MAAM,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,UAAU,CAAC;YAE5C,wFAAwF;YACxF,MAAM,kBAAkB,GAAG,MAAM,IAAA,oBAAW,EAAwC;gBAChF,MAAM,EAAE,0BAAU,CAAC,GAAG;gBACtB,WAAW,EAAE,eAAe,YAAY,EAAE;gBAC1C,IAAI,EAAE,OAAO,CAAC,IAAI;aACrB,CAAC,CAAA;YAEF,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,kBAAkB,CAAC;YAEjD,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;gBAC1C,GAAG,EAAE,OAAO;gBACZ,MAAM,EAAE,0BAAU,CAAC,GAAG;gBACtB,cAAc,EAAE;oBACZ,IAAI,EAAE,kCAAkB,CAAC,KAAK;oBAC9B,QAAQ,EAAE,OAAO,CAAC,IAAI,CAAC,KAAK;oBAC5B,QAAQ,EAAE,OAAO,CAAC,IAAI,CAAC,QAAQ;iBAClC;gBACD,YAAY,EAAC,aAAa;aAC7B,CAAC,CAAA;YAEF,uCACO,kBAAkB,KACrB,IAAI,EAAE,MAAM,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC;oBAC5B,QAAQ,EAAE,QAAQ;oBAClB,IAAI,EAAE,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;iBACnC,CAAC,IACL;QACL,CAAC;KAAA;CACJ,CAAC,CAAA"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
+
export declare const updatedIssueStatus: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
3
|
+
instanceUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
5
|
+
apiToken: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
6
|
+
}>, {
|
|
7
|
+
jql: import("@activepieces/pieces-framework").LongTextProperty<false>;
|
|
8
|
+
sanitizeJql: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
9
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
10
|
+
instanceUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
11
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
12
|
+
apiToken: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
13
|
+
}>, {
|
|
14
|
+
jql: import("@activepieces/pieces-framework").LongTextProperty<false>;
|
|
15
|
+
sanitizeJql: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
16
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
17
|
+
instanceUrl: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
18
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
19
|
+
apiToken: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
20
|
+
}>, {
|
|
21
|
+
jql: import("@activepieces/pieces-framework").LongTextProperty<false>;
|
|
22
|
+
sanitizeJql: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
23
|
+
}>;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.updatedIssueStatus = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
6
|
+
const pieces_common_1 = require("@activepieces/pieces-common");
|
|
7
|
+
const auth_1 = require("../../auth");
|
|
8
|
+
const common_1 = require("../common");
|
|
9
|
+
const dayjs_1 = tslib_1.__importDefault(require("dayjs"));
|
|
10
|
+
const polling = {
|
|
11
|
+
strategy: pieces_common_1.DedupeStrategy.TIMEBASED,
|
|
12
|
+
items: (_a) => tslib_1.__awaiter(void 0, [_a], void 0, function* ({ auth, lastFetchEpochMS, propsValue }) {
|
|
13
|
+
const { jql, sanitizeJql } = propsValue;
|
|
14
|
+
const searchQuery = `${jql ? jql + ' AND ' : ''}updated > '${(0, dayjs_1.default)(lastFetchEpochMS).format('YYYY-MM-DD HH:mm')}'`;
|
|
15
|
+
const issues = yield (0, common_1.searchIssuesByJql)({
|
|
16
|
+
auth,
|
|
17
|
+
jql: searchQuery,
|
|
18
|
+
maxResults: 50,
|
|
19
|
+
sanitizeJql: sanitizeJql !== null && sanitizeJql !== void 0 ? sanitizeJql : false,
|
|
20
|
+
});
|
|
21
|
+
return issues.map((issue) => ({
|
|
22
|
+
epochMilliSeconds: Date.parse(issue.fields.statuscategorychangedate),
|
|
23
|
+
data: issue,
|
|
24
|
+
}));
|
|
25
|
+
}),
|
|
26
|
+
};
|
|
27
|
+
exports.updatedIssueStatus = (0, pieces_framework_1.createTrigger)({
|
|
28
|
+
name: 'updated_issue_status',
|
|
29
|
+
displayName: 'Updated Issue Status',
|
|
30
|
+
description: 'Triggers when an issue status is updated',
|
|
31
|
+
auth: auth_1.jiraCloudAuth,
|
|
32
|
+
type: pieces_framework_1.TriggerStrategy.POLLING,
|
|
33
|
+
props: {
|
|
34
|
+
jql: pieces_framework_1.Property.LongText({
|
|
35
|
+
displayName: 'JQL',
|
|
36
|
+
description: 'Use to filter issues watched',
|
|
37
|
+
required: false,
|
|
38
|
+
}),
|
|
39
|
+
sanitizeJql: pieces_framework_1.Property.Checkbox({
|
|
40
|
+
displayName: 'Sanitize JQL',
|
|
41
|
+
required: false,
|
|
42
|
+
defaultValue: true,
|
|
43
|
+
}),
|
|
44
|
+
},
|
|
45
|
+
sampleData: {},
|
|
46
|
+
onEnable(context) {
|
|
47
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
48
|
+
yield pieces_common_1.pollingHelper.onEnable(polling, context);
|
|
49
|
+
});
|
|
50
|
+
},
|
|
51
|
+
onDisable(context) {
|
|
52
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
53
|
+
yield pieces_common_1.pollingHelper.onDisable(polling, context);
|
|
54
|
+
});
|
|
55
|
+
},
|
|
56
|
+
run(context) {
|
|
57
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
58
|
+
return yield pieces_common_1.pollingHelper.poll(polling, context);
|
|
59
|
+
});
|
|
60
|
+
},
|
|
61
|
+
test(context) {
|
|
62
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
63
|
+
return yield pieces_common_1.pollingHelper.test(polling, context);
|
|
64
|
+
});
|
|
65
|
+
},
|
|
66
|
+
});
|
|
67
|
+
//# sourceMappingURL=updated-issue-status.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updated-issue-status.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/jira-cloud/src/lib/triggers/updated-issue-status.ts"],"names":[],"mappings":";;;;AAAA,qEAKwC;AACxC,+DAIqC;AACrC,qCAA2C;AAC3C,sCAA8C;AAC9C,0DAA0B;AAE1B,MAAM,OAAO,GAGT;IACF,QAAQ,EAAE,8BAAc,CAAC,SAAS;IAClC,KAAK,EAAE,KAA+C,EAAE,oDAA1C,EAAE,IAAI,EAAE,gBAAgB,EAAE,UAAU,EAAE;QAClD,MAAM,EAAE,GAAG,EAAE,WAAW,EAAE,GAAG,UAAU,CAAC;QACxC,MAAM,WAAW,GAAG,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,OAAO,CAAC,CAAC,CAAC,EAAE,cAAc,IAAA,eAAK,EAChE,gBAAgB,CACjB,CAAC,MAAM,CAAC,kBAAkB,CAAC,GAAG,CAAC;QAChC,MAAM,MAAM,GAAG,MAAM,IAAA,0BAAiB,EAAC;YACrC,IAAI;YACJ,GAAG,EAAE,WAAW;YAChB,UAAU,EAAE,EAAE;YACd,WAAW,EAAE,WAAW,aAAX,WAAW,cAAX,WAAW,GAAI,KAAK;SAClC,CAAC,CAAC;QACH,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;YAC5B,iBAAiB,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,wBAAwB,CAAC;YACpE,IAAI,EAAE,KAAK;SACZ,CAAC,CAAC,CAAC;IACN,CAAC,CAAA;CACF,CAAC;AAEW,QAAA,kBAAkB,GAAG,IAAA,gCAAa,EAAC;IAC9C,IAAI,EAAE,sBAAsB;IAC5B,WAAW,EAAE,sBAAsB;IACnC,WAAW,EAAE,0CAA0C;IACvD,IAAI,EAAE,oBAAa;IACnB,IAAI,EAAE,kCAAe,CAAC,OAAO;IAC7B,KAAK,EAAE;QACL,GAAG,EAAE,2BAAQ,CAAC,QAAQ,CAAC;YACrB,WAAW,EAAE,KAAK;YAClB,WAAW,EAAE,8BAA8B;YAC3C,QAAQ,EAAE,KAAK;SAChB,CAAC;QACF,WAAW,EAAE,2BAAQ,CAAC,QAAQ,CAAC;YAC7B,WAAW,EAAE,cAAc;YAC3B,QAAQ,EAAE,KAAK;YACf,YAAY,EAAE,IAAI;SACnB,CAAC;KACH;IACD,UAAU,EAAE,EAAE;IACR,QAAQ,CAAC,OAAO;;YACpB,MAAM,6BAAa,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACjD,CAAC;KAAA;IACK,SAAS,CAAC,OAAO;;YACrB,MAAM,6BAAa,CAAC,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAClD,CAAC;KAAA;IACK,GAAG,CAAC,OAAO;;YACf,OAAO,MAAM,6BAAa,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACpD,CAAC;KAAA;IACK,IAAI,CAAC,OAAO;;YAChB,OAAO,MAAM,6BAAa,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACpD,CAAC;KAAA;CACF,CAAC,CAAC"}
|