@gtmi/ramp-dialog-client 0.0.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/LICENSE +21 -0
- package/README.md +44 -0
- package/dist/es/index.d.mts +769 -0
- package/dist/es/index.mjs +1042 -0
- package/package.json +46 -0
- package/src/client.test.ts +39 -0
- package/src/client.ts +15 -0
- package/src/client.types.ts +11 -0
- package/src/generated/client/client.gen.ts +277 -0
- package/src/generated/client/index.ts +27 -0
- package/src/generated/client/types.gen.ts +214 -0
- package/src/generated/client/utils.gen.ts +316 -0
- package/src/generated/client.gen.ts +18 -0
- package/src/generated/core/auth.gen.ts +48 -0
- package/src/generated/core/bodySerializer.gen.ts +82 -0
- package/src/generated/core/params.gen.ts +178 -0
- package/src/generated/core/pathSerializer.gen.ts +171 -0
- package/src/generated/core/queryKeySerializer.gen.ts +117 -0
- package/src/generated/core/serverSentEvents.gen.ts +242 -0
- package/src/generated/core/types.gen.ts +110 -0
- package/src/generated/core/utils.gen.ts +140 -0
- package/src/generated/index.ts +64 -0
- package/src/generated/sdk.gen.ts +408 -0
- package/src/generated/types.gen.ts +322 -0
- package/src/generated/zod.gen.ts +38 -0
- package/src/index.ts +7 -0
|
@@ -0,0 +1,1042 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
|
|
3
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
4
|
+
const jsonBodySerializer = {
|
|
5
|
+
bodySerializer: (body)=>JSON.stringify(body, (_key, value)=>typeof value === 'bigint' ? value.toString() : value)
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
9
|
+
function createSseClient({ onRequest, onSseError, onSseEvent, responseTransformer, responseValidator, sseDefaultRetryDelay, sseMaxRetryAttempts, sseMaxRetryDelay, sseSleepFn, url, ...options }) {
|
|
10
|
+
let lastEventId;
|
|
11
|
+
const sleep = sseSleepFn ?? ((ms)=>new Promise((resolve)=>setTimeout(resolve, ms)));
|
|
12
|
+
const createStream = async function*() {
|
|
13
|
+
let retryDelay = sseDefaultRetryDelay ?? 3000;
|
|
14
|
+
let attempt = 0;
|
|
15
|
+
const signal = options.signal ?? new AbortController().signal;
|
|
16
|
+
while(true){
|
|
17
|
+
if (signal.aborted) break;
|
|
18
|
+
attempt++;
|
|
19
|
+
const headers = options.headers instanceof Headers ? options.headers : new Headers(options.headers);
|
|
20
|
+
if (lastEventId !== undefined) {
|
|
21
|
+
headers.set('Last-Event-ID', lastEventId);
|
|
22
|
+
}
|
|
23
|
+
try {
|
|
24
|
+
const requestInit = {
|
|
25
|
+
redirect: 'follow',
|
|
26
|
+
...options,
|
|
27
|
+
body: options.serializedBody,
|
|
28
|
+
headers,
|
|
29
|
+
signal
|
|
30
|
+
};
|
|
31
|
+
let request = new Request(url, requestInit);
|
|
32
|
+
if (onRequest) {
|
|
33
|
+
request = await onRequest(url, requestInit);
|
|
34
|
+
}
|
|
35
|
+
// fetch must be assigned here, otherwise it would throw the error:
|
|
36
|
+
// TypeError: Failed to execute 'fetch' on 'Window': Illegal invocation
|
|
37
|
+
const _fetch = options.fetch ?? globalThis.fetch;
|
|
38
|
+
const response = await _fetch(request);
|
|
39
|
+
if (!response.ok) throw new Error(`SSE failed: ${response.status} ${response.statusText}`);
|
|
40
|
+
if (!response.body) throw new Error('No body in SSE response');
|
|
41
|
+
const reader = response.body.pipeThrough(new TextDecoderStream()).getReader();
|
|
42
|
+
let buffer = '';
|
|
43
|
+
const abortHandler = ()=>{
|
|
44
|
+
try {
|
|
45
|
+
reader.cancel();
|
|
46
|
+
} catch {
|
|
47
|
+
// noop
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
signal.addEventListener('abort', abortHandler);
|
|
51
|
+
try {
|
|
52
|
+
while(true){
|
|
53
|
+
const { done, value } = await reader.read();
|
|
54
|
+
if (done) break;
|
|
55
|
+
buffer += value;
|
|
56
|
+
buffer = buffer.replace(/\r\n?/g, '\n'); // normalize line endings
|
|
57
|
+
const chunks = buffer.split('\n\n');
|
|
58
|
+
buffer = chunks.pop() ?? '';
|
|
59
|
+
for (const chunk of chunks){
|
|
60
|
+
const lines = chunk.split('\n');
|
|
61
|
+
const dataLines = [];
|
|
62
|
+
let eventName;
|
|
63
|
+
for (const line of lines){
|
|
64
|
+
if (line.startsWith('data:')) {
|
|
65
|
+
dataLines.push(line.replace(/^data:\s*/, ''));
|
|
66
|
+
} else if (line.startsWith('event:')) {
|
|
67
|
+
eventName = line.replace(/^event:\s*/, '');
|
|
68
|
+
} else if (line.startsWith('id:')) {
|
|
69
|
+
lastEventId = line.replace(/^id:\s*/, '');
|
|
70
|
+
} else if (line.startsWith('retry:')) {
|
|
71
|
+
const parsed = Number.parseInt(line.replace(/^retry:\s*/, ''), 10);
|
|
72
|
+
if (!Number.isNaN(parsed)) {
|
|
73
|
+
retryDelay = parsed;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
let data;
|
|
78
|
+
let parsedJson = false;
|
|
79
|
+
if (dataLines.length) {
|
|
80
|
+
const rawData = dataLines.join('\n');
|
|
81
|
+
try {
|
|
82
|
+
data = JSON.parse(rawData);
|
|
83
|
+
parsedJson = true;
|
|
84
|
+
} catch {
|
|
85
|
+
data = rawData;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
if (parsedJson) {
|
|
89
|
+
if (responseValidator) {
|
|
90
|
+
await responseValidator(data);
|
|
91
|
+
}
|
|
92
|
+
if (responseTransformer) {
|
|
93
|
+
data = await responseTransformer(data);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
onSseEvent?.({
|
|
97
|
+
data,
|
|
98
|
+
event: eventName,
|
|
99
|
+
id: lastEventId,
|
|
100
|
+
retry: retryDelay
|
|
101
|
+
});
|
|
102
|
+
if (dataLines.length) {
|
|
103
|
+
yield data;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
} finally{
|
|
108
|
+
signal.removeEventListener('abort', abortHandler);
|
|
109
|
+
reader.releaseLock();
|
|
110
|
+
}
|
|
111
|
+
break; // exit loop on normal completion
|
|
112
|
+
} catch (error) {
|
|
113
|
+
// connection failed or aborted; retry after delay
|
|
114
|
+
onSseError?.(error);
|
|
115
|
+
if (sseMaxRetryAttempts !== undefined && attempt >= sseMaxRetryAttempts) {
|
|
116
|
+
break; // stop after firing error
|
|
117
|
+
}
|
|
118
|
+
// exponential backoff: double retry each attempt, cap at 30s
|
|
119
|
+
const backoff = Math.min(retryDelay * 2 ** (attempt - 1), sseMaxRetryDelay ?? 30000);
|
|
120
|
+
await sleep(backoff);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
};
|
|
124
|
+
const stream = createStream();
|
|
125
|
+
return {
|
|
126
|
+
stream
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
131
|
+
const separatorArrayExplode = (style)=>{
|
|
132
|
+
switch(style){
|
|
133
|
+
case 'label':
|
|
134
|
+
return '.';
|
|
135
|
+
case 'matrix':
|
|
136
|
+
return ';';
|
|
137
|
+
case 'simple':
|
|
138
|
+
return ',';
|
|
139
|
+
default:
|
|
140
|
+
return '&';
|
|
141
|
+
}
|
|
142
|
+
};
|
|
143
|
+
const separatorArrayNoExplode = (style)=>{
|
|
144
|
+
switch(style){
|
|
145
|
+
case 'form':
|
|
146
|
+
return ',';
|
|
147
|
+
case 'pipeDelimited':
|
|
148
|
+
return '|';
|
|
149
|
+
case 'spaceDelimited':
|
|
150
|
+
return '%20';
|
|
151
|
+
default:
|
|
152
|
+
return ',';
|
|
153
|
+
}
|
|
154
|
+
};
|
|
155
|
+
const separatorObjectExplode = (style)=>{
|
|
156
|
+
switch(style){
|
|
157
|
+
case 'label':
|
|
158
|
+
return '.';
|
|
159
|
+
case 'matrix':
|
|
160
|
+
return ';';
|
|
161
|
+
case 'simple':
|
|
162
|
+
return ',';
|
|
163
|
+
default:
|
|
164
|
+
return '&';
|
|
165
|
+
}
|
|
166
|
+
};
|
|
167
|
+
const serializeArrayParam = ({ allowReserved, explode, name, style, value })=>{
|
|
168
|
+
if (!explode) {
|
|
169
|
+
const joinedValues = (allowReserved ? value : value.map((v)=>encodeURIComponent(v))).join(separatorArrayNoExplode(style));
|
|
170
|
+
switch(style){
|
|
171
|
+
case 'label':
|
|
172
|
+
return `.${joinedValues}`;
|
|
173
|
+
case 'matrix':
|
|
174
|
+
return `;${name}=${joinedValues}`;
|
|
175
|
+
case 'simple':
|
|
176
|
+
return joinedValues;
|
|
177
|
+
default:
|
|
178
|
+
return `${name}=${joinedValues}`;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
const separator = separatorArrayExplode(style);
|
|
182
|
+
const joinedValues = value.map((v)=>{
|
|
183
|
+
if (style === 'label' || style === 'simple') {
|
|
184
|
+
return allowReserved ? v : encodeURIComponent(v);
|
|
185
|
+
}
|
|
186
|
+
return serializePrimitiveParam({
|
|
187
|
+
allowReserved,
|
|
188
|
+
name,
|
|
189
|
+
value: v
|
|
190
|
+
});
|
|
191
|
+
}).join(separator);
|
|
192
|
+
return style === 'label' || style === 'matrix' ? separator + joinedValues : joinedValues;
|
|
193
|
+
};
|
|
194
|
+
const serializePrimitiveParam = ({ allowReserved, name, value })=>{
|
|
195
|
+
if (value === undefined || value === null) {
|
|
196
|
+
return '';
|
|
197
|
+
}
|
|
198
|
+
if (typeof value === 'object') {
|
|
199
|
+
throw new Error('Deeply-nested arrays/objects aren’t supported. Provide your own `querySerializer()` to handle these.');
|
|
200
|
+
}
|
|
201
|
+
return `${name}=${allowReserved ? value : encodeURIComponent(value)}`;
|
|
202
|
+
};
|
|
203
|
+
const serializeObjectParam = ({ allowReserved, explode, name, style, value, valueOnly })=>{
|
|
204
|
+
if (value instanceof Date) {
|
|
205
|
+
return valueOnly ? value.toISOString() : `${name}=${value.toISOString()}`;
|
|
206
|
+
}
|
|
207
|
+
if (style !== 'deepObject' && !explode) {
|
|
208
|
+
let values = [];
|
|
209
|
+
Object.entries(value).forEach(([key, v])=>{
|
|
210
|
+
values = [
|
|
211
|
+
...values,
|
|
212
|
+
key,
|
|
213
|
+
allowReserved ? v : encodeURIComponent(v)
|
|
214
|
+
];
|
|
215
|
+
});
|
|
216
|
+
const joinedValues = values.join(',');
|
|
217
|
+
switch(style){
|
|
218
|
+
case 'form':
|
|
219
|
+
return `${name}=${joinedValues}`;
|
|
220
|
+
case 'label':
|
|
221
|
+
return `.${joinedValues}`;
|
|
222
|
+
case 'matrix':
|
|
223
|
+
return `;${name}=${joinedValues}`;
|
|
224
|
+
default:
|
|
225
|
+
return joinedValues;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
const separator = separatorObjectExplode(style);
|
|
229
|
+
const joinedValues = Object.entries(value).map(([key, v])=>serializePrimitiveParam({
|
|
230
|
+
allowReserved,
|
|
231
|
+
name: style === 'deepObject' ? `${name}[${key}]` : key,
|
|
232
|
+
value: v
|
|
233
|
+
})).join(separator);
|
|
234
|
+
return style === 'label' || style === 'matrix' ? separator + joinedValues : joinedValues;
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
238
|
+
const PATH_PARAM_RE = /\{[^{}]+\}/g;
|
|
239
|
+
const defaultPathSerializer = ({ path, url: _url })=>{
|
|
240
|
+
let url = _url;
|
|
241
|
+
const matches = _url.match(PATH_PARAM_RE);
|
|
242
|
+
if (matches) {
|
|
243
|
+
for (const match of matches){
|
|
244
|
+
let explode = false;
|
|
245
|
+
let name = match.substring(1, match.length - 1);
|
|
246
|
+
let style = 'simple';
|
|
247
|
+
if (name.endsWith('*')) {
|
|
248
|
+
explode = true;
|
|
249
|
+
name = name.substring(0, name.length - 1);
|
|
250
|
+
}
|
|
251
|
+
if (name.startsWith('.')) {
|
|
252
|
+
name = name.substring(1);
|
|
253
|
+
style = 'label';
|
|
254
|
+
} else if (name.startsWith(';')) {
|
|
255
|
+
name = name.substring(1);
|
|
256
|
+
style = 'matrix';
|
|
257
|
+
}
|
|
258
|
+
const value = path[name];
|
|
259
|
+
if (value === undefined || value === null) {
|
|
260
|
+
continue;
|
|
261
|
+
}
|
|
262
|
+
if (Array.isArray(value)) {
|
|
263
|
+
url = url.replace(match, serializeArrayParam({
|
|
264
|
+
explode,
|
|
265
|
+
name,
|
|
266
|
+
style,
|
|
267
|
+
value
|
|
268
|
+
}));
|
|
269
|
+
continue;
|
|
270
|
+
}
|
|
271
|
+
if (typeof value === 'object') {
|
|
272
|
+
url = url.replace(match, serializeObjectParam({
|
|
273
|
+
explode,
|
|
274
|
+
name,
|
|
275
|
+
style,
|
|
276
|
+
value: value,
|
|
277
|
+
valueOnly: true
|
|
278
|
+
}));
|
|
279
|
+
continue;
|
|
280
|
+
}
|
|
281
|
+
if (style === 'matrix') {
|
|
282
|
+
url = url.replace(match, `;${serializePrimitiveParam({
|
|
283
|
+
name,
|
|
284
|
+
value: value
|
|
285
|
+
})}`);
|
|
286
|
+
continue;
|
|
287
|
+
}
|
|
288
|
+
const replaceValue = encodeURIComponent(style === 'label' ? `.${value}` : value);
|
|
289
|
+
url = url.replace(match, replaceValue);
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
return url;
|
|
293
|
+
};
|
|
294
|
+
const getUrl = ({ baseUrl, path, query, querySerializer, url: _url })=>{
|
|
295
|
+
const pathUrl = _url.startsWith('/') ? _url : `/${_url}`;
|
|
296
|
+
let url = (baseUrl ?? '') + pathUrl;
|
|
297
|
+
if (path) {
|
|
298
|
+
url = defaultPathSerializer({
|
|
299
|
+
path,
|
|
300
|
+
url
|
|
301
|
+
});
|
|
302
|
+
}
|
|
303
|
+
let search = query ? querySerializer(query) : '';
|
|
304
|
+
if (search.startsWith('?')) {
|
|
305
|
+
search = search.substring(1);
|
|
306
|
+
}
|
|
307
|
+
if (search) {
|
|
308
|
+
url += `?${search}`;
|
|
309
|
+
}
|
|
310
|
+
return url;
|
|
311
|
+
};
|
|
312
|
+
function getValidRequestBody(options) {
|
|
313
|
+
const hasBody = options.body !== undefined;
|
|
314
|
+
const isSerializedBody = hasBody && options.bodySerializer;
|
|
315
|
+
if (isSerializedBody) {
|
|
316
|
+
if ('serializedBody' in options) {
|
|
317
|
+
const hasSerializedBody = options.serializedBody !== undefined && options.serializedBody !== '';
|
|
318
|
+
return hasSerializedBody ? options.serializedBody : null;
|
|
319
|
+
}
|
|
320
|
+
// not all clients implement a serializedBody property (i.e., client-axios)
|
|
321
|
+
return options.body !== '' ? options.body : null;
|
|
322
|
+
}
|
|
323
|
+
// plain/text body
|
|
324
|
+
if (hasBody) {
|
|
325
|
+
return options.body;
|
|
326
|
+
}
|
|
327
|
+
// no body was provided
|
|
328
|
+
return undefined;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
332
|
+
const getAuthToken = async (auth, callback)=>{
|
|
333
|
+
const token = typeof callback === 'function' ? await callback(auth) : callback;
|
|
334
|
+
if (!token) {
|
|
335
|
+
return;
|
|
336
|
+
}
|
|
337
|
+
if (auth.scheme === 'bearer') {
|
|
338
|
+
return `Bearer ${token}`;
|
|
339
|
+
}
|
|
340
|
+
if (auth.scheme === 'basic') {
|
|
341
|
+
return `Basic ${btoa(token)}`;
|
|
342
|
+
}
|
|
343
|
+
return token;
|
|
344
|
+
};
|
|
345
|
+
|
|
346
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
347
|
+
const createQuerySerializer = ({ parameters = {}, ...args } = {})=>{
|
|
348
|
+
const querySerializer = (queryParams)=>{
|
|
349
|
+
const search = [];
|
|
350
|
+
if (queryParams && typeof queryParams === 'object') {
|
|
351
|
+
for(const name in queryParams){
|
|
352
|
+
const value = queryParams[name];
|
|
353
|
+
if (value === undefined || value === null) {
|
|
354
|
+
continue;
|
|
355
|
+
}
|
|
356
|
+
const options = parameters[name] || args;
|
|
357
|
+
if (Array.isArray(value)) {
|
|
358
|
+
const serializedArray = serializeArrayParam({
|
|
359
|
+
allowReserved: options.allowReserved,
|
|
360
|
+
explode: true,
|
|
361
|
+
name,
|
|
362
|
+
style: 'form',
|
|
363
|
+
value,
|
|
364
|
+
...options.array
|
|
365
|
+
});
|
|
366
|
+
if (serializedArray) search.push(serializedArray);
|
|
367
|
+
} else if (typeof value === 'object') {
|
|
368
|
+
const serializedObject = serializeObjectParam({
|
|
369
|
+
allowReserved: options.allowReserved,
|
|
370
|
+
explode: true,
|
|
371
|
+
name,
|
|
372
|
+
style: 'deepObject',
|
|
373
|
+
value: value,
|
|
374
|
+
...options.object
|
|
375
|
+
});
|
|
376
|
+
if (serializedObject) search.push(serializedObject);
|
|
377
|
+
} else {
|
|
378
|
+
const serializedPrimitive = serializePrimitiveParam({
|
|
379
|
+
allowReserved: options.allowReserved,
|
|
380
|
+
name,
|
|
381
|
+
value: value
|
|
382
|
+
});
|
|
383
|
+
if (serializedPrimitive) search.push(serializedPrimitive);
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
return search.join('&');
|
|
388
|
+
};
|
|
389
|
+
return querySerializer;
|
|
390
|
+
};
|
|
391
|
+
/**
|
|
392
|
+
* Infers parseAs value from provided Content-Type header.
|
|
393
|
+
*/ const getParseAs = (contentType)=>{
|
|
394
|
+
if (!contentType) {
|
|
395
|
+
// If no Content-Type header is provided, the best we can do is return the raw response body,
|
|
396
|
+
// which is effectively the same as the 'stream' option.
|
|
397
|
+
return 'stream';
|
|
398
|
+
}
|
|
399
|
+
const cleanContent = contentType.split(';')[0]?.trim();
|
|
400
|
+
if (!cleanContent) {
|
|
401
|
+
return;
|
|
402
|
+
}
|
|
403
|
+
if (cleanContent.startsWith('application/json') || cleanContent.endsWith('+json')) {
|
|
404
|
+
return 'json';
|
|
405
|
+
}
|
|
406
|
+
if (cleanContent === 'multipart/form-data') {
|
|
407
|
+
return 'formData';
|
|
408
|
+
}
|
|
409
|
+
if ([
|
|
410
|
+
'application/',
|
|
411
|
+
'audio/',
|
|
412
|
+
'image/',
|
|
413
|
+
'video/'
|
|
414
|
+
].some((type)=>cleanContent.startsWith(type))) {
|
|
415
|
+
return 'blob';
|
|
416
|
+
}
|
|
417
|
+
if (cleanContent.startsWith('text/')) {
|
|
418
|
+
return 'text';
|
|
419
|
+
}
|
|
420
|
+
return;
|
|
421
|
+
};
|
|
422
|
+
const checkForExistence = (options, name)=>{
|
|
423
|
+
if (!name) {
|
|
424
|
+
return false;
|
|
425
|
+
}
|
|
426
|
+
if (options.headers.has(name) || options.query?.[name] || options.headers.get('Cookie')?.includes(`${name}=`)) {
|
|
427
|
+
return true;
|
|
428
|
+
}
|
|
429
|
+
return false;
|
|
430
|
+
};
|
|
431
|
+
async function setAuthParams(options) {
|
|
432
|
+
for (const auth of options.security ?? []){
|
|
433
|
+
if (checkForExistence(options, auth.name)) {
|
|
434
|
+
continue;
|
|
435
|
+
}
|
|
436
|
+
const token = await getAuthToken(auth, options.auth);
|
|
437
|
+
if (!token) {
|
|
438
|
+
continue;
|
|
439
|
+
}
|
|
440
|
+
const name = auth.name ?? 'Authorization';
|
|
441
|
+
switch(auth.in){
|
|
442
|
+
case 'query':
|
|
443
|
+
if (!options.query) {
|
|
444
|
+
options.query = {};
|
|
445
|
+
}
|
|
446
|
+
options.query[name] = token;
|
|
447
|
+
break;
|
|
448
|
+
case 'cookie':
|
|
449
|
+
options.headers.append('Cookie', `${name}=${token}`);
|
|
450
|
+
break;
|
|
451
|
+
case 'header':
|
|
452
|
+
default:
|
|
453
|
+
options.headers.set(name, token);
|
|
454
|
+
break;
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
const buildUrl = (options)=>getUrl({
|
|
459
|
+
baseUrl: options.baseUrl,
|
|
460
|
+
path: options.path,
|
|
461
|
+
query: options.query,
|
|
462
|
+
querySerializer: typeof options.querySerializer === 'function' ? options.querySerializer : createQuerySerializer(options.querySerializer),
|
|
463
|
+
url: options.url
|
|
464
|
+
});
|
|
465
|
+
const mergeConfigs = (a, b)=>{
|
|
466
|
+
const config = {
|
|
467
|
+
...a,
|
|
468
|
+
...b
|
|
469
|
+
};
|
|
470
|
+
if (config.baseUrl?.endsWith('/')) {
|
|
471
|
+
config.baseUrl = config.baseUrl.substring(0, config.baseUrl.length - 1);
|
|
472
|
+
}
|
|
473
|
+
config.headers = mergeHeaders(a.headers, b.headers);
|
|
474
|
+
return config;
|
|
475
|
+
};
|
|
476
|
+
const headersEntries = (headers)=>{
|
|
477
|
+
const entries = [];
|
|
478
|
+
headers.forEach((value, key)=>{
|
|
479
|
+
entries.push([
|
|
480
|
+
key,
|
|
481
|
+
value
|
|
482
|
+
]);
|
|
483
|
+
});
|
|
484
|
+
return entries;
|
|
485
|
+
};
|
|
486
|
+
const mergeHeaders = (...headers)=>{
|
|
487
|
+
const mergedHeaders = new Headers();
|
|
488
|
+
for (const header of headers){
|
|
489
|
+
if (!header) {
|
|
490
|
+
continue;
|
|
491
|
+
}
|
|
492
|
+
const iterator = header instanceof Headers ? headersEntries(header) : Object.entries(header);
|
|
493
|
+
for (const [key, value] of iterator){
|
|
494
|
+
if (value === null) {
|
|
495
|
+
mergedHeaders.delete(key);
|
|
496
|
+
} else if (Array.isArray(value)) {
|
|
497
|
+
for (const v of value){
|
|
498
|
+
mergedHeaders.append(key, v);
|
|
499
|
+
}
|
|
500
|
+
} else if (value !== undefined) {
|
|
501
|
+
// assume object headers are meant to be JSON stringified, i.e., their
|
|
502
|
+
// content value in OpenAPI specification is 'application/json'
|
|
503
|
+
mergedHeaders.set(key, typeof value === 'object' ? JSON.stringify(value) : value);
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
return mergedHeaders;
|
|
508
|
+
};
|
|
509
|
+
class Interceptors {
|
|
510
|
+
clear() {
|
|
511
|
+
this.fns = [];
|
|
512
|
+
}
|
|
513
|
+
eject(id) {
|
|
514
|
+
const index = this.getInterceptorIndex(id);
|
|
515
|
+
if (this.fns[index]) {
|
|
516
|
+
this.fns[index] = null;
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
exists(id) {
|
|
520
|
+
const index = this.getInterceptorIndex(id);
|
|
521
|
+
return Boolean(this.fns[index]);
|
|
522
|
+
}
|
|
523
|
+
getInterceptorIndex(id) {
|
|
524
|
+
if (typeof id === 'number') {
|
|
525
|
+
return this.fns[id] ? id : -1;
|
|
526
|
+
}
|
|
527
|
+
return this.fns.indexOf(id);
|
|
528
|
+
}
|
|
529
|
+
update(id, fn) {
|
|
530
|
+
const index = this.getInterceptorIndex(id);
|
|
531
|
+
if (this.fns[index]) {
|
|
532
|
+
this.fns[index] = fn;
|
|
533
|
+
return id;
|
|
534
|
+
}
|
|
535
|
+
return false;
|
|
536
|
+
}
|
|
537
|
+
use(fn) {
|
|
538
|
+
this.fns.push(fn);
|
|
539
|
+
return this.fns.length - 1;
|
|
540
|
+
}
|
|
541
|
+
constructor(){
|
|
542
|
+
this.fns = [];
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
const createInterceptors = ()=>({
|
|
546
|
+
error: new Interceptors(),
|
|
547
|
+
request: new Interceptors(),
|
|
548
|
+
response: new Interceptors()
|
|
549
|
+
});
|
|
550
|
+
const defaultQuerySerializer = createQuerySerializer({
|
|
551
|
+
allowReserved: false,
|
|
552
|
+
array: {
|
|
553
|
+
explode: true,
|
|
554
|
+
style: 'form'
|
|
555
|
+
},
|
|
556
|
+
object: {
|
|
557
|
+
explode: true,
|
|
558
|
+
style: 'deepObject'
|
|
559
|
+
}
|
|
560
|
+
});
|
|
561
|
+
const defaultHeaders = {
|
|
562
|
+
'Content-Type': 'application/json'
|
|
563
|
+
};
|
|
564
|
+
const createConfig = (override = {})=>({
|
|
565
|
+
...jsonBodySerializer,
|
|
566
|
+
headers: defaultHeaders,
|
|
567
|
+
parseAs: 'auto',
|
|
568
|
+
querySerializer: defaultQuerySerializer,
|
|
569
|
+
...override
|
|
570
|
+
});
|
|
571
|
+
|
|
572
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
573
|
+
const createClient = (config = {})=>{
|
|
574
|
+
let _config = mergeConfigs(createConfig(), config);
|
|
575
|
+
const getConfig = ()=>({
|
|
576
|
+
..._config
|
|
577
|
+
});
|
|
578
|
+
const setConfig = (config)=>{
|
|
579
|
+
_config = mergeConfigs(_config, config);
|
|
580
|
+
return getConfig();
|
|
581
|
+
};
|
|
582
|
+
const interceptors = createInterceptors();
|
|
583
|
+
const beforeRequest = async (options)=>{
|
|
584
|
+
const opts = {
|
|
585
|
+
..._config,
|
|
586
|
+
...options,
|
|
587
|
+
fetch: options.fetch ?? _config.fetch ?? globalThis.fetch,
|
|
588
|
+
headers: mergeHeaders(_config.headers, options.headers),
|
|
589
|
+
serializedBody: undefined
|
|
590
|
+
};
|
|
591
|
+
if (opts.security) {
|
|
592
|
+
await setAuthParams(opts);
|
|
593
|
+
}
|
|
594
|
+
if (opts.requestValidator) {
|
|
595
|
+
await opts.requestValidator(opts);
|
|
596
|
+
}
|
|
597
|
+
if (opts.body !== undefined && opts.bodySerializer) {
|
|
598
|
+
opts.serializedBody = opts.bodySerializer(opts.body);
|
|
599
|
+
}
|
|
600
|
+
// remove Content-Type header if body is empty to avoid sending invalid requests
|
|
601
|
+
if (opts.body === undefined || opts.serializedBody === '') {
|
|
602
|
+
opts.headers.delete('Content-Type');
|
|
603
|
+
}
|
|
604
|
+
const resolvedOpts = opts;
|
|
605
|
+
const url = buildUrl(resolvedOpts);
|
|
606
|
+
return {
|
|
607
|
+
opts: resolvedOpts,
|
|
608
|
+
url
|
|
609
|
+
};
|
|
610
|
+
};
|
|
611
|
+
const request = async (options)=>{
|
|
612
|
+
const throwOnError = options.throwOnError ?? _config.throwOnError;
|
|
613
|
+
const responseStyle = options.responseStyle ?? _config.responseStyle;
|
|
614
|
+
let request;
|
|
615
|
+
let response;
|
|
616
|
+
try {
|
|
617
|
+
const { opts, url } = await beforeRequest(options);
|
|
618
|
+
const requestInit = {
|
|
619
|
+
redirect: 'follow',
|
|
620
|
+
...opts,
|
|
621
|
+
body: getValidRequestBody(opts)
|
|
622
|
+
};
|
|
623
|
+
request = new Request(url, requestInit);
|
|
624
|
+
for (const fn of interceptors.request.fns){
|
|
625
|
+
if (fn) {
|
|
626
|
+
request = await fn(request, opts);
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
// fetch must be assigned here, otherwise it would throw the error:
|
|
630
|
+
// TypeError: Failed to execute 'fetch' on 'Window': Illegal invocation
|
|
631
|
+
const _fetch = opts.fetch;
|
|
632
|
+
response = await _fetch(request);
|
|
633
|
+
for (const fn of interceptors.response.fns){
|
|
634
|
+
if (fn) {
|
|
635
|
+
response = await fn(response, request, opts);
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
const result = {
|
|
639
|
+
request,
|
|
640
|
+
response
|
|
641
|
+
};
|
|
642
|
+
if (response.ok) {
|
|
643
|
+
const parseAs = (opts.parseAs === 'auto' ? getParseAs(response.headers.get('Content-Type')) : opts.parseAs) ?? 'json';
|
|
644
|
+
if (response.status === 204 || response.headers.get('Content-Length') === '0') {
|
|
645
|
+
let emptyData;
|
|
646
|
+
switch(parseAs){
|
|
647
|
+
case 'arrayBuffer':
|
|
648
|
+
case 'blob':
|
|
649
|
+
case 'text':
|
|
650
|
+
emptyData = await response[parseAs]();
|
|
651
|
+
break;
|
|
652
|
+
case 'formData':
|
|
653
|
+
emptyData = new FormData();
|
|
654
|
+
break;
|
|
655
|
+
case 'stream':
|
|
656
|
+
emptyData = response.body;
|
|
657
|
+
break;
|
|
658
|
+
case 'json':
|
|
659
|
+
default:
|
|
660
|
+
emptyData = {};
|
|
661
|
+
break;
|
|
662
|
+
}
|
|
663
|
+
return opts.responseStyle === 'data' ? emptyData : {
|
|
664
|
+
data: emptyData,
|
|
665
|
+
...result
|
|
666
|
+
};
|
|
667
|
+
}
|
|
668
|
+
let data;
|
|
669
|
+
switch(parseAs){
|
|
670
|
+
case 'arrayBuffer':
|
|
671
|
+
case 'blob':
|
|
672
|
+
case 'formData':
|
|
673
|
+
case 'text':
|
|
674
|
+
data = await response[parseAs]();
|
|
675
|
+
break;
|
|
676
|
+
case 'json':
|
|
677
|
+
{
|
|
678
|
+
// Some servers return 200 with no Content-Length and empty body.
|
|
679
|
+
// response.json() would throw; read as text and parse if non-empty.
|
|
680
|
+
const text = await response.text();
|
|
681
|
+
data = text ? JSON.parse(text) : {};
|
|
682
|
+
break;
|
|
683
|
+
}
|
|
684
|
+
case 'stream':
|
|
685
|
+
return opts.responseStyle === 'data' ? response.body : {
|
|
686
|
+
data: response.body,
|
|
687
|
+
...result
|
|
688
|
+
};
|
|
689
|
+
}
|
|
690
|
+
if (parseAs === 'json') {
|
|
691
|
+
if (opts.responseValidator) {
|
|
692
|
+
await opts.responseValidator(data);
|
|
693
|
+
}
|
|
694
|
+
if (opts.responseTransformer) {
|
|
695
|
+
data = await opts.responseTransformer(data);
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
return opts.responseStyle === 'data' ? data : {
|
|
699
|
+
data,
|
|
700
|
+
...result
|
|
701
|
+
};
|
|
702
|
+
}
|
|
703
|
+
const textError = await response.text();
|
|
704
|
+
let jsonError;
|
|
705
|
+
try {
|
|
706
|
+
jsonError = JSON.parse(textError);
|
|
707
|
+
} catch {
|
|
708
|
+
// noop
|
|
709
|
+
}
|
|
710
|
+
throw jsonError ?? textError;
|
|
711
|
+
} catch (error) {
|
|
712
|
+
let finalError = error;
|
|
713
|
+
for (const fn of interceptors.error.fns){
|
|
714
|
+
if (fn) {
|
|
715
|
+
finalError = await fn(finalError, response, request, options);
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
finalError = finalError || {};
|
|
719
|
+
if (throwOnError) {
|
|
720
|
+
throw finalError;
|
|
721
|
+
}
|
|
722
|
+
// TODO: we probably want to return error and improve types
|
|
723
|
+
return responseStyle === 'data' ? undefined : {
|
|
724
|
+
error: finalError,
|
|
725
|
+
request,
|
|
726
|
+
response
|
|
727
|
+
};
|
|
728
|
+
}
|
|
729
|
+
};
|
|
730
|
+
const makeMethodFn = (method)=>(options)=>request({
|
|
731
|
+
...options,
|
|
732
|
+
method
|
|
733
|
+
});
|
|
734
|
+
const makeSseFn = (method)=>async (options)=>{
|
|
735
|
+
const { opts, url } = await beforeRequest(options);
|
|
736
|
+
return createSseClient({
|
|
737
|
+
...opts,
|
|
738
|
+
body: opts.body,
|
|
739
|
+
method,
|
|
740
|
+
onRequest: async (url, init)=>{
|
|
741
|
+
let request = new Request(url, init);
|
|
742
|
+
for (const fn of interceptors.request.fns){
|
|
743
|
+
if (fn) {
|
|
744
|
+
request = await fn(request, opts);
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
return request;
|
|
748
|
+
},
|
|
749
|
+
serializedBody: getValidRequestBody(opts),
|
|
750
|
+
url
|
|
751
|
+
});
|
|
752
|
+
};
|
|
753
|
+
const _buildUrl = (options)=>buildUrl({
|
|
754
|
+
..._config,
|
|
755
|
+
...options
|
|
756
|
+
});
|
|
757
|
+
return {
|
|
758
|
+
buildUrl: _buildUrl,
|
|
759
|
+
connect: makeMethodFn('CONNECT'),
|
|
760
|
+
delete: makeMethodFn('DELETE'),
|
|
761
|
+
get: makeMethodFn('GET'),
|
|
762
|
+
getConfig,
|
|
763
|
+
head: makeMethodFn('HEAD'),
|
|
764
|
+
interceptors,
|
|
765
|
+
options: makeMethodFn('OPTIONS'),
|
|
766
|
+
patch: makeMethodFn('PATCH'),
|
|
767
|
+
post: makeMethodFn('POST'),
|
|
768
|
+
put: makeMethodFn('PUT'),
|
|
769
|
+
request,
|
|
770
|
+
setConfig,
|
|
771
|
+
sse: {
|
|
772
|
+
connect: makeSseFn('CONNECT'),
|
|
773
|
+
delete: makeSseFn('DELETE'),
|
|
774
|
+
get: makeSseFn('GET'),
|
|
775
|
+
head: makeSseFn('HEAD'),
|
|
776
|
+
options: makeSseFn('OPTIONS'),
|
|
777
|
+
patch: makeSseFn('PATCH'),
|
|
778
|
+
post: makeSseFn('POST'),
|
|
779
|
+
put: makeSseFn('PUT'),
|
|
780
|
+
trace: makeSseFn('TRACE')
|
|
781
|
+
},
|
|
782
|
+
trace: makeMethodFn('TRACE')
|
|
783
|
+
};
|
|
784
|
+
};
|
|
785
|
+
|
|
786
|
+
const createRampDialogClient = ({ baseUrl, getAuthToken, ...config })=>createClient(createConfig({
|
|
787
|
+
baseUrl,
|
|
788
|
+
...getAuthToken ? {
|
|
789
|
+
auth: getAuthToken
|
|
790
|
+
} : {},
|
|
791
|
+
...config
|
|
792
|
+
}));
|
|
793
|
+
|
|
794
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
795
|
+
const client = createClient(createConfig());
|
|
796
|
+
|
|
797
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
798
|
+
/**
|
|
799
|
+
* GET active-conversations / {customerNumber}
|
|
800
|
+
*/ const getApiActiveConversationsByCustomerNumber = (options)=>(options.client ?? client).get({
|
|
801
|
+
security: [
|
|
802
|
+
{
|
|
803
|
+
in: 'cookie',
|
|
804
|
+
name: 'next-auth.session-token',
|
|
805
|
+
type: 'apiKey'
|
|
806
|
+
}
|
|
807
|
+
],
|
|
808
|
+
url: '/api/active-conversations/{customerNumber}',
|
|
809
|
+
...options
|
|
810
|
+
});
|
|
811
|
+
/**
|
|
812
|
+
* GET active-conversations / agent / {agentNumber}
|
|
813
|
+
*/ const getApiActiveConversationsAgentByAgentNumber = (options)=>(options.client ?? client).get({
|
|
814
|
+
security: [
|
|
815
|
+
{
|
|
816
|
+
in: 'cookie',
|
|
817
|
+
name: 'next-auth.session-token',
|
|
818
|
+
type: 'apiKey'
|
|
819
|
+
}
|
|
820
|
+
],
|
|
821
|
+
url: '/api/active-conversations/agent/{agentNumber}',
|
|
822
|
+
...options
|
|
823
|
+
});
|
|
824
|
+
/**
|
|
825
|
+
* POST active-conversations / agent / claim
|
|
826
|
+
*/ const postApiActiveConversationsAgentClaim = (options)=>(options.client ?? client).post({
|
|
827
|
+
security: [
|
|
828
|
+
{
|
|
829
|
+
in: 'cookie',
|
|
830
|
+
name: 'next-auth.session-token',
|
|
831
|
+
type: 'apiKey'
|
|
832
|
+
}
|
|
833
|
+
],
|
|
834
|
+
url: '/api/active-conversations/agent/claim',
|
|
835
|
+
...options,
|
|
836
|
+
headers: {
|
|
837
|
+
'Content-Type': 'application/json',
|
|
838
|
+
...options.headers
|
|
839
|
+
}
|
|
840
|
+
});
|
|
841
|
+
/**
|
|
842
|
+
* POST clear
|
|
843
|
+
*/ const postApiClear = (options)=>(options.client ?? client).post({
|
|
844
|
+
security: [
|
|
845
|
+
{
|
|
846
|
+
in: 'cookie',
|
|
847
|
+
name: 'next-auth.session-token',
|
|
848
|
+
type: 'apiKey'
|
|
849
|
+
}
|
|
850
|
+
],
|
|
851
|
+
url: '/api/clear',
|
|
852
|
+
...options,
|
|
853
|
+
headers: {
|
|
854
|
+
'Content-Type': 'application/json',
|
|
855
|
+
...options.headers
|
|
856
|
+
}
|
|
857
|
+
});
|
|
858
|
+
/**
|
|
859
|
+
* POST conversation-memory / profiles-lookup
|
|
860
|
+
*/ const postApiConversationMemoryProfilesLookup = (options)=>(options.client ?? client).post({
|
|
861
|
+
security: [
|
|
862
|
+
{
|
|
863
|
+
in: 'cookie',
|
|
864
|
+
name: 'next-auth.session-token',
|
|
865
|
+
type: 'apiKey'
|
|
866
|
+
}
|
|
867
|
+
],
|
|
868
|
+
url: '/api/conversation-memory/profiles-lookup',
|
|
869
|
+
...options,
|
|
870
|
+
headers: {
|
|
871
|
+
'Content-Type': 'application/json',
|
|
872
|
+
...options.headers
|
|
873
|
+
}
|
|
874
|
+
});
|
|
875
|
+
/**
|
|
876
|
+
* POST conversation-memory / recall
|
|
877
|
+
*/ const postApiConversationMemoryRecall = (options)=>(options.client ?? client).post({
|
|
878
|
+
security: [
|
|
879
|
+
{
|
|
880
|
+
in: 'cookie',
|
|
881
|
+
name: 'next-auth.session-token',
|
|
882
|
+
type: 'apiKey'
|
|
883
|
+
}
|
|
884
|
+
],
|
|
885
|
+
url: '/api/conversation-memory/recall',
|
|
886
|
+
...options,
|
|
887
|
+
headers: {
|
|
888
|
+
'Content-Type': 'application/json',
|
|
889
|
+
...options.headers
|
|
890
|
+
}
|
|
891
|
+
});
|
|
892
|
+
/**
|
|
893
|
+
* DELETE conversation-memory / reset
|
|
894
|
+
*/ const deleteApiConversationMemoryReset = (options)=>(options.client ?? client).delete({
|
|
895
|
+
security: [
|
|
896
|
+
{
|
|
897
|
+
in: 'cookie',
|
|
898
|
+
name: 'next-auth.session-token',
|
|
899
|
+
type: 'apiKey'
|
|
900
|
+
}
|
|
901
|
+
],
|
|
902
|
+
url: '/api/conversation-memory/reset',
|
|
903
|
+
...options
|
|
904
|
+
});
|
|
905
|
+
/**
|
|
906
|
+
* GET country-configs
|
|
907
|
+
*/ const getApiCountryConfigs = (options)=>(options?.client ?? client).get({
|
|
908
|
+
security: [
|
|
909
|
+
{
|
|
910
|
+
in: 'cookie',
|
|
911
|
+
name: 'next-auth.session-token',
|
|
912
|
+
type: 'apiKey'
|
|
913
|
+
}
|
|
914
|
+
],
|
|
915
|
+
url: '/api/country-configs',
|
|
916
|
+
...options
|
|
917
|
+
});
|
|
918
|
+
/**
|
|
919
|
+
* DELETE kill-conversation / {phone}
|
|
920
|
+
*/ const deleteApiKillConversationByPhone = (options)=>(options.client ?? client).delete({
|
|
921
|
+
security: [
|
|
922
|
+
{
|
|
923
|
+
in: 'cookie',
|
|
924
|
+
name: 'next-auth.session-token',
|
|
925
|
+
type: 'apiKey'
|
|
926
|
+
}
|
|
927
|
+
],
|
|
928
|
+
url: '/api/kill-conversation/{phone}',
|
|
929
|
+
...options
|
|
930
|
+
});
|
|
931
|
+
/**
|
|
932
|
+
* DELETE live-numbers
|
|
933
|
+
*/ const deleteApiLiveNumbers = (options)=>(options?.client ?? client).delete({
|
|
934
|
+
security: [
|
|
935
|
+
{
|
|
936
|
+
in: 'cookie',
|
|
937
|
+
name: 'next-auth.session-token',
|
|
938
|
+
type: 'apiKey'
|
|
939
|
+
}
|
|
940
|
+
],
|
|
941
|
+
url: '/api/live-numbers',
|
|
942
|
+
...options
|
|
943
|
+
});
|
|
944
|
+
/**
|
|
945
|
+
* GET messages
|
|
946
|
+
*/ const getApiMessages = (options)=>(options?.client ?? client).get({
|
|
947
|
+
security: [
|
|
948
|
+
{
|
|
949
|
+
in: 'cookie',
|
|
950
|
+
name: 'next-auth.session-token',
|
|
951
|
+
type: 'apiKey'
|
|
952
|
+
}
|
|
953
|
+
],
|
|
954
|
+
url: '/api/messages',
|
|
955
|
+
...options
|
|
956
|
+
});
|
|
957
|
+
/**
|
|
958
|
+
* POST real-time-cintel-ui
|
|
959
|
+
*/ const postApiRealTimeCintelUi = (options)=>(options.client ?? client).post({
|
|
960
|
+
security: [
|
|
961
|
+
{
|
|
962
|
+
in: 'cookie',
|
|
963
|
+
name: 'next-auth.session-token',
|
|
964
|
+
type: 'apiKey'
|
|
965
|
+
}
|
|
966
|
+
],
|
|
967
|
+
url: '/api/real-time-cintel-ui',
|
|
968
|
+
...options,
|
|
969
|
+
headers: {
|
|
970
|
+
'Content-Type': 'application/json',
|
|
971
|
+
...options.headers
|
|
972
|
+
}
|
|
973
|
+
});
|
|
974
|
+
/**
|
|
975
|
+
* GET sync-token
|
|
976
|
+
*/ const getApiSyncToken = (options)=>(options?.client ?? client).get({
|
|
977
|
+
security: [
|
|
978
|
+
{
|
|
979
|
+
in: 'cookie',
|
|
980
|
+
name: 'next-auth.session-token',
|
|
981
|
+
type: 'apiKey'
|
|
982
|
+
}
|
|
983
|
+
],
|
|
984
|
+
url: '/api/sync-token',
|
|
985
|
+
...options
|
|
986
|
+
});
|
|
987
|
+
/**
|
|
988
|
+
* POST telemetry
|
|
989
|
+
*/ const postApiTelemetry = (options)=>(options?.client ?? client).post({
|
|
990
|
+
security: [
|
|
991
|
+
{
|
|
992
|
+
in: 'cookie',
|
|
993
|
+
name: 'next-auth.session-token',
|
|
994
|
+
type: 'apiKey'
|
|
995
|
+
}
|
|
996
|
+
],
|
|
997
|
+
url: '/api/telemetry',
|
|
998
|
+
...options
|
|
999
|
+
});
|
|
1000
|
+
|
|
1001
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
1002
|
+
const zGetApiActiveConversationsByCustomerNumberPath = z.object({
|
|
1003
|
+
customerNumber: z.string()
|
|
1004
|
+
});
|
|
1005
|
+
const zGetApiActiveConversationsAgentByAgentNumberPath = z.object({
|
|
1006
|
+
agentNumber: z.string()
|
|
1007
|
+
});
|
|
1008
|
+
const zPostApiActiveConversationsAgentClaimBody = z.record(z.unknown());
|
|
1009
|
+
const zPostApiClearBody = z.record(z.unknown());
|
|
1010
|
+
const zPostApiConversationMemoryProfilesLookupBody = z.record(z.unknown());
|
|
1011
|
+
const zPostApiConversationMemoryRecallBody = z.record(z.unknown());
|
|
1012
|
+
const zDeleteApiConversationMemoryResetQuery = z.object({
|
|
1013
|
+
profileId: z.string()
|
|
1014
|
+
});
|
|
1015
|
+
const zDeleteApiKillConversationByPhonePath = z.object({
|
|
1016
|
+
phone: z.string()
|
|
1017
|
+
});
|
|
1018
|
+
const zGetApiMessagesQuery = z.object({
|
|
1019
|
+
lastId: z.string().optional(),
|
|
1020
|
+
phoneNumber: z.string().optional()
|
|
1021
|
+
});
|
|
1022
|
+
const zPostApiRealTimeCintelUiBody = z.record(z.unknown());
|
|
1023
|
+
const zPostApiTelemetryQuery = z.object({
|
|
1024
|
+
ddforward: z.string().optional()
|
|
1025
|
+
});
|
|
1026
|
+
|
|
1027
|
+
var zod_gen = {
|
|
1028
|
+
__proto__: null,
|
|
1029
|
+
zDeleteApiConversationMemoryResetQuery: zDeleteApiConversationMemoryResetQuery,
|
|
1030
|
+
zDeleteApiKillConversationByPhonePath: zDeleteApiKillConversationByPhonePath,
|
|
1031
|
+
zGetApiActiveConversationsAgentByAgentNumberPath: zGetApiActiveConversationsAgentByAgentNumberPath,
|
|
1032
|
+
zGetApiActiveConversationsByCustomerNumberPath: zGetApiActiveConversationsByCustomerNumberPath,
|
|
1033
|
+
zGetApiMessagesQuery: zGetApiMessagesQuery,
|
|
1034
|
+
zPostApiActiveConversationsAgentClaimBody: zPostApiActiveConversationsAgentClaimBody,
|
|
1035
|
+
zPostApiClearBody: zPostApiClearBody,
|
|
1036
|
+
zPostApiConversationMemoryProfilesLookupBody: zPostApiConversationMemoryProfilesLookupBody,
|
|
1037
|
+
zPostApiConversationMemoryRecallBody: zPostApiConversationMemoryRecallBody,
|
|
1038
|
+
zPostApiRealTimeCintelUiBody: zPostApiRealTimeCintelUiBody,
|
|
1039
|
+
zPostApiTelemetryQuery: zPostApiTelemetryQuery
|
|
1040
|
+
};
|
|
1041
|
+
|
|
1042
|
+
export { createRampDialogClient, deleteApiConversationMemoryReset, deleteApiKillConversationByPhone, deleteApiLiveNumbers, getApiActiveConversationsAgentByAgentNumber, getApiActiveConversationsByCustomerNumber, getApiCountryConfigs, getApiMessages, getApiSyncToken, postApiActiveConversationsAgentClaim, postApiClear, postApiConversationMemoryProfilesLookup, postApiConversationMemoryRecall, postApiRealTimeCintelUi, postApiTelemetry, zod_gen as schemas };
|