@keystrokehq/zendesk 0.0.7 → 0.0.8
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/custom/jobs.mjs +1 -1
- package/dist/custom/organizations.mjs +1 -1
- package/dist/custom/search.mjs +1 -1
- package/dist/custom/tickets.mjs +1 -1
- package/dist/custom/users.mjs +1 -1
- package/dist/{jobs-Bnu-juJI.mjs → jobs-CK59oLh4.mjs} +2 -2
- package/dist/{organizations-CkUOhxeR.mjs → organizations-B6d9UFNE.mjs} +16 -16
- package/dist/platform/jobs.mjs +1 -1
- package/dist/platform/organizations.mjs +1 -1
- package/dist/platform/search.mjs +1 -1
- package/dist/platform/tickets.mjs +1 -1
- package/dist/platform/users.mjs +1 -1
- package/dist/{search-SvN-I0KL.mjs → search-CtezRdYT.mjs} +2 -2
- package/dist/{tickets-wDcstuX-.mjs → tickets-Cfm1FvkY.mjs} +18 -18
- package/dist/{users-CKVH1BDt.mjs → users-BzkPok3V.mjs} +18 -18
- package/package.json +2 -2
package/dist/custom/jobs.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { t as customGetJobStatus } from "../jobs-
|
|
2
|
+
import { t as customGetJobStatus } from "../jobs-CK59oLh4.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/custom/jobs.ts
|
|
5
5
|
var jobs_exports = /* @__PURE__ */ __exportAll({ getJobStatus: () => customGetJobStatus });
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { a as customDeleteOrganization, c as customUpdateOrganization, i as customCreateOrganization, n as customCountOrganizations, o as customGetOrganization, r as customCreateManyOrganizations, s as customListOrganizations, t as customAutocompleteOrganizations } from "../organizations-
|
|
2
|
+
import { a as customDeleteOrganization, c as customUpdateOrganization, i as customCreateOrganization, n as customCountOrganizations, o as customGetOrganization, r as customCreateManyOrganizations, s as customListOrganizations, t as customAutocompleteOrganizations } from "../organizations-B6d9UFNE.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/custom/organizations.ts
|
|
5
5
|
var organizations_exports = /* @__PURE__ */ __exportAll({
|
package/dist/custom/search.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { n as customSearch, t as customCountSearchResults } from "../search-
|
|
2
|
+
import { n as customSearch, t as customCountSearchResults } from "../search-CtezRdYT.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/custom/search.ts
|
|
5
5
|
var search_exports = /* @__PURE__ */ __exportAll({
|
package/dist/custom/tickets.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { a as customListTickets, c as customUpdateManyTickets, i as customGetTicket, l as customUpdateTicket, n as customCreateTicket, o as customMergeTickets, r as customDeleteTicket, s as customReplyToTicket, t as customCreateManyTickets } from "../tickets-
|
|
2
|
+
import { a as customListTickets, c as customUpdateManyTickets, i as customGetTicket, l as customUpdateTicket, n as customCreateTicket, o as customMergeTickets, r as customDeleteTicket, s as customReplyToTicket, t as customCreateManyTickets } from "../tickets-Cfm1FvkY.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/custom/tickets.ts
|
|
5
5
|
var tickets_exports = /* @__PURE__ */ __exportAll({
|
package/dist/custom/users.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { a as customGetUser, c as customUpdateManyUsers, i as customGetCurrentUser, l as customUpdateUser, n as customCreateUser, o as customListUsers, r as customDeleteUser, s as customSearchUsers, t as customCreateManyUsers } from "../users-
|
|
2
|
+
import { a as customGetUser, c as customUpdateManyUsers, i as customGetCurrentUser, l as customUpdateUser, n as customCreateUser, o as customListUsers, r as customDeleteUser, s as customSearchUsers, t as customCreateManyUsers } from "../users-BzkPok3V.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/custom/users.ts
|
|
5
5
|
var users_exports = /* @__PURE__ */ __exportAll({
|
|
@@ -6,7 +6,7 @@ import { z } from "zod";
|
|
|
6
6
|
//#region src/jobs.ts
|
|
7
7
|
const getJobStatusInputSchema = z.object({ id: z.string().min(1) });
|
|
8
8
|
const platformGetJobStatus = zendeskPlatformOperation({
|
|
9
|
-
id: "
|
|
9
|
+
id: "zendesk-platform.get-job-status",
|
|
10
10
|
name: "Get Zendesk Job Status",
|
|
11
11
|
description: "Get the status of a Zendesk asynchronous job",
|
|
12
12
|
input: getJobStatusInputSchema,
|
|
@@ -19,7 +19,7 @@ const platformGetJobStatus = zendeskPlatformOperation({
|
|
|
19
19
|
}
|
|
20
20
|
});
|
|
21
21
|
const customGetJobStatus = zendeskCustomOperation({
|
|
22
|
-
id: "
|
|
22
|
+
id: "zendesk-platform.get-job-status",
|
|
23
23
|
name: "Get Zendesk Job Status",
|
|
24
24
|
description: "Get the status of a Zendesk asynchronous job",
|
|
25
25
|
input: getJobStatusInputSchema,
|
|
@@ -39,7 +39,7 @@ function mapOrganizationInput(input) {
|
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
41
|
const platformCountOrganizations = zendeskPlatformOperation({
|
|
42
|
-
id: "
|
|
42
|
+
id: "zendesk-platform.count-organizations",
|
|
43
43
|
name: "Count Zendesk Organizations",
|
|
44
44
|
description: "Count organizations in Zendesk Support",
|
|
45
45
|
input: z.object({}),
|
|
@@ -52,7 +52,7 @@ const platformCountOrganizations = zendeskPlatformOperation({
|
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
54
|
const customCountOrganizations = zendeskCustomOperation({
|
|
55
|
-
id: "
|
|
55
|
+
id: "zendesk-platform.count-organizations",
|
|
56
56
|
name: "Count Zendesk Organizations",
|
|
57
57
|
description: "Count organizations in Zendesk Support",
|
|
58
58
|
input: z.object({}),
|
|
@@ -65,7 +65,7 @@ const customCountOrganizations = zendeskCustomOperation({
|
|
|
65
65
|
}
|
|
66
66
|
});
|
|
67
67
|
const platformListOrganizations = zendeskPlatformOperation({
|
|
68
|
-
id: "
|
|
68
|
+
id: "zendesk-platform.list-organizations",
|
|
69
69
|
name: "List Zendesk Organizations",
|
|
70
70
|
description: "List organizations from Zendesk Support",
|
|
71
71
|
input: listOrganizationsInputSchema,
|
|
@@ -82,7 +82,7 @@ const platformListOrganizations = zendeskPlatformOperation({
|
|
|
82
82
|
}
|
|
83
83
|
});
|
|
84
84
|
const customListOrganizations = zendeskCustomOperation({
|
|
85
|
-
id: "
|
|
85
|
+
id: "zendesk-platform.list-organizations",
|
|
86
86
|
name: "List Zendesk Organizations",
|
|
87
87
|
description: "List organizations from Zendesk Support",
|
|
88
88
|
input: listOrganizationsInputSchema,
|
|
@@ -99,7 +99,7 @@ const customListOrganizations = zendeskCustomOperation({
|
|
|
99
99
|
}
|
|
100
100
|
});
|
|
101
101
|
const platformGetOrganization = zendeskPlatformOperation({
|
|
102
|
-
id: "
|
|
102
|
+
id: "zendesk-platform.get-organization",
|
|
103
103
|
name: "Get Zendesk Organization",
|
|
104
104
|
description: "Get a single Zendesk organization by ID",
|
|
105
105
|
input: getOrganizationInputSchema,
|
|
@@ -112,7 +112,7 @@ const platformGetOrganization = zendeskPlatformOperation({
|
|
|
112
112
|
}
|
|
113
113
|
});
|
|
114
114
|
const customGetOrganization = zendeskCustomOperation({
|
|
115
|
-
id: "
|
|
115
|
+
id: "zendesk-platform.get-organization",
|
|
116
116
|
name: "Get Zendesk Organization",
|
|
117
117
|
description: "Get a single Zendesk organization by ID",
|
|
118
118
|
input: getOrganizationInputSchema,
|
|
@@ -125,7 +125,7 @@ const customGetOrganization = zendeskCustomOperation({
|
|
|
125
125
|
}
|
|
126
126
|
});
|
|
127
127
|
const platformAutocompleteOrganizations = zendeskPlatformOperation({
|
|
128
|
-
id: "
|
|
128
|
+
id: "zendesk-platform.autocomplete-organizations",
|
|
129
129
|
name: "Autocomplete Zendesk Organizations",
|
|
130
130
|
description: "Find Zendesk organizations by name prefix",
|
|
131
131
|
input: autocompleteOrganizationsInputSchema,
|
|
@@ -139,7 +139,7 @@ const platformAutocompleteOrganizations = zendeskPlatformOperation({
|
|
|
139
139
|
}
|
|
140
140
|
});
|
|
141
141
|
const customAutocompleteOrganizations = zendeskCustomOperation({
|
|
142
|
-
id: "
|
|
142
|
+
id: "zendesk-platform.autocomplete-organizations",
|
|
143
143
|
name: "Autocomplete Zendesk Organizations",
|
|
144
144
|
description: "Find Zendesk organizations by name prefix",
|
|
145
145
|
input: autocompleteOrganizationsInputSchema,
|
|
@@ -153,7 +153,7 @@ const customAutocompleteOrganizations = zendeskCustomOperation({
|
|
|
153
153
|
}
|
|
154
154
|
});
|
|
155
155
|
const platformCreateOrganization = zendeskPlatformOperation({
|
|
156
|
-
id: "
|
|
156
|
+
id: "zendesk-platform.create-organization",
|
|
157
157
|
name: "Create Zendesk Organization",
|
|
158
158
|
description: "Create a new Zendesk organization",
|
|
159
159
|
input: organizationCreateInputSchema,
|
|
@@ -168,7 +168,7 @@ const platformCreateOrganization = zendeskPlatformOperation({
|
|
|
168
168
|
}
|
|
169
169
|
});
|
|
170
170
|
const customCreateOrganization = zendeskCustomOperation({
|
|
171
|
-
id: "
|
|
171
|
+
id: "zendesk-platform.create-organization",
|
|
172
172
|
name: "Create Zendesk Organization",
|
|
173
173
|
description: "Create a new Zendesk organization",
|
|
174
174
|
input: organizationCreateInputSchema,
|
|
@@ -183,7 +183,7 @@ const customCreateOrganization = zendeskCustomOperation({
|
|
|
183
183
|
}
|
|
184
184
|
});
|
|
185
185
|
const platformUpdateOrganization = zendeskPlatformOperation({
|
|
186
|
-
id: "
|
|
186
|
+
id: "zendesk-platform.update-organization",
|
|
187
187
|
name: "Update Zendesk Organization",
|
|
188
188
|
description: "Update an existing Zendesk organization",
|
|
189
189
|
input: organizationUpdateInputSchema,
|
|
@@ -198,7 +198,7 @@ const platformUpdateOrganization = zendeskPlatformOperation({
|
|
|
198
198
|
}
|
|
199
199
|
});
|
|
200
200
|
const customUpdateOrganization = zendeskCustomOperation({
|
|
201
|
-
id: "
|
|
201
|
+
id: "zendesk-platform.update-organization",
|
|
202
202
|
name: "Update Zendesk Organization",
|
|
203
203
|
description: "Update an existing Zendesk organization",
|
|
204
204
|
input: organizationUpdateInputSchema,
|
|
@@ -213,7 +213,7 @@ const customUpdateOrganization = zendeskCustomOperation({
|
|
|
213
213
|
}
|
|
214
214
|
});
|
|
215
215
|
const platformDeleteOrganization = zendeskPlatformOperation({
|
|
216
|
-
id: "
|
|
216
|
+
id: "zendesk-platform.delete-organization",
|
|
217
217
|
name: "Delete Zendesk Organization",
|
|
218
218
|
description: "Delete a Zendesk organization",
|
|
219
219
|
input: getOrganizationInputSchema,
|
|
@@ -228,7 +228,7 @@ const platformDeleteOrganization = zendeskPlatformOperation({
|
|
|
228
228
|
}
|
|
229
229
|
});
|
|
230
230
|
const customDeleteOrganization = zendeskCustomOperation({
|
|
231
|
-
id: "
|
|
231
|
+
id: "zendesk-platform.delete-organization",
|
|
232
232
|
name: "Delete Zendesk Organization",
|
|
233
233
|
description: "Delete a Zendesk organization",
|
|
234
234
|
input: getOrganizationInputSchema,
|
|
@@ -243,7 +243,7 @@ const customDeleteOrganization = zendeskCustomOperation({
|
|
|
243
243
|
}
|
|
244
244
|
});
|
|
245
245
|
const platformCreateManyOrganizations = zendeskPlatformOperation({
|
|
246
|
-
id: "
|
|
246
|
+
id: "zendesk-platform.create-many-organizations",
|
|
247
247
|
name: "Create Many Zendesk Organizations",
|
|
248
248
|
description: "Create multiple Zendesk organizations asynchronously",
|
|
249
249
|
input: createManyOrganizationsInputSchema,
|
|
@@ -258,7 +258,7 @@ const platformCreateManyOrganizations = zendeskPlatformOperation({
|
|
|
258
258
|
}
|
|
259
259
|
});
|
|
260
260
|
const customCreateManyOrganizations = zendeskCustomOperation({
|
|
261
|
-
id: "
|
|
261
|
+
id: "zendesk-platform.create-many-organizations",
|
|
262
262
|
name: "Create Many Zendesk Organizations",
|
|
263
263
|
description: "Create multiple Zendesk organizations asynchronously",
|
|
264
264
|
input: createManyOrganizationsInputSchema,
|
package/dist/platform/jobs.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { n as platformGetJobStatus } from "../jobs-
|
|
2
|
+
import { n as platformGetJobStatus } from "../jobs-CK59oLh4.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/platform/jobs.ts
|
|
5
5
|
var jobs_exports = /* @__PURE__ */ __exportAll({ getJobStatus: () => platformGetJobStatus });
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { d as platformCreateManyOrganizations, f as platformCreateOrganization, g as platformUpdateOrganization, h as platformListOrganizations, l as platformAutocompleteOrganizations, m as platformGetOrganization, p as platformDeleteOrganization, u as platformCountOrganizations } from "../organizations-
|
|
2
|
+
import { d as platformCreateManyOrganizations, f as platformCreateOrganization, g as platformUpdateOrganization, h as platformListOrganizations, l as platformAutocompleteOrganizations, m as platformGetOrganization, p as platformDeleteOrganization, u as platformCountOrganizations } from "../organizations-B6d9UFNE.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/platform/organizations.ts
|
|
5
5
|
var organizations_exports = /* @__PURE__ */ __exportAll({
|
package/dist/platform/search.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { i as platformSearch, r as platformCountSearchResults } from "../search-
|
|
2
|
+
import { i as platformSearch, r as platformCountSearchResults } from "../search-CtezRdYT.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/platform/search.ts
|
|
5
5
|
var search_exports = /* @__PURE__ */ __exportAll({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { _ as platformUpdateManyTickets, d as platformCreateTicket, f as platformDeleteTicket, g as platformReplyToTicket, h as platformMergeTickets, m as platformListTickets, p as platformGetTicket, u as platformCreateManyTickets, v as platformUpdateTicket } from "../tickets-
|
|
2
|
+
import { _ as platformUpdateManyTickets, d as platformCreateTicket, f as platformDeleteTicket, g as platformReplyToTicket, h as platformMergeTickets, m as platformListTickets, p as platformGetTicket, u as platformCreateManyTickets, v as platformUpdateTicket } from "../tickets-Cfm1FvkY.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/platform/tickets.ts
|
|
5
5
|
var tickets_exports = /* @__PURE__ */ __exportAll({
|
package/dist/platform/users.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as __exportAll } from "../chunk-DQk6qfdC.mjs";
|
|
2
|
-
import { _ as platformUpdateManyUsers, d as platformCreateUser, f as platformDeleteUser, g as platformSearchUsers, h as platformListUsers, m as platformGetUser, p as platformGetCurrentUser, u as platformCreateManyUsers, v as platformUpdateUser } from "../users-
|
|
2
|
+
import { _ as platformUpdateManyUsers, d as platformCreateUser, f as platformDeleteUser, g as platformSearchUsers, h as platformListUsers, m as platformGetUser, p as platformGetCurrentUser, u as platformCreateManyUsers, v as platformUpdateUser } from "../users-BzkPok3V.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/platform/users.ts
|
|
5
5
|
var users_exports = /* @__PURE__ */ __exportAll({
|
|
@@ -53,7 +53,7 @@ const customSearch = zendeskCustomOperation({
|
|
|
53
53
|
}
|
|
54
54
|
});
|
|
55
55
|
const platformCountSearchResults = zendeskPlatformOperation({
|
|
56
|
-
id: "
|
|
56
|
+
id: "zendesk-platform.count-search-results",
|
|
57
57
|
name: "Count Zendesk Search Results",
|
|
58
58
|
description: "Count Zendesk Support search results for a query",
|
|
59
59
|
input: countSearchResultsInputSchema,
|
|
@@ -67,7 +67,7 @@ const platformCountSearchResults = zendeskPlatformOperation({
|
|
|
67
67
|
}
|
|
68
68
|
});
|
|
69
69
|
const customCountSearchResults = zendeskCustomOperation({
|
|
70
|
-
id: "
|
|
70
|
+
id: "zendesk-platform.count-search-results",
|
|
71
71
|
name: "Count Zendesk Search Results",
|
|
72
72
|
description: "Count Zendesk Support search results for a query",
|
|
73
73
|
input: countSearchResultsInputSchema,
|
|
@@ -79,7 +79,7 @@ function mapTicketWriteInput(input) {
|
|
|
79
79
|
};
|
|
80
80
|
}
|
|
81
81
|
const platformGetTicket = zendeskPlatformOperation({
|
|
82
|
-
id: "
|
|
82
|
+
id: "zendesk-platform.get-ticket",
|
|
83
83
|
name: "Get Zendesk Ticket",
|
|
84
84
|
description: "Get a single Zendesk ticket by ID",
|
|
85
85
|
input: getTicketInputSchema,
|
|
@@ -92,7 +92,7 @@ const platformGetTicket = zendeskPlatformOperation({
|
|
|
92
92
|
}
|
|
93
93
|
});
|
|
94
94
|
const customGetTicket = zendeskCustomOperation({
|
|
95
|
-
id: "
|
|
95
|
+
id: "zendesk-platform.get-ticket",
|
|
96
96
|
name: "Get Zendesk Ticket",
|
|
97
97
|
description: "Get a single Zendesk ticket by ID",
|
|
98
98
|
input: getTicketInputSchema,
|
|
@@ -105,7 +105,7 @@ const customGetTicket = zendeskCustomOperation({
|
|
|
105
105
|
}
|
|
106
106
|
});
|
|
107
107
|
const platformListTickets = zendeskPlatformOperation({
|
|
108
|
-
id: "
|
|
108
|
+
id: "zendesk-platform.list-tickets",
|
|
109
109
|
name: "List Zendesk Tickets",
|
|
110
110
|
description: "List Zendesk tickets with pagination controls",
|
|
111
111
|
input: listTicketsInputSchema,
|
|
@@ -125,7 +125,7 @@ const platformListTickets = zendeskPlatformOperation({
|
|
|
125
125
|
}
|
|
126
126
|
});
|
|
127
127
|
const customListTickets = zendeskCustomOperation({
|
|
128
|
-
id: "
|
|
128
|
+
id: "zendesk-platform.list-tickets",
|
|
129
129
|
name: "List Zendesk Tickets",
|
|
130
130
|
description: "List Zendesk tickets with pagination controls",
|
|
131
131
|
input: listTicketsInputSchema,
|
|
@@ -145,7 +145,7 @@ const customListTickets = zendeskCustomOperation({
|
|
|
145
145
|
}
|
|
146
146
|
});
|
|
147
147
|
const platformCreateTicket = zendeskPlatformOperation({
|
|
148
|
-
id: "
|
|
148
|
+
id: "zendesk-platform.create-ticket",
|
|
149
149
|
name: "Create Zendesk Ticket",
|
|
150
150
|
description: "Create a new Zendesk ticket",
|
|
151
151
|
input: ticketCreateInputSchema,
|
|
@@ -160,7 +160,7 @@ const platformCreateTicket = zendeskPlatformOperation({
|
|
|
160
160
|
}
|
|
161
161
|
});
|
|
162
162
|
const customCreateTicket = zendeskCustomOperation({
|
|
163
|
-
id: "
|
|
163
|
+
id: "zendesk-platform.create-ticket",
|
|
164
164
|
name: "Create Zendesk Ticket",
|
|
165
165
|
description: "Create a new Zendesk ticket",
|
|
166
166
|
input: ticketCreateInputSchema,
|
|
@@ -175,7 +175,7 @@ const customCreateTicket = zendeskCustomOperation({
|
|
|
175
175
|
}
|
|
176
176
|
});
|
|
177
177
|
const platformUpdateTicket = zendeskPlatformOperation({
|
|
178
|
-
id: "
|
|
178
|
+
id: "zendesk-platform.update-ticket",
|
|
179
179
|
name: "Update Zendesk Ticket",
|
|
180
180
|
description: "Update an existing Zendesk ticket",
|
|
181
181
|
input: ticketUpdateInputSchema,
|
|
@@ -190,7 +190,7 @@ const platformUpdateTicket = zendeskPlatformOperation({
|
|
|
190
190
|
}
|
|
191
191
|
});
|
|
192
192
|
const customUpdateTicket = zendeskCustomOperation({
|
|
193
|
-
id: "
|
|
193
|
+
id: "zendesk-platform.update-ticket",
|
|
194
194
|
name: "Update Zendesk Ticket",
|
|
195
195
|
description: "Update an existing Zendesk ticket",
|
|
196
196
|
input: ticketUpdateInputSchema,
|
|
@@ -205,7 +205,7 @@ const customUpdateTicket = zendeskCustomOperation({
|
|
|
205
205
|
}
|
|
206
206
|
});
|
|
207
207
|
const platformDeleteTicket = zendeskPlatformOperation({
|
|
208
|
-
id: "
|
|
208
|
+
id: "zendesk-platform.delete-ticket",
|
|
209
209
|
name: "Delete Zendesk Ticket",
|
|
210
210
|
description: "Delete a Zendesk ticket",
|
|
211
211
|
input: getTicketInputSchema,
|
|
@@ -220,7 +220,7 @@ const platformDeleteTicket = zendeskPlatformOperation({
|
|
|
220
220
|
}
|
|
221
221
|
});
|
|
222
222
|
const customDeleteTicket = zendeskCustomOperation({
|
|
223
|
-
id: "
|
|
223
|
+
id: "zendesk-platform.delete-ticket",
|
|
224
224
|
name: "Delete Zendesk Ticket",
|
|
225
225
|
description: "Delete a Zendesk ticket",
|
|
226
226
|
input: getTicketInputSchema,
|
|
@@ -235,7 +235,7 @@ const customDeleteTicket = zendeskCustomOperation({
|
|
|
235
235
|
}
|
|
236
236
|
});
|
|
237
237
|
const platformReplyToTicket = zendeskPlatformOperation({
|
|
238
|
-
id: "
|
|
238
|
+
id: "zendesk-platform.reply-to-ticket",
|
|
239
239
|
name: "Reply To Zendesk Ticket",
|
|
240
240
|
description: "Add a public or private reply to an existing Zendesk ticket",
|
|
241
241
|
input: ticketReplyInputSchema,
|
|
@@ -253,7 +253,7 @@ const platformReplyToTicket = zendeskPlatformOperation({
|
|
|
253
253
|
}
|
|
254
254
|
});
|
|
255
255
|
const customReplyToTicket = zendeskCustomOperation({
|
|
256
|
-
id: "
|
|
256
|
+
id: "zendesk-platform.reply-to-ticket",
|
|
257
257
|
name: "Reply To Zendesk Ticket",
|
|
258
258
|
description: "Add a public or private reply to an existing Zendesk ticket",
|
|
259
259
|
input: ticketReplyInputSchema,
|
|
@@ -271,7 +271,7 @@ const customReplyToTicket = zendeskCustomOperation({
|
|
|
271
271
|
}
|
|
272
272
|
});
|
|
273
273
|
const platformCreateManyTickets = zendeskPlatformOperation({
|
|
274
|
-
id: "
|
|
274
|
+
id: "zendesk-platform.create-many-tickets",
|
|
275
275
|
name: "Create Many Zendesk Tickets",
|
|
276
276
|
description: "Create multiple Zendesk tickets asynchronously",
|
|
277
277
|
input: createManyTicketsInputSchema,
|
|
@@ -286,7 +286,7 @@ const platformCreateManyTickets = zendeskPlatformOperation({
|
|
|
286
286
|
}
|
|
287
287
|
});
|
|
288
288
|
const customCreateManyTickets = zendeskCustomOperation({
|
|
289
|
-
id: "
|
|
289
|
+
id: "zendesk-platform.create-many-tickets",
|
|
290
290
|
name: "Create Many Zendesk Tickets",
|
|
291
291
|
description: "Create multiple Zendesk tickets asynchronously",
|
|
292
292
|
input: createManyTicketsInputSchema,
|
|
@@ -301,7 +301,7 @@ const customCreateManyTickets = zendeskCustomOperation({
|
|
|
301
301
|
}
|
|
302
302
|
});
|
|
303
303
|
const platformUpdateManyTickets = zendeskPlatformOperation({
|
|
304
|
-
id: "
|
|
304
|
+
id: "zendesk-platform.update-many-tickets",
|
|
305
305
|
name: "Update Many Zendesk Tickets",
|
|
306
306
|
description: "Update multiple Zendesk tickets asynchronously",
|
|
307
307
|
input: updateManyTicketsInputSchema,
|
|
@@ -321,7 +321,7 @@ const platformUpdateManyTickets = zendeskPlatformOperation({
|
|
|
321
321
|
}
|
|
322
322
|
});
|
|
323
323
|
const customUpdateManyTickets = zendeskCustomOperation({
|
|
324
|
-
id: "
|
|
324
|
+
id: "zendesk-platform.update-many-tickets",
|
|
325
325
|
name: "Update Many Zendesk Tickets",
|
|
326
326
|
description: "Update multiple Zendesk tickets asynchronously",
|
|
327
327
|
input: updateManyTicketsInputSchema,
|
|
@@ -341,7 +341,7 @@ const customUpdateManyTickets = zendeskCustomOperation({
|
|
|
341
341
|
}
|
|
342
342
|
});
|
|
343
343
|
const platformMergeTickets = zendeskPlatformOperation({
|
|
344
|
-
id: "
|
|
344
|
+
id: "zendesk-platform.merge-tickets",
|
|
345
345
|
name: "Merge Zendesk Tickets",
|
|
346
346
|
description: "Merge one or more source tickets into a target Zendesk ticket",
|
|
347
347
|
input: mergeTicketsInputSchema,
|
|
@@ -362,7 +362,7 @@ const platformMergeTickets = zendeskPlatformOperation({
|
|
|
362
362
|
}
|
|
363
363
|
});
|
|
364
364
|
const customMergeTickets = zendeskCustomOperation({
|
|
365
|
-
id: "
|
|
365
|
+
id: "zendesk-platform.merge-tickets",
|
|
366
366
|
name: "Merge Zendesk Tickets",
|
|
367
367
|
description: "Merge one or more source tickets into a target Zendesk ticket",
|
|
368
368
|
input: mergeTicketsInputSchema,
|
|
@@ -47,7 +47,7 @@ function mapUserInput(input) {
|
|
|
47
47
|
};
|
|
48
48
|
}
|
|
49
49
|
const platformListUsers = zendeskPlatformOperation({
|
|
50
|
-
id: "
|
|
50
|
+
id: "zendesk-platform.list-users",
|
|
51
51
|
name: "List Zendesk Users",
|
|
52
52
|
description: "List users from Zendesk Support",
|
|
53
53
|
input: listUsersInputSchema,
|
|
@@ -65,7 +65,7 @@ const platformListUsers = zendeskPlatformOperation({
|
|
|
65
65
|
}
|
|
66
66
|
});
|
|
67
67
|
const customListUsers = zendeskCustomOperation({
|
|
68
|
-
id: "
|
|
68
|
+
id: "zendesk-platform.list-users",
|
|
69
69
|
name: "List Zendesk Users",
|
|
70
70
|
description: "List users from Zendesk Support",
|
|
71
71
|
input: listUsersInputSchema,
|
|
@@ -83,7 +83,7 @@ const customListUsers = zendeskCustomOperation({
|
|
|
83
83
|
}
|
|
84
84
|
});
|
|
85
85
|
const platformGetUser = zendeskPlatformOperation({
|
|
86
|
-
id: "
|
|
86
|
+
id: "zendesk-platform.get-user",
|
|
87
87
|
name: "Get Zendesk User",
|
|
88
88
|
description: "Get a single Zendesk user by ID",
|
|
89
89
|
input: getUserInputSchema,
|
|
@@ -96,7 +96,7 @@ const platformGetUser = zendeskPlatformOperation({
|
|
|
96
96
|
}
|
|
97
97
|
});
|
|
98
98
|
const customGetUser = zendeskCustomOperation({
|
|
99
|
-
id: "
|
|
99
|
+
id: "zendesk-platform.get-user",
|
|
100
100
|
name: "Get Zendesk User",
|
|
101
101
|
description: "Get a single Zendesk user by ID",
|
|
102
102
|
input: getUserInputSchema,
|
|
@@ -109,7 +109,7 @@ const customGetUser = zendeskCustomOperation({
|
|
|
109
109
|
}
|
|
110
110
|
});
|
|
111
111
|
const platformGetCurrentUser = zendeskPlatformOperation({
|
|
112
|
-
id: "
|
|
112
|
+
id: "zendesk-platform.get-current-user",
|
|
113
113
|
name: "Get Current Zendesk User",
|
|
114
114
|
description: "Get the currently authenticated Zendesk user",
|
|
115
115
|
input: z.object({}),
|
|
@@ -122,7 +122,7 @@ const platformGetCurrentUser = zendeskPlatformOperation({
|
|
|
122
122
|
}
|
|
123
123
|
});
|
|
124
124
|
const customGetCurrentUser = zendeskCustomOperation({
|
|
125
|
-
id: "
|
|
125
|
+
id: "zendesk-platform.get-current-user",
|
|
126
126
|
name: "Get Current Zendesk User",
|
|
127
127
|
description: "Get the currently authenticated Zendesk user",
|
|
128
128
|
input: z.object({}),
|
|
@@ -135,7 +135,7 @@ const customGetCurrentUser = zendeskCustomOperation({
|
|
|
135
135
|
}
|
|
136
136
|
});
|
|
137
137
|
const platformSearchUsers = zendeskPlatformOperation({
|
|
138
|
-
id: "
|
|
138
|
+
id: "zendesk-platform.search-users",
|
|
139
139
|
name: "Search Zendesk Users",
|
|
140
140
|
description: "Search Zendesk users with a free-text query",
|
|
141
141
|
input: searchUsersInputSchema,
|
|
@@ -149,7 +149,7 @@ const platformSearchUsers = zendeskPlatformOperation({
|
|
|
149
149
|
}
|
|
150
150
|
});
|
|
151
151
|
const customSearchUsers = zendeskCustomOperation({
|
|
152
|
-
id: "
|
|
152
|
+
id: "zendesk-platform.search-users",
|
|
153
153
|
name: "Search Zendesk Users",
|
|
154
154
|
description: "Search Zendesk users with a free-text query",
|
|
155
155
|
input: searchUsersInputSchema,
|
|
@@ -163,7 +163,7 @@ const customSearchUsers = zendeskCustomOperation({
|
|
|
163
163
|
}
|
|
164
164
|
});
|
|
165
165
|
const platformCreateUser = zendeskPlatformOperation({
|
|
166
|
-
id: "
|
|
166
|
+
id: "zendesk-platform.create-user",
|
|
167
167
|
name: "Create Zendesk User",
|
|
168
168
|
description: "Create a new Zendesk user",
|
|
169
169
|
input: userCreateInputSchema,
|
|
@@ -178,7 +178,7 @@ const platformCreateUser = zendeskPlatformOperation({
|
|
|
178
178
|
}
|
|
179
179
|
});
|
|
180
180
|
const customCreateUser = zendeskCustomOperation({
|
|
181
|
-
id: "
|
|
181
|
+
id: "zendesk-platform.create-user",
|
|
182
182
|
name: "Create Zendesk User",
|
|
183
183
|
description: "Create a new Zendesk user",
|
|
184
184
|
input: userCreateInputSchema,
|
|
@@ -193,7 +193,7 @@ const customCreateUser = zendeskCustomOperation({
|
|
|
193
193
|
}
|
|
194
194
|
});
|
|
195
195
|
const platformUpdateUser = zendeskPlatformOperation({
|
|
196
|
-
id: "
|
|
196
|
+
id: "zendesk-platform.update-user",
|
|
197
197
|
name: "Update Zendesk User",
|
|
198
198
|
description: "Update an existing Zendesk user",
|
|
199
199
|
input: userUpdateInputSchema,
|
|
@@ -208,7 +208,7 @@ const platformUpdateUser = zendeskPlatformOperation({
|
|
|
208
208
|
}
|
|
209
209
|
});
|
|
210
210
|
const customUpdateUser = zendeskCustomOperation({
|
|
211
|
-
id: "
|
|
211
|
+
id: "zendesk-platform.update-user",
|
|
212
212
|
name: "Update Zendesk User",
|
|
213
213
|
description: "Update an existing Zendesk user",
|
|
214
214
|
input: userUpdateInputSchema,
|
|
@@ -223,7 +223,7 @@ const customUpdateUser = zendeskCustomOperation({
|
|
|
223
223
|
}
|
|
224
224
|
});
|
|
225
225
|
const platformDeleteUser = zendeskPlatformOperation({
|
|
226
|
-
id: "
|
|
226
|
+
id: "zendesk-platform.delete-user",
|
|
227
227
|
name: "Delete Zendesk User",
|
|
228
228
|
description: "Delete a Zendesk user",
|
|
229
229
|
input: deleteUserInputSchema,
|
|
@@ -238,7 +238,7 @@ const platformDeleteUser = zendeskPlatformOperation({
|
|
|
238
238
|
}
|
|
239
239
|
});
|
|
240
240
|
const customDeleteUser = zendeskCustomOperation({
|
|
241
|
-
id: "
|
|
241
|
+
id: "zendesk-platform.delete-user",
|
|
242
242
|
name: "Delete Zendesk User",
|
|
243
243
|
description: "Delete a Zendesk user",
|
|
244
244
|
input: deleteUserInputSchema,
|
|
@@ -253,7 +253,7 @@ const customDeleteUser = zendeskCustomOperation({
|
|
|
253
253
|
}
|
|
254
254
|
});
|
|
255
255
|
const platformCreateManyUsers = zendeskPlatformOperation({
|
|
256
|
-
id: "
|
|
256
|
+
id: "zendesk-platform.create-many-users",
|
|
257
257
|
name: "Create Many Zendesk Users",
|
|
258
258
|
description: "Create multiple Zendesk users asynchronously",
|
|
259
259
|
input: createManyUsersInputSchema,
|
|
@@ -268,7 +268,7 @@ const platformCreateManyUsers = zendeskPlatformOperation({
|
|
|
268
268
|
}
|
|
269
269
|
});
|
|
270
270
|
const customCreateManyUsers = zendeskCustomOperation({
|
|
271
|
-
id: "
|
|
271
|
+
id: "zendesk-platform.create-many-users",
|
|
272
272
|
name: "Create Many Zendesk Users",
|
|
273
273
|
description: "Create multiple Zendesk users asynchronously",
|
|
274
274
|
input: createManyUsersInputSchema,
|
|
@@ -283,7 +283,7 @@ const customCreateManyUsers = zendeskCustomOperation({
|
|
|
283
283
|
}
|
|
284
284
|
});
|
|
285
285
|
const platformUpdateManyUsers = zendeskPlatformOperation({
|
|
286
|
-
id: "
|
|
286
|
+
id: "zendesk-platform.update-many-users",
|
|
287
287
|
name: "Update Many Zendesk Users",
|
|
288
288
|
description: "Update multiple Zendesk users asynchronously",
|
|
289
289
|
input: updateManyUsersInputSchema,
|
|
@@ -301,7 +301,7 @@ const platformUpdateManyUsers = zendeskPlatformOperation({
|
|
|
301
301
|
}
|
|
302
302
|
});
|
|
303
303
|
const customUpdateManyUsers = zendeskCustomOperation({
|
|
304
|
-
id: "
|
|
304
|
+
id: "zendesk-platform.update-many-users",
|
|
305
305
|
name: "Update Many Zendesk Users",
|
|
306
306
|
description: "Update multiple Zendesk users asynchronously",
|
|
307
307
|
input: updateManyUsersInputSchema,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/zendesk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"LICENSE"
|
|
133
133
|
],
|
|
134
134
|
"dependencies": {
|
|
135
|
-
"@keystrokehq/integration-authoring": "^0.0.
|
|
135
|
+
"@keystrokehq/integration-authoring": "^0.0.8",
|
|
136
136
|
"zod": "^4.3.6"
|
|
137
137
|
},
|
|
138
138
|
"peerDependencies": {
|