@activepieces/piece-zendesk 0.2.0 → 0.2.2
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 +6 -4
- package/src/i18n/de.json +1 -0
- package/src/i18n/es.json +1 -0
- package/src/i18n/fr.json +1 -0
- package/src/i18n/ja.json +2 -1
- package/src/i18n/nl.json +1 -0
- package/src/i18n/pt.json +1 -0
- package/src/i18n/translation.json +7 -1
- package/src/i18n/zh.json +1 -0
- package/src/lib/trigger/new-action-on-ticket.d.ts +6 -0
- package/src/lib/trigger/new-organization.d.ts +4 -0
- package/src/lib/trigger/new-suspended-ticket.d.ts +6 -0
- package/src/lib/trigger/new-ticket-in-view.d.ts +10 -0
- package/src/lib/trigger/new-ticket.d.ts +10 -0
- package/src/lib/trigger/new-user.d.ts +6 -0
- package/src/lib/trigger/tag-added-to-ticket.d.ts +6 -0
- package/src/lib/trigger/updated-ticket.d.ts +10 -0
package/package.json
CHANGED
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-zendesk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@sinclair/typebox": "0.34.11",
|
|
6
|
+
"ai": "^6.0.0",
|
|
6
7
|
"axios": "1.13.1",
|
|
7
8
|
"axios-retry": "4.4.1",
|
|
8
9
|
"dayjs": "1.11.9",
|
|
9
10
|
"deepmerge-ts": "7.1.0",
|
|
10
11
|
"form-data": "4.0.4",
|
|
12
|
+
"i18next": "23.13.0",
|
|
11
13
|
"mime-types": "2.1.35",
|
|
12
14
|
"nanoid": "3.3.8",
|
|
13
15
|
"semver": "7.6.0",
|
|
14
16
|
"socket.io-client": "4.8.1",
|
|
15
17
|
"zod": "4.1.13",
|
|
16
|
-
"@activepieces/pieces-common": "0.11.
|
|
17
|
-
"@activepieces/pieces-framework": "0.
|
|
18
|
-
"@activepieces/shared": "0.
|
|
18
|
+
"@activepieces/pieces-common": "0.11.3",
|
|
19
|
+
"@activepieces/pieces-framework": "0.25.1",
|
|
20
|
+
"@activepieces/shared": "0.34.0",
|
|
19
21
|
"tslib": "2.6.2"
|
|
20
22
|
},
|
|
21
23
|
"resolutions": {
|
package/src/i18n/de.json
CHANGED
package/src/i18n/es.json
CHANGED
package/src/i18n/fr.json
CHANGED
package/src/i18n/ja.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"Find Organization(s)": "組織を検索",
|
|
19
19
|
"Find Ticket(s)": "チケットを検索",
|
|
20
20
|
"Find User(s)": "ユーザを検索",
|
|
21
|
-
"Custom API Call": "カスタムAPI
|
|
21
|
+
"Custom API Call": "カスタムAPI呼び出し",
|
|
22
22
|
"Create a new ticket in Zendesk.": "Zendeskで新しいチケットを作成します。",
|
|
23
23
|
"Modify ticket fields or status via API call.": "API 呼び出しを介してチケットのフィールドまたはステータスを変更します。",
|
|
24
24
|
"Apply one or more tags to a ticket.": "チケットにタグを適用します。",
|
|
@@ -97,6 +97,7 @@
|
|
|
97
97
|
"Custom Query": "カスタムクエリ",
|
|
98
98
|
"Sort By": "並び替え",
|
|
99
99
|
"Sort Order": "並び順",
|
|
100
|
+
"Date Time Filter": "日付時刻フィルタ",
|
|
100
101
|
"Ticket ID": "ケースID",
|
|
101
102
|
"Content": "コンテンツ",
|
|
102
103
|
"Email Address": "メールアドレス",
|
package/src/i18n/nl.json
CHANGED
package/src/i18n/pt.json
CHANGED
|
@@ -97,6 +97,7 @@
|
|
|
97
97
|
"Custom Query": "Consulta personalizada",
|
|
98
98
|
"Sort By": "Classificar por",
|
|
99
99
|
"Sort Order": "Ordem de classificação",
|
|
100
|
+
"Date Time Filter": "Filtro de Data",
|
|
100
101
|
"Ticket ID": "ID Ticket",
|
|
101
102
|
"Content": "Conteúdo",
|
|
102
103
|
"Email Address": "Endereço de e-mail",
|
|
@@ -104,10 +104,12 @@
|
|
|
104
104
|
"Method": "Method",
|
|
105
105
|
"Headers": "Headers",
|
|
106
106
|
"Query Parameters": "Query Parameters",
|
|
107
|
+
"Body Type": "Body Type",
|
|
107
108
|
"Body": "Body",
|
|
108
109
|
"Response is Binary ?": "Response is Binary ?",
|
|
109
110
|
"No Error on Failure": "No Error on Failure",
|
|
110
111
|
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
112
|
+
"Follow redirects": "Follow redirects",
|
|
111
113
|
"The subject of the ticket (optional - will use first comment text if not provided)": "The subject of the ticket (optional - will use first comment text if not provided)",
|
|
112
114
|
"The comment body (text). Use this for plain text comments.": "The comment body (text). Use this for plain text comments.",
|
|
113
115
|
"The comment body (HTML). Use this for HTML formatted comments. If provided, this takes precedence over Comment Body.": "The comment body (HTML). Use this for HTML formatted comments. If provided, this takes precedence over Comment Body.",
|
|
@@ -226,7 +228,7 @@
|
|
|
226
228
|
"Search users by external ID": "Search users by external ID",
|
|
227
229
|
"Custom search query using Zendesk search syntax (e.g., \"type:user role:agent\")": "Custom search query using Zendesk search syntax (e.g., \"type:user role:agent\")",
|
|
228
230
|
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
229
|
-
"Enable for files like PDFs, images, etc
|
|
231
|
+
"Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
|
|
230
232
|
"Low": "Low",
|
|
231
233
|
"Normal": "Normal",
|
|
232
234
|
"High": "High",
|
|
@@ -274,6 +276,10 @@
|
|
|
274
276
|
"PUT": "PUT",
|
|
275
277
|
"DELETE": "DELETE",
|
|
276
278
|
"HEAD": "HEAD",
|
|
279
|
+
"None": "None",
|
|
280
|
+
"JSON": "JSON",
|
|
281
|
+
"Form Data": "Form Data",
|
|
282
|
+
"Raw": "Raw",
|
|
277
283
|
"New ticket in view": "New ticket in view",
|
|
278
284
|
"New Ticket": "New Ticket",
|
|
279
285
|
"Updated Ticket": "Updated Ticket",
|
package/src/i18n/zh.json
CHANGED
|
@@ -11,6 +11,12 @@ export declare const newActionOnTicket: import("@activepieces/pieces-framework")
|
|
|
11
11
|
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
12
12
|
}>, {
|
|
13
13
|
ticket_id: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
14
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, 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
|
+
ticket_id: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
14
20
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
15
21
|
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
16
22
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -7,6 +7,10 @@ export declare const newOrganization: import("@activepieces/pieces-framework").I
|
|
|
7
7
|
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
8
8
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
9
9
|
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
10
|
+
}>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
11
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
12
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
13
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
10
14
|
}>, {}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
11
15
|
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
12
16
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -11,6 +11,12 @@ export declare const newSuspendedTicket: import("@activepieces/pieces-framework"
|
|
|
11
11
|
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
12
12
|
}>, {
|
|
13
13
|
organization_filter: import("@activepieces/pieces-framework").ShortTextProperty<false>;
|
|
14
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, 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
|
+
organization_filter: import("@activepieces/pieces-framework").ShortTextProperty<false>;
|
|
14
20
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
15
21
|
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
16
22
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -19,6 +19,16 @@ export declare const newTicketInView: import("@activepieces/pieces-framework").I
|
|
|
19
19
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
20
20
|
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
21
21
|
}>>;
|
|
22
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
23
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
24
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
25
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
26
|
+
}>, {
|
|
27
|
+
view_id: import("@activepieces/pieces-framework").DropdownProperty<any, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
28
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
29
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
30
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
31
|
+
}>>;
|
|
22
32
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
23
33
|
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
24
34
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -19,6 +19,16 @@ export declare const newTicket: import("@activepieces/pieces-framework").ITrigge
|
|
|
19
19
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
20
20
|
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
21
21
|
}>>;
|
|
22
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
23
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
24
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
25
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
26
|
+
}>, {
|
|
27
|
+
organization_id: import("@activepieces/pieces-framework").DropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
28
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
29
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
30
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
31
|
+
}>>;
|
|
22
32
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
23
33
|
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
24
34
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -11,6 +11,12 @@ export declare const newUser: import("@activepieces/pieces-framework").ITrigger<
|
|
|
11
11
|
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
12
12
|
}>, {
|
|
13
13
|
user_role: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
14
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, 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
|
+
user_role: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
14
20
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
15
21
|
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
16
22
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -11,6 +11,12 @@ export declare const tagAddedToTicket: import("@activepieces/pieces-framework").
|
|
|
11
11
|
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
12
12
|
}>, {
|
|
13
13
|
specific_tag: import("@activepieces/pieces-framework").ShortTextProperty<false>;
|
|
14
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, 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
|
+
specific_tag: import("@activepieces/pieces-framework").ShortTextProperty<false>;
|
|
14
20
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
15
21
|
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
16
22
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -19,6 +19,16 @@ export declare const updatedTicket: import("@activepieces/pieces-framework").ITr
|
|
|
19
19
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
20
20
|
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
21
21
|
}>>;
|
|
22
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
23
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
24
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
25
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
26
|
+
}>, {
|
|
27
|
+
organization_id: import("@activepieces/pieces-framework").DropdownProperty<string, false, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
28
|
+
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
29
|
+
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
30
|
+
subdomain: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
31
|
+
}>>;
|
|
22
32
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
23
33
|
email: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
24
34
|
token: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|