-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.ts
More file actions
354 lines (333 loc) · 14.7 KB
/
Copy pathClient.ts
File metadata and controls
354 lines (333 loc) · 14.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
// This file was auto-generated by Fern from our API Definition.
import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js";
import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../BaseClient.js";
import { mergeHeaders } from "../../../../core/headers.js";
import * as core from "../../../../core/index.js";
import { mergeAdditionalBodyParameters } from "../../../../core/requestBody.js";
import * as environments from "../../../../environments.js";
import { handleNonStatusCodeError } from "../../../../errors/handleNonStatusCodeError.js";
import * as errors from "../../../../errors/index.js";
import * as AgentlineApi from "../../../index.js";
export declare namespace WebhooksClient {
export type Options = BaseClientOptions;
export interface RequestOptions extends BaseRequestOptions {}
}
export class WebhooksClient {
protected readonly _options: NormalizedClientOptionsWithAuth<WebhooksClient.Options>;
constructor(options: WebhooksClient.Options = {}) {
this._options = normalizeClientOptionsWithAuth(options);
}
/**
* List the account's per-agent webhook configuration(s).
*
* Secrets are **masked**. Pass `agent_id` to inspect a single agent's webhook.
* The full secret is only ever shown once, on the POST that creates/replaces it.
*
* @param {AgentlineApi.ListWebhooksRequest} request
* @param {WebhooksClient.RequestOptions} requestOptions - Request-specific configuration.
*
* @throws {@link AgentlineApi.UnprocessableEntityError}
* @throws {@link errors.AgentlineApiError}
* @throws {@link errors.AgentlineApiTimeoutError}
*
* @example
* await client.webhooks.list()
*/
public list(
request: AgentlineApi.ListWebhooksRequest = {},
requestOptions?: WebhooksClient.RequestOptions,
): core.HttpResponsePromise<unknown> {
return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions));
}
private async __list(
request: AgentlineApi.ListWebhooksRequest = {},
requestOptions?: WebhooksClient.RequestOptions,
): Promise<core.WithRawResponse<unknown>> {
const { agent_id: agentId } = request;
const _queryParams: Record<string, unknown> = {
agent_id: agentId,
};
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
_authRequest.headers,
this._options?.headers,
requestOptions?.headers,
);
const _response = await core.fetcher({
url: core.url.join(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.AgentlineApiEnvironment.Production,
"v1/webhooks",
),
method: "GET",
headers: _headers,
queryString: core.url
.queryBuilder()
.addMany(_queryParams)
.mergeAdditional(requestOptions?.queryParams)
.build(),
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
abortSignal: requestOptions?.abortSignal,
fetchFn: this._options?.fetch,
logging: this._options.logging,
});
if (_response.ok) {
return { data: _response.body, rawResponse: _response.rawResponse };
}
if (_response.error.reason === "status-code") {
switch (_response.error.statusCode) {
case 422:
throw new AgentlineApi.UnprocessableEntityError(
_response.error.body as AgentlineApi.HttpValidationError,
_response.rawResponse,
);
default:
throw new errors.AgentlineApiError({
statusCode: _response.error.statusCode,
body: _response.error.body,
rawResponse: _response.rawResponse,
});
}
}
return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/v1/webhooks");
}
/**
* Create or replace an agent's webhook.
*
* The configured URL receives ALL of that agent's event types — call lifecycle
* (`call.received`, `call.completed`, `call.failed`), SMS (`sms.received`),
* and future events — as signed JSON POSTs. Each agent may have at most one
* webhook; POSTing again replaces it.
*
* - `agent_id`: the agent whose events this webhook receives (required).
* - `secret`: HMAC signing secret. Omit to auto-generate.
*
* The response returns the full `secret` **once** — store it to verify the
* signature header on deliveries.
*
* @param {AgentlineApi.WebhookConfig} request
* @param {WebhooksClient.RequestOptions} requestOptions - Request-specific configuration.
*
* @throws {@link AgentlineApi.UnprocessableEntityError}
* @throws {@link errors.AgentlineApiError}
* @throws {@link errors.AgentlineApiTimeoutError}
*
* @example
* await client.webhooks.set({
* url: "url",
* agent_id: "agent_id"
* })
*/
public set(
request: AgentlineApi.WebhookConfig,
requestOptions?: WebhooksClient.RequestOptions,
): core.HttpResponsePromise<AgentlineApi.WebhookCreated> {
return core.HttpResponsePromise.fromPromise(this.__set(request, requestOptions));
}
private async __set(
request: AgentlineApi.WebhookConfig,
requestOptions?: WebhooksClient.RequestOptions,
): Promise<core.WithRawResponse<AgentlineApi.WebhookCreated>> {
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
_authRequest.headers,
this._options?.headers,
requestOptions?.headers,
);
const _response = await core.fetcher({
url: core.url.join(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.AgentlineApiEnvironment.Production,
"v1/webhooks",
),
method: "POST",
headers: _headers,
contentType: "application/json",
queryString: core.url.queryBuilder().mergeAdditional(requestOptions?.queryParams).build(),
requestType: "json",
body: mergeAdditionalBodyParameters(request, requestOptions?.additionalBodyParameters),
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
abortSignal: requestOptions?.abortSignal,
fetchFn: this._options?.fetch,
logging: this._options.logging,
});
if (_response.ok) {
return { data: _response.body as AgentlineApi.WebhookCreated, rawResponse: _response.rawResponse };
}
if (_response.error.reason === "status-code") {
switch (_response.error.statusCode) {
case 422:
throw new AgentlineApi.UnprocessableEntityError(
_response.error.body as AgentlineApi.HttpValidationError,
_response.rawResponse,
);
default:
throw new errors.AgentlineApiError({
statusCode: _response.error.statusCode,
body: _response.error.body,
rawResponse: _response.rawResponse,
});
}
}
return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/v1/webhooks");
}
/**
* Remove an agent's webhook. No events for that agent will be delivered via
* HTTP afterwards; they remain available via GET /v1/events (the mailbox).
*
* @param {AgentlineApi.DeleteWebhooksRequest} request
* @param {WebhooksClient.RequestOptions} requestOptions - Request-specific configuration.
*
* @throws {@link AgentlineApi.UnprocessableEntityError}
* @throws {@link errors.AgentlineApiError}
* @throws {@link errors.AgentlineApiTimeoutError}
*
* @example
* await client.webhooks.delete({
* agent_id: "agent_id"
* })
*/
public delete(
request: AgentlineApi.DeleteWebhooksRequest,
requestOptions?: WebhooksClient.RequestOptions,
): core.HttpResponsePromise<unknown> {
return core.HttpResponsePromise.fromPromise(this.__delete(request, requestOptions));
}
private async __delete(
request: AgentlineApi.DeleteWebhooksRequest,
requestOptions?: WebhooksClient.RequestOptions,
): Promise<core.WithRawResponse<unknown>> {
const { agent_id: agentId } = request;
const _queryParams: Record<string, unknown> = {
agent_id: agentId,
};
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
_authRequest.headers,
this._options?.headers,
requestOptions?.headers,
);
const _response = await core.fetcher({
url: core.url.join(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.AgentlineApiEnvironment.Production,
"v1/webhooks",
),
method: "DELETE",
headers: _headers,
queryString: core.url
.queryBuilder()
.addMany(_queryParams)
.mergeAdditional(requestOptions?.queryParams)
.build(),
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
abortSignal: requestOptions?.abortSignal,
fetchFn: this._options?.fetch,
logging: this._options.logging,
});
if (_response.ok) {
return { data: _response.body, rawResponse: _response.rawResponse };
}
if (_response.error.reason === "status-code") {
switch (_response.error.statusCode) {
case 422:
throw new AgentlineApi.UnprocessableEntityError(
_response.error.body as AgentlineApi.HttpValidationError,
_response.rawResponse,
);
default:
throw new errors.AgentlineApiError({
statusCode: _response.error.statusCode,
body: _response.error.body,
rawResponse: _response.rawResponse,
});
}
}
return handleNonStatusCodeError(_response.error, _response.rawResponse, "DELETE", "/v1/webhooks");
}
/**
* Fire a signed `webhook.test` event to the agent's webhook.
*
* Uses the exact same event bus (publish_event) that real telephony events use,
* so a successful delivery confirms the entire pipeline is wired correctly.
* Returns 404 if no webhook is configured for the agent.
*
* @param {AgentlineApi.TestWebhooksRequest} request
* @param {WebhooksClient.RequestOptions} requestOptions - Request-specific configuration.
*
* @throws {@link AgentlineApi.UnprocessableEntityError}
* @throws {@link errors.AgentlineApiError}
* @throws {@link errors.AgentlineApiTimeoutError}
*
* @example
* await client.webhooks.test({
* agent_id: "agent_id"
* })
*/
public test(
request: AgentlineApi.TestWebhooksRequest,
requestOptions?: WebhooksClient.RequestOptions,
): core.HttpResponsePromise<unknown> {
return core.HttpResponsePromise.fromPromise(this.__test(request, requestOptions));
}
private async __test(
request: AgentlineApi.TestWebhooksRequest,
requestOptions?: WebhooksClient.RequestOptions,
): Promise<core.WithRawResponse<unknown>> {
const { agent_id: agentId } = request;
const _queryParams: Record<string, unknown> = {
agent_id: agentId,
};
const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest();
const _headers: core.Fetcher.Args["headers"] = mergeHeaders(
_authRequest.headers,
this._options?.headers,
requestOptions?.headers,
);
const _response = await core.fetcher({
url: core.url.join(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.AgentlineApiEnvironment.Production,
"v1/webhooks/test",
),
method: "POST",
headers: _headers,
queryString: core.url
.queryBuilder()
.addMany(_queryParams)
.mergeAdditional(requestOptions?.queryParams)
.build(),
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
abortSignal: requestOptions?.abortSignal,
fetchFn: this._options?.fetch,
logging: this._options.logging,
});
if (_response.ok) {
return { data: _response.body, rawResponse: _response.rawResponse };
}
if (_response.error.reason === "status-code") {
switch (_response.error.statusCode) {
case 422:
throw new AgentlineApi.UnprocessableEntityError(
_response.error.body as AgentlineApi.HttpValidationError,
_response.rawResponse,
);
default:
throw new errors.AgentlineApiError({
statusCode: _response.error.statusCode,
body: _response.error.body,
rawResponse: _response.rawResponse,
});
}
}
return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/v1/webhooks/test");
}
}