@activepieces/piece-zendesk 0.0.5 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-zendesk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@sinclair/typebox": "0.26.8",
|
|
6
|
-
"axios": "1.
|
|
6
|
+
"axios": "^1.6.3",
|
|
7
|
+
"dayjs": "1.11.9",
|
|
8
|
+
"is-base64": "1.1.0",
|
|
7
9
|
"lodash": "4.17.21",
|
|
8
|
-
"nanoid": "3.3.
|
|
9
|
-
"
|
|
10
|
-
"@activepieces/
|
|
11
|
-
"@activepieces/pieces-
|
|
12
|
-
"
|
|
10
|
+
"nanoid": "3.3.6",
|
|
11
|
+
"semver": "7.5.4",
|
|
12
|
+
"@activepieces/pieces-common": "0.2.8",
|
|
13
|
+
"@activepieces/pieces-framework": "0.7.14",
|
|
14
|
+
"@activepieces/shared": "0.10.66",
|
|
15
|
+
"tslib": "2.6.2"
|
|
13
16
|
},
|
|
14
17
|
"main": "./src/index.js",
|
|
15
|
-
"
|
|
18
|
+
"type": "commonjs"
|
|
16
19
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -1 +1,10 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const zendeskAuth: import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
3
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
5
|
+
}>;
|
|
6
|
+
export declare const zendesk: import("@activepieces/pieces-framework").Piece<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
7
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
8
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
9
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
10
|
+
}>>;
|
package/src/index.js
CHANGED
|
@@ -1,17 +1,52 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.zendesk = void 0;
|
|
3
|
+
exports.zendesk = exports.zendeskAuth = void 0;
|
|
4
4
|
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
5
5
|
const new_ticket_in_view_1 = require("./lib/trigger/new-ticket-in-view");
|
|
6
|
+
const pieces_common_1 = require("@activepieces/pieces-common");
|
|
7
|
+
const markdownProperty = `
|
|
8
|
+
**Organization**: The organization name can be found in the URL (e.g https://ORGANIZATION_NAME.zendesk.com).
|
|
9
|
+
|
|
10
|
+
**Agent Email**: The email you use to log in to Zendesk.
|
|
11
|
+
|
|
12
|
+
**API Token**: You can find this in the Zendesk Admin Panel under Settings > APIs > Zendesk API.
|
|
13
|
+
`;
|
|
14
|
+
exports.zendeskAuth = pieces_framework_1.PieceAuth.CustomAuth({
|
|
15
|
+
description: markdownProperty,
|
|
16
|
+
props: {
|
|
17
|
+
email: pieces_framework_1.Property.ShortText({
|
|
18
|
+
displayName: 'Agent Email',
|
|
19
|
+
description: 'The email address you use to login to Zendesk',
|
|
20
|
+
required: true,
|
|
21
|
+
}),
|
|
22
|
+
token: pieces_framework_1.Property.ShortText({
|
|
23
|
+
displayName: 'Token',
|
|
24
|
+
description: 'The API token you can generate in Zendesk',
|
|
25
|
+
required: true,
|
|
26
|
+
}),
|
|
27
|
+
subdomain: pieces_framework_1.Property.ShortText({
|
|
28
|
+
displayName: 'Organization (e.g activepieceshelp)',
|
|
29
|
+
description: 'The subdomain of your Zendesk instance',
|
|
30
|
+
required: true,
|
|
31
|
+
}),
|
|
32
|
+
},
|
|
33
|
+
required: true,
|
|
34
|
+
});
|
|
6
35
|
exports.zendesk = (0, pieces_framework_1.createPiece)({
|
|
7
36
|
displayName: 'Zendesk',
|
|
37
|
+
minimumSupportedRelease: '0.5.0',
|
|
8
38
|
logoUrl: 'https://cdn.activepieces.com/pieces/zendesk.png',
|
|
9
|
-
authors: [
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
39
|
+
authors: ['abuaboud'],
|
|
40
|
+
auth: exports.zendeskAuth,
|
|
41
|
+
actions: [
|
|
42
|
+
(0, pieces_common_1.createCustomApiCallAction)({
|
|
43
|
+
baseUrl: (auth) => `https://${auth.subdomain}.zendesk.com/api/v2`,
|
|
44
|
+
auth: exports.zendeskAuth,
|
|
45
|
+
authMapping: (auth) => ({
|
|
46
|
+
Authorization: `Basic ${Buffer.from(`${auth.email}/token:${auth.token}`).toString('base64')}`,
|
|
47
|
+
}),
|
|
48
|
+
}),
|
|
15
49
|
],
|
|
50
|
+
triggers: [new_ticket_in_view_1.newTicketInView],
|
|
16
51
|
});
|
|
17
52
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/zendesk/src/index.ts"],"names":[],"mappings":";;;AAAA,qEAIwC;AACxC,yEAAmE;AACnE,+DAAwE;AAExE,MAAM,gBAAgB,GAAG;;;;;;CAMxB,CAAC;AAEW,QAAA,WAAW,GAAG,4BAAS,CAAC,UAAU,CAAC;IAC9C,WAAW,EAAE,gBAAgB;IAC7B,KAAK,EAAE;QACL,KAAK,EAAE,2BAAQ,CAAC,SAAS,CAAC;YACxB,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,+CAA+C;YAC5D,QAAQ,EAAE,IAAI;SACf,CAAC;QACF,KAAK,EAAE,2BAAQ,CAAC,SAAS,CAAC;YACxB,WAAW,EAAE,OAAO;YACpB,WAAW,EAAE,2CAA2C;YACxD,QAAQ,EAAE,IAAI;SACf,CAAC;QACF,SAAS,EAAE,2BAAQ,CAAC,SAAS,CAAC;YAC5B,WAAW,EAAE,qCAAqC;YAClD,WAAW,EAAE,wCAAwC;YACrD,QAAQ,EAAE,IAAI;SACf,CAAC;KACH;IACD,QAAQ,EAAE,IAAI;CACf,CAAC,CAAC;AAEU,QAAA,OAAO,GAAG,IAAA,8BAAW,EAAC;IACjC,WAAW,EAAE,SAAS;IACtB,uBAAuB,EAAE,OAAO;IAChC,OAAO,EAAE,iDAAiD;IAC1D,OAAO,EAAE,CAAC,UAAU,CAAC;IACrB,IAAI,EAAE,mBAAW;IACjB,OAAO,EAAE;QACP,IAAA,yCAAyB,EAAC;YACxB,OAAO,EAAE,CAAC,IAAI,EAAE,EAAE,CAChB,WACG,IAA8B,CAAC,SAClC,qBAAqB;YACvB,IAAI,EAAE,mBAAW;YACjB,WAAW,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;gBACtB,aAAa,EAAE,SAAS,MAAM,CAAC,IAAI,CACjC,GAAI,IAA0B,CAAC,KAAK,UACjC,IAA0B,CAAC,KAC9B,EAAE,CACH,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;aACvB,CAAC;SACH,CAAC;KACH;IACD,QAAQ,EAAE,CAAC,oCAAe,CAAC;CAC5B,CAAC,CAAC"}
|
|
@@ -1 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
|
+
export declare const newTicketInView: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
3
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
5
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
6
|
+
}>, {
|
|
7
|
+
view_id: import("@activepieces/pieces-framework").DropdownProperty<any, true>;
|
|
8
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
9
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
10
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
11
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
12
|
+
}>, {
|
|
13
|
+
view_id: import("@activepieces/pieces-framework").DropdownProperty<any, true>;
|
|
14
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
15
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
16
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
17
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
18
|
+
}>, {
|
|
19
|
+
view_id: import("@activepieces/pieces-framework").DropdownProperty<any, true>;
|
|
20
|
+
}>;
|
|
@@ -4,49 +4,24 @@ exports.newTicketInView = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
6
6
|
const pieces_common_1 = require("@activepieces/pieces-common");
|
|
7
|
-
const
|
|
8
|
-
**Organization**: The organization name can be found in the URL (e.g https://ORGANIZATION_NAME.zendesk.com).
|
|
9
|
-
|
|
10
|
-
**Agent Email**: The email you use to log in to Zendesk.
|
|
11
|
-
|
|
12
|
-
**API Token**: You can find this in the Zendesk Admin Panel under Settings > APIs > Zendesk API.
|
|
13
|
-
`;
|
|
7
|
+
const __1 = require("../..");
|
|
14
8
|
exports.newTicketInView = (0, pieces_framework_1.createTrigger)({
|
|
9
|
+
auth: __1.zendeskAuth,
|
|
15
10
|
name: 'new_ticket_in_view',
|
|
16
11
|
displayName: 'New ticket in view',
|
|
17
12
|
description: 'Triggers when a new ticket is created in a view',
|
|
18
13
|
type: pieces_framework_1.TriggerStrategy.POLLING,
|
|
19
14
|
props: {
|
|
20
|
-
authentication: pieces_framework_1.Property.CustomAuth({
|
|
21
|
-
displayName: 'Authentication',
|
|
22
|
-
description: markdownProperty,
|
|
23
|
-
props: {
|
|
24
|
-
email: pieces_framework_1.Property.ShortText({
|
|
25
|
-
displayName: 'Agent Email',
|
|
26
|
-
description: 'The email address you use to login to Zendesk',
|
|
27
|
-
required: true,
|
|
28
|
-
}),
|
|
29
|
-
token: pieces_framework_1.Property.ShortText({
|
|
30
|
-
displayName: 'Token',
|
|
31
|
-
description: 'The API token you can generate in Zendesk',
|
|
32
|
-
required: true,
|
|
33
|
-
}),
|
|
34
|
-
subdomain: pieces_framework_1.Property.ShortText({
|
|
35
|
-
displayName: 'Organization (e.g activepieceshelp)',
|
|
36
|
-
description: 'The subdomain of your Zendesk instance',
|
|
37
|
-
required: true,
|
|
38
|
-
}),
|
|
39
|
-
},
|
|
40
|
-
required: true,
|
|
41
|
-
}),
|
|
42
15
|
view_id: pieces_framework_1.Property.Dropdown({
|
|
43
16
|
displayName: 'View',
|
|
44
17
|
description: 'The view to monitor for new tickets',
|
|
45
|
-
refreshers: [
|
|
18
|
+
refreshers: [],
|
|
46
19
|
required: true,
|
|
47
|
-
options: (
|
|
48
|
-
const authentication =
|
|
49
|
-
if (!(authentication === null || authentication === void 0 ? void 0 : authentication['email']) ||
|
|
20
|
+
options: ({ auth }) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
21
|
+
const authentication = auth;
|
|
22
|
+
if (!(authentication === null || authentication === void 0 ? void 0 : authentication['email']) ||
|
|
23
|
+
!(authentication === null || authentication === void 0 ? void 0 : authentication['subdomain']) ||
|
|
24
|
+
!(authentication === null || authentication === void 0 ? void 0 : authentication['token'])) {
|
|
50
25
|
return {
|
|
51
26
|
placeholder: 'Fill your authentication first',
|
|
52
27
|
disabled: true,
|
|
@@ -58,101 +33,105 @@ exports.newTicketInView = (0, pieces_framework_1.createTrigger)({
|
|
|
58
33
|
method: pieces_common_1.HttpMethod.GET,
|
|
59
34
|
authentication: {
|
|
60
35
|
type: pieces_common_1.AuthenticationType.BASIC,
|
|
61
|
-
username: authentication.email +
|
|
36
|
+
username: authentication.email + '/token',
|
|
62
37
|
password: authentication.token,
|
|
63
|
-
}
|
|
38
|
+
},
|
|
64
39
|
});
|
|
65
40
|
return {
|
|
66
41
|
placeholder: 'Select a view',
|
|
67
42
|
options: response.body.views.map((view) => ({
|
|
68
43
|
label: view.title,
|
|
69
44
|
value: view.id,
|
|
70
|
-
}))
|
|
45
|
+
})),
|
|
71
46
|
};
|
|
72
|
-
})
|
|
73
|
-
})
|
|
47
|
+
}),
|
|
48
|
+
}),
|
|
74
49
|
},
|
|
75
50
|
sampleData: {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
}
|
|
51
|
+
url: 'https://activepieceshelp.zendesk.com/api/v2/tickets/5.json',
|
|
52
|
+
id: 5,
|
|
53
|
+
external_id: null,
|
|
54
|
+
via: {
|
|
55
|
+
channel: 'web',
|
|
56
|
+
source: {
|
|
57
|
+
from: {},
|
|
58
|
+
to: {},
|
|
59
|
+
rel: null,
|
|
60
|
+
},
|
|
86
61
|
},
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
62
|
+
created_at: '2023-03-25T02:39:41Z',
|
|
63
|
+
updated_at: '2023-03-25T02:39:41Z',
|
|
64
|
+
type: null,
|
|
65
|
+
subject: 'Subject',
|
|
66
|
+
raw_subject: 'Raw Subject',
|
|
67
|
+
description: 'Description',
|
|
68
|
+
priority: null,
|
|
69
|
+
status: 'open',
|
|
70
|
+
recipient: null,
|
|
71
|
+
requester_id: 8193592318236,
|
|
72
|
+
submitter_id: 8193592318236,
|
|
73
|
+
assignee_id: 8193592318236,
|
|
74
|
+
organization_id: 8193599387420,
|
|
75
|
+
group_id: 8193569448092,
|
|
76
|
+
collaborator_ids: [],
|
|
77
|
+
follower_ids: [],
|
|
78
|
+
email_cc_ids: [],
|
|
79
|
+
forum_topic_id: null,
|
|
80
|
+
problem_id: null,
|
|
81
|
+
has_incidents: false,
|
|
82
|
+
is_public: true,
|
|
83
|
+
due_at: null,
|
|
84
|
+
tags: [],
|
|
85
|
+
custom_fields: [],
|
|
86
|
+
satisfaction_rating: null,
|
|
87
|
+
sharing_agreement_ids: [],
|
|
88
|
+
custom_status_id: 8193592472348,
|
|
89
|
+
fields: [],
|
|
90
|
+
followup_ids: [],
|
|
91
|
+
ticket_form_id: 8193569410076,
|
|
92
|
+
brand_id: 8193583542300,
|
|
93
|
+
allow_channelback: false,
|
|
94
|
+
allow_attachments: true,
|
|
95
|
+
from_messaging_channel: false,
|
|
121
96
|
},
|
|
122
97
|
onEnable: (context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
123
98
|
yield pieces_common_1.pollingHelper.onEnable(polling, {
|
|
99
|
+
auth: context.auth,
|
|
124
100
|
store: context.store,
|
|
125
101
|
propsValue: context.propsValue,
|
|
126
102
|
});
|
|
127
103
|
}),
|
|
128
104
|
onDisable: (context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
129
105
|
yield pieces_common_1.pollingHelper.onDisable(polling, {
|
|
106
|
+
auth: context.auth,
|
|
130
107
|
store: context.store,
|
|
131
108
|
propsValue: context.propsValue,
|
|
132
109
|
});
|
|
133
110
|
}),
|
|
134
111
|
run: (context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
135
112
|
return yield pieces_common_1.pollingHelper.poll(polling, {
|
|
113
|
+
auth: context.auth,
|
|
136
114
|
store: context.store,
|
|
137
115
|
propsValue: context.propsValue,
|
|
138
116
|
});
|
|
139
117
|
}),
|
|
140
118
|
test: (context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
141
119
|
return yield pieces_common_1.pollingHelper.test(polling, {
|
|
120
|
+
auth: context.auth,
|
|
142
121
|
store: context.store,
|
|
143
122
|
propsValue: context.propsValue,
|
|
144
123
|
});
|
|
145
|
-
})
|
|
124
|
+
}),
|
|
146
125
|
});
|
|
147
126
|
const polling = {
|
|
148
127
|
strategy: pieces_common_1.DedupeStrategy.LAST_ITEM,
|
|
149
|
-
items: ({ propsValue }) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
150
|
-
const items = yield getTickets(
|
|
128
|
+
items: ({ auth, propsValue }) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
129
|
+
const items = yield getTickets(auth, propsValue.view_id);
|
|
151
130
|
return items.map((item) => ({
|
|
152
131
|
id: item.id,
|
|
153
132
|
data: item,
|
|
154
133
|
}));
|
|
155
|
-
})
|
|
134
|
+
}),
|
|
156
135
|
};
|
|
157
136
|
function getTickets(authentication, view_id) {
|
|
158
137
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -162,9 +141,9 @@ function getTickets(authentication, view_id) {
|
|
|
162
141
|
method: pieces_common_1.HttpMethod.GET,
|
|
163
142
|
authentication: {
|
|
164
143
|
type: pieces_common_1.AuthenticationType.BASIC,
|
|
165
|
-
username: email +
|
|
144
|
+
username: email + '/token',
|
|
166
145
|
password: token,
|
|
167
|
-
}
|
|
146
|
+
},
|
|
168
147
|
});
|
|
169
148
|
return response.body.tickets;
|
|
170
149
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"new-ticket-in-view.js","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"new-ticket-in-view.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/zendesk/src/lib/trigger/new-ticket-in-view.ts"],"names":[],"mappings":"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"}
|