@gtmi/ramp-site-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 +2749 -0
- package/dist/es/index.mjs +2045 -0
- package/package.json +46 -0
- package/src/client.test.ts +36 -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 +272 -0
- package/src/generated/sdk.gen.ts +1934 -0
- package/src/generated/types.gen.ts +1791 -0
- package/src/generated/zod.gen.ts +249 -0
- package/src/index.ts +7 -0
|
@@ -0,0 +1,1791 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
export type ClientOptions = {
|
|
4
|
+
baseUrl: `${string}://${string}` | (string & {});
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export type PostApiAlgoliaSecuredKeyData = {
|
|
8
|
+
body?: never;
|
|
9
|
+
path?: never;
|
|
10
|
+
query?: never;
|
|
11
|
+
url: '/api/algolia-secured-key';
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export type PostApiAlgoliaSecuredKeyErrors = {
|
|
15
|
+
/**
|
|
16
|
+
* Internal server error
|
|
17
|
+
*/
|
|
18
|
+
500: unknown;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export type PostApiAlgoliaSecuredKeyResponses = {
|
|
22
|
+
/**
|
|
23
|
+
* Success
|
|
24
|
+
*/
|
|
25
|
+
200: unknown;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export type GetApiCampaignData = {
|
|
29
|
+
body?: never;
|
|
30
|
+
path?: never;
|
|
31
|
+
query?: never;
|
|
32
|
+
url: '/api/campaign';
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export type GetApiCampaignErrors = {
|
|
36
|
+
/**
|
|
37
|
+
* Unauthorized
|
|
38
|
+
*/
|
|
39
|
+
401: unknown;
|
|
40
|
+
/**
|
|
41
|
+
* Internal server error
|
|
42
|
+
*/
|
|
43
|
+
500: unknown;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export type GetApiCampaignResponses = {
|
|
47
|
+
/**
|
|
48
|
+
* Success
|
|
49
|
+
*/
|
|
50
|
+
200: unknown;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export type DeleteApiConversationMemoryConversationSummariesData = {
|
|
54
|
+
body?: never;
|
|
55
|
+
path?: never;
|
|
56
|
+
query: {
|
|
57
|
+
profileId: string;
|
|
58
|
+
summaryId: string;
|
|
59
|
+
};
|
|
60
|
+
url: '/api/conversation-memory/conversation-summaries';
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
export type DeleteApiConversationMemoryConversationSummariesErrors = {
|
|
64
|
+
/**
|
|
65
|
+
* Unauthorized
|
|
66
|
+
*/
|
|
67
|
+
401: unknown;
|
|
68
|
+
/**
|
|
69
|
+
* Internal server error
|
|
70
|
+
*/
|
|
71
|
+
500: unknown;
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
export type DeleteApiConversationMemoryConversationSummariesResponses = {
|
|
75
|
+
/**
|
|
76
|
+
* Success
|
|
77
|
+
*/
|
|
78
|
+
200: unknown;
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export type GetApiConversationMemoryConversationSummariesData = {
|
|
82
|
+
body?: never;
|
|
83
|
+
path?: never;
|
|
84
|
+
query: {
|
|
85
|
+
profileId: string;
|
|
86
|
+
summaryId?: string;
|
|
87
|
+
pageSize?: string;
|
|
88
|
+
pageToken?: string;
|
|
89
|
+
};
|
|
90
|
+
url: '/api/conversation-memory/conversation-summaries';
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
export type GetApiConversationMemoryConversationSummariesErrors = {
|
|
94
|
+
/**
|
|
95
|
+
* Unauthorized
|
|
96
|
+
*/
|
|
97
|
+
401: unknown;
|
|
98
|
+
/**
|
|
99
|
+
* Internal server error
|
|
100
|
+
*/
|
|
101
|
+
500: unknown;
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
export type GetApiConversationMemoryConversationSummariesResponses = {
|
|
105
|
+
/**
|
|
106
|
+
* Success
|
|
107
|
+
*/
|
|
108
|
+
200: unknown;
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
export type PatchApiConversationMemoryConversationSummariesData = {
|
|
112
|
+
body: {
|
|
113
|
+
[key: string]: unknown;
|
|
114
|
+
};
|
|
115
|
+
path?: never;
|
|
116
|
+
query: {
|
|
117
|
+
profileId: string;
|
|
118
|
+
summaryId: string;
|
|
119
|
+
};
|
|
120
|
+
url: '/api/conversation-memory/conversation-summaries';
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
export type PatchApiConversationMemoryConversationSummariesErrors = {
|
|
124
|
+
/**
|
|
125
|
+
* Unauthorized
|
|
126
|
+
*/
|
|
127
|
+
401: unknown;
|
|
128
|
+
/**
|
|
129
|
+
* Internal server error
|
|
130
|
+
*/
|
|
131
|
+
500: unknown;
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
export type PatchApiConversationMemoryConversationSummariesResponses = {
|
|
135
|
+
/**
|
|
136
|
+
* Success
|
|
137
|
+
*/
|
|
138
|
+
200: unknown;
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
export type PostApiConversationMemoryConversationSummariesData = {
|
|
142
|
+
body: {
|
|
143
|
+
[key: string]: unknown;
|
|
144
|
+
};
|
|
145
|
+
path?: never;
|
|
146
|
+
query?: never;
|
|
147
|
+
url: '/api/conversation-memory/conversation-summaries';
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
export type PostApiConversationMemoryConversationSummariesErrors = {
|
|
151
|
+
/**
|
|
152
|
+
* Unauthorized
|
|
153
|
+
*/
|
|
154
|
+
401: unknown;
|
|
155
|
+
/**
|
|
156
|
+
* Internal server error
|
|
157
|
+
*/
|
|
158
|
+
500: unknown;
|
|
159
|
+
};
|
|
160
|
+
|
|
161
|
+
export type PostApiConversationMemoryConversationSummariesResponses = {
|
|
162
|
+
/**
|
|
163
|
+
* Success
|
|
164
|
+
*/
|
|
165
|
+
200: unknown;
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
export type DeleteApiConversationMemoryIdentifiersData = {
|
|
169
|
+
body?: never;
|
|
170
|
+
path?: never;
|
|
171
|
+
query: {
|
|
172
|
+
profileId: string;
|
|
173
|
+
idType: string;
|
|
174
|
+
removeAll?: string;
|
|
175
|
+
value?: string;
|
|
176
|
+
};
|
|
177
|
+
url: '/api/conversation-memory/identifiers';
|
|
178
|
+
};
|
|
179
|
+
|
|
180
|
+
export type DeleteApiConversationMemoryIdentifiersErrors = {
|
|
181
|
+
/**
|
|
182
|
+
* Unauthorized
|
|
183
|
+
*/
|
|
184
|
+
401: unknown;
|
|
185
|
+
/**
|
|
186
|
+
* Internal server error
|
|
187
|
+
*/
|
|
188
|
+
500: unknown;
|
|
189
|
+
};
|
|
190
|
+
|
|
191
|
+
export type DeleteApiConversationMemoryIdentifiersResponses = {
|
|
192
|
+
/**
|
|
193
|
+
* Success
|
|
194
|
+
*/
|
|
195
|
+
200: unknown;
|
|
196
|
+
};
|
|
197
|
+
|
|
198
|
+
export type GetApiConversationMemoryIdentifiersData = {
|
|
199
|
+
body?: never;
|
|
200
|
+
path?: never;
|
|
201
|
+
query: {
|
|
202
|
+
profileId: string;
|
|
203
|
+
idType: string;
|
|
204
|
+
};
|
|
205
|
+
url: '/api/conversation-memory/identifiers';
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
export type GetApiConversationMemoryIdentifiersErrors = {
|
|
209
|
+
/**
|
|
210
|
+
* Unauthorized
|
|
211
|
+
*/
|
|
212
|
+
401: unknown;
|
|
213
|
+
/**
|
|
214
|
+
* Internal server error
|
|
215
|
+
*/
|
|
216
|
+
500: unknown;
|
|
217
|
+
};
|
|
218
|
+
|
|
219
|
+
export type GetApiConversationMemoryIdentifiersResponses = {
|
|
220
|
+
/**
|
|
221
|
+
* Success
|
|
222
|
+
*/
|
|
223
|
+
200: unknown;
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
export type PatchApiConversationMemoryIdentifiersData = {
|
|
227
|
+
body: {
|
|
228
|
+
[key: string]: unknown;
|
|
229
|
+
};
|
|
230
|
+
path?: never;
|
|
231
|
+
query: {
|
|
232
|
+
profileId: string;
|
|
233
|
+
idType: string;
|
|
234
|
+
removeAll?: string;
|
|
235
|
+
value?: string;
|
|
236
|
+
};
|
|
237
|
+
url: '/api/conversation-memory/identifiers';
|
|
238
|
+
};
|
|
239
|
+
|
|
240
|
+
export type PatchApiConversationMemoryIdentifiersErrors = {
|
|
241
|
+
/**
|
|
242
|
+
* Unauthorized
|
|
243
|
+
*/
|
|
244
|
+
401: unknown;
|
|
245
|
+
/**
|
|
246
|
+
* Internal server error
|
|
247
|
+
*/
|
|
248
|
+
500: unknown;
|
|
249
|
+
};
|
|
250
|
+
|
|
251
|
+
export type PatchApiConversationMemoryIdentifiersResponses = {
|
|
252
|
+
/**
|
|
253
|
+
* Success
|
|
254
|
+
*/
|
|
255
|
+
200: unknown;
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
export type PostApiConversationMemoryIdentifiersData = {
|
|
259
|
+
body: {
|
|
260
|
+
[key: string]: unknown;
|
|
261
|
+
};
|
|
262
|
+
path?: never;
|
|
263
|
+
query: {
|
|
264
|
+
profileId: string;
|
|
265
|
+
idType: string;
|
|
266
|
+
removeAll?: string;
|
|
267
|
+
value: string;
|
|
268
|
+
};
|
|
269
|
+
url: '/api/conversation-memory/identifiers';
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
export type PostApiConversationMemoryIdentifiersErrors = {
|
|
273
|
+
/**
|
|
274
|
+
* Unauthorized
|
|
275
|
+
*/
|
|
276
|
+
401: unknown;
|
|
277
|
+
/**
|
|
278
|
+
* Internal server error
|
|
279
|
+
*/
|
|
280
|
+
500: unknown;
|
|
281
|
+
};
|
|
282
|
+
|
|
283
|
+
export type PostApiConversationMemoryIdentifiersResponses = {
|
|
284
|
+
/**
|
|
285
|
+
* Success
|
|
286
|
+
*/
|
|
287
|
+
200: unknown;
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
export type DeleteApiConversationMemoryObservationsData = {
|
|
291
|
+
body?: never;
|
|
292
|
+
path?: never;
|
|
293
|
+
query: {
|
|
294
|
+
profileId: string;
|
|
295
|
+
observationId: string;
|
|
296
|
+
};
|
|
297
|
+
url: '/api/conversation-memory/observations';
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
export type DeleteApiConversationMemoryObservationsErrors = {
|
|
301
|
+
/**
|
|
302
|
+
* Unauthorized
|
|
303
|
+
*/
|
|
304
|
+
401: unknown;
|
|
305
|
+
/**
|
|
306
|
+
* Internal server error
|
|
307
|
+
*/
|
|
308
|
+
500: unknown;
|
|
309
|
+
};
|
|
310
|
+
|
|
311
|
+
export type DeleteApiConversationMemoryObservationsResponses = {
|
|
312
|
+
/**
|
|
313
|
+
* Success
|
|
314
|
+
*/
|
|
315
|
+
200: unknown;
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
export type GetApiConversationMemoryObservationsData = {
|
|
319
|
+
body?: never;
|
|
320
|
+
path?: never;
|
|
321
|
+
query: {
|
|
322
|
+
profileId: string;
|
|
323
|
+
observationId?: string;
|
|
324
|
+
pageSize?: string;
|
|
325
|
+
pageToken?: string;
|
|
326
|
+
orderBy?: string;
|
|
327
|
+
source?: string;
|
|
328
|
+
createdAfter?: string;
|
|
329
|
+
createdBefore?: string;
|
|
330
|
+
};
|
|
331
|
+
url: '/api/conversation-memory/observations';
|
|
332
|
+
};
|
|
333
|
+
|
|
334
|
+
export type GetApiConversationMemoryObservationsErrors = {
|
|
335
|
+
/**
|
|
336
|
+
* Unauthorized
|
|
337
|
+
*/
|
|
338
|
+
401: unknown;
|
|
339
|
+
/**
|
|
340
|
+
* Internal server error
|
|
341
|
+
*/
|
|
342
|
+
500: unknown;
|
|
343
|
+
};
|
|
344
|
+
|
|
345
|
+
export type GetApiConversationMemoryObservationsResponses = {
|
|
346
|
+
/**
|
|
347
|
+
* Success
|
|
348
|
+
*/
|
|
349
|
+
200: unknown;
|
|
350
|
+
};
|
|
351
|
+
|
|
352
|
+
export type PatchApiConversationMemoryObservationsData = {
|
|
353
|
+
body: {
|
|
354
|
+
[key: string]: unknown;
|
|
355
|
+
};
|
|
356
|
+
path?: never;
|
|
357
|
+
query: {
|
|
358
|
+
profileId: string;
|
|
359
|
+
observationId: string;
|
|
360
|
+
};
|
|
361
|
+
url: '/api/conversation-memory/observations';
|
|
362
|
+
};
|
|
363
|
+
|
|
364
|
+
export type PatchApiConversationMemoryObservationsErrors = {
|
|
365
|
+
/**
|
|
366
|
+
* Unauthorized
|
|
367
|
+
*/
|
|
368
|
+
401: unknown;
|
|
369
|
+
/**
|
|
370
|
+
* Internal server error
|
|
371
|
+
*/
|
|
372
|
+
500: unknown;
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
export type PatchApiConversationMemoryObservationsResponses = {
|
|
376
|
+
/**
|
|
377
|
+
* Success
|
|
378
|
+
*/
|
|
379
|
+
200: unknown;
|
|
380
|
+
};
|
|
381
|
+
|
|
382
|
+
export type PostApiConversationMemoryObservationsData = {
|
|
383
|
+
body: {
|
|
384
|
+
[key: string]: unknown;
|
|
385
|
+
};
|
|
386
|
+
path?: never;
|
|
387
|
+
query: {
|
|
388
|
+
profileId: string;
|
|
389
|
+
};
|
|
390
|
+
url: '/api/conversation-memory/observations';
|
|
391
|
+
};
|
|
392
|
+
|
|
393
|
+
export type PostApiConversationMemoryObservationsErrors = {
|
|
394
|
+
/**
|
|
395
|
+
* Unauthorized
|
|
396
|
+
*/
|
|
397
|
+
401: unknown;
|
|
398
|
+
/**
|
|
399
|
+
* Internal server error
|
|
400
|
+
*/
|
|
401
|
+
500: unknown;
|
|
402
|
+
};
|
|
403
|
+
|
|
404
|
+
export type PostApiConversationMemoryObservationsResponses = {
|
|
405
|
+
/**
|
|
406
|
+
* Success
|
|
407
|
+
*/
|
|
408
|
+
200: unknown;
|
|
409
|
+
};
|
|
410
|
+
|
|
411
|
+
export type DeleteApiConversationMemoryProfilesData = {
|
|
412
|
+
body?: never;
|
|
413
|
+
path?: never;
|
|
414
|
+
query: {
|
|
415
|
+
profileId: string;
|
|
416
|
+
};
|
|
417
|
+
url: '/api/conversation-memory/profiles';
|
|
418
|
+
};
|
|
419
|
+
|
|
420
|
+
export type DeleteApiConversationMemoryProfilesErrors = {
|
|
421
|
+
/**
|
|
422
|
+
* Unauthorized
|
|
423
|
+
*/
|
|
424
|
+
401: unknown;
|
|
425
|
+
/**
|
|
426
|
+
* Internal server error
|
|
427
|
+
*/
|
|
428
|
+
500: unknown;
|
|
429
|
+
};
|
|
430
|
+
|
|
431
|
+
export type DeleteApiConversationMemoryProfilesResponses = {
|
|
432
|
+
/**
|
|
433
|
+
* Success
|
|
434
|
+
*/
|
|
435
|
+
200: unknown;
|
|
436
|
+
};
|
|
437
|
+
|
|
438
|
+
export type GetApiConversationMemoryProfilesData = {
|
|
439
|
+
body?: never;
|
|
440
|
+
path?: never;
|
|
441
|
+
query?: {
|
|
442
|
+
profileId?: string;
|
|
443
|
+
traitGroups?: string;
|
|
444
|
+
pageSize?: string;
|
|
445
|
+
pageToken?: string;
|
|
446
|
+
orderBy?: string;
|
|
447
|
+
};
|
|
448
|
+
url: '/api/conversation-memory/profiles';
|
|
449
|
+
};
|
|
450
|
+
|
|
451
|
+
export type GetApiConversationMemoryProfilesErrors = {
|
|
452
|
+
/**
|
|
453
|
+
* Unauthorized
|
|
454
|
+
*/
|
|
455
|
+
401: unknown;
|
|
456
|
+
/**
|
|
457
|
+
* Internal server error
|
|
458
|
+
*/
|
|
459
|
+
500: unknown;
|
|
460
|
+
};
|
|
461
|
+
|
|
462
|
+
export type GetApiConversationMemoryProfilesResponses = {
|
|
463
|
+
/**
|
|
464
|
+
* Success
|
|
465
|
+
*/
|
|
466
|
+
200: unknown;
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
export type PatchApiConversationMemoryProfilesData = {
|
|
470
|
+
body: {
|
|
471
|
+
[key: string]: unknown;
|
|
472
|
+
};
|
|
473
|
+
path?: never;
|
|
474
|
+
query: {
|
|
475
|
+
profileId: string;
|
|
476
|
+
};
|
|
477
|
+
url: '/api/conversation-memory/profiles';
|
|
478
|
+
};
|
|
479
|
+
|
|
480
|
+
export type PatchApiConversationMemoryProfilesErrors = {
|
|
481
|
+
/**
|
|
482
|
+
* Unauthorized
|
|
483
|
+
*/
|
|
484
|
+
401: unknown;
|
|
485
|
+
/**
|
|
486
|
+
* Internal server error
|
|
487
|
+
*/
|
|
488
|
+
500: unknown;
|
|
489
|
+
};
|
|
490
|
+
|
|
491
|
+
export type PatchApiConversationMemoryProfilesResponses = {
|
|
492
|
+
/**
|
|
493
|
+
* Success
|
|
494
|
+
*/
|
|
495
|
+
200: unknown;
|
|
496
|
+
};
|
|
497
|
+
|
|
498
|
+
export type PostApiConversationMemoryProfilesData = {
|
|
499
|
+
body: {
|
|
500
|
+
[key: string]: unknown;
|
|
501
|
+
};
|
|
502
|
+
path?: never;
|
|
503
|
+
query: {
|
|
504
|
+
profileId: string;
|
|
505
|
+
};
|
|
506
|
+
url: '/api/conversation-memory/profiles';
|
|
507
|
+
};
|
|
508
|
+
|
|
509
|
+
export type PostApiConversationMemoryProfilesErrors = {
|
|
510
|
+
/**
|
|
511
|
+
* Unauthorized
|
|
512
|
+
*/
|
|
513
|
+
401: unknown;
|
|
514
|
+
/**
|
|
515
|
+
* Internal server error
|
|
516
|
+
*/
|
|
517
|
+
500: unknown;
|
|
518
|
+
};
|
|
519
|
+
|
|
520
|
+
export type PostApiConversationMemoryProfilesResponses = {
|
|
521
|
+
/**
|
|
522
|
+
* Success
|
|
523
|
+
*/
|
|
524
|
+
200: unknown;
|
|
525
|
+
};
|
|
526
|
+
|
|
527
|
+
export type PostApiConversationMemoryProfilesLookupData = {
|
|
528
|
+
body: {
|
|
529
|
+
[key: string]: unknown;
|
|
530
|
+
};
|
|
531
|
+
path?: never;
|
|
532
|
+
query?: never;
|
|
533
|
+
url: '/api/conversation-memory/profiles-lookup';
|
|
534
|
+
};
|
|
535
|
+
|
|
536
|
+
export type PostApiConversationMemoryProfilesLookupErrors = {
|
|
537
|
+
/**
|
|
538
|
+
* Unauthorized
|
|
539
|
+
*/
|
|
540
|
+
401: unknown;
|
|
541
|
+
/**
|
|
542
|
+
* Internal server error
|
|
543
|
+
*/
|
|
544
|
+
500: unknown;
|
|
545
|
+
};
|
|
546
|
+
|
|
547
|
+
export type PostApiConversationMemoryProfilesLookupResponses = {
|
|
548
|
+
/**
|
|
549
|
+
* Success
|
|
550
|
+
*/
|
|
551
|
+
200: unknown;
|
|
552
|
+
};
|
|
553
|
+
|
|
554
|
+
export type PostApiConversationMemoryRecallData = {
|
|
555
|
+
body: {
|
|
556
|
+
[key: string]: unknown;
|
|
557
|
+
};
|
|
558
|
+
path?: never;
|
|
559
|
+
query?: never;
|
|
560
|
+
url: '/api/conversation-memory/recall';
|
|
561
|
+
};
|
|
562
|
+
|
|
563
|
+
export type PostApiConversationMemoryRecallErrors = {
|
|
564
|
+
/**
|
|
565
|
+
* Unauthorized
|
|
566
|
+
*/
|
|
567
|
+
401: unknown;
|
|
568
|
+
/**
|
|
569
|
+
* Internal server error
|
|
570
|
+
*/
|
|
571
|
+
500: unknown;
|
|
572
|
+
};
|
|
573
|
+
|
|
574
|
+
export type PostApiConversationMemoryRecallResponses = {
|
|
575
|
+
/**
|
|
576
|
+
* Success
|
|
577
|
+
*/
|
|
578
|
+
200: unknown;
|
|
579
|
+
};
|
|
580
|
+
|
|
581
|
+
export type DeleteApiConversationMemoryResetData = {
|
|
582
|
+
body?: never;
|
|
583
|
+
path?: never;
|
|
584
|
+
query: {
|
|
585
|
+
profileId: string;
|
|
586
|
+
};
|
|
587
|
+
url: '/api/conversation-memory/reset';
|
|
588
|
+
};
|
|
589
|
+
|
|
590
|
+
export type DeleteApiConversationMemoryResetErrors = {
|
|
591
|
+
/**
|
|
592
|
+
* Unauthorized
|
|
593
|
+
*/
|
|
594
|
+
401: unknown;
|
|
595
|
+
/**
|
|
596
|
+
* Internal server error
|
|
597
|
+
*/
|
|
598
|
+
500: unknown;
|
|
599
|
+
};
|
|
600
|
+
|
|
601
|
+
export type DeleteApiConversationMemoryResetResponses = {
|
|
602
|
+
/**
|
|
603
|
+
* Success
|
|
604
|
+
*/
|
|
605
|
+
200: unknown;
|
|
606
|
+
};
|
|
607
|
+
|
|
608
|
+
export type GetApiConversationMemoryTraitGroupsData = {
|
|
609
|
+
body?: never;
|
|
610
|
+
path?: never;
|
|
611
|
+
query?: {
|
|
612
|
+
traitGroupName?: string;
|
|
613
|
+
includeTraits?: string;
|
|
614
|
+
pageSize?: string;
|
|
615
|
+
pageToken?: string;
|
|
616
|
+
};
|
|
617
|
+
url: '/api/conversation-memory/trait-groups';
|
|
618
|
+
};
|
|
619
|
+
|
|
620
|
+
export type GetApiConversationMemoryTraitGroupsErrors = {
|
|
621
|
+
/**
|
|
622
|
+
* Unauthorized
|
|
623
|
+
*/
|
|
624
|
+
401: unknown;
|
|
625
|
+
/**
|
|
626
|
+
* Internal server error
|
|
627
|
+
*/
|
|
628
|
+
500: unknown;
|
|
629
|
+
};
|
|
630
|
+
|
|
631
|
+
export type GetApiConversationMemoryTraitGroupsResponses = {
|
|
632
|
+
/**
|
|
633
|
+
* Success
|
|
634
|
+
*/
|
|
635
|
+
200: unknown;
|
|
636
|
+
};
|
|
637
|
+
|
|
638
|
+
export type PatchApiConversationMemoryTraitGroupsData = {
|
|
639
|
+
body: {
|
|
640
|
+
[key: string]: unknown;
|
|
641
|
+
};
|
|
642
|
+
path?: never;
|
|
643
|
+
query?: never;
|
|
644
|
+
url: '/api/conversation-memory/trait-groups';
|
|
645
|
+
};
|
|
646
|
+
|
|
647
|
+
export type PatchApiConversationMemoryTraitGroupsErrors = {
|
|
648
|
+
/**
|
|
649
|
+
* Unauthorized
|
|
650
|
+
*/
|
|
651
|
+
401: unknown;
|
|
652
|
+
/**
|
|
653
|
+
* Internal server error
|
|
654
|
+
*/
|
|
655
|
+
500: unknown;
|
|
656
|
+
};
|
|
657
|
+
|
|
658
|
+
export type PatchApiConversationMemoryTraitGroupsResponses = {
|
|
659
|
+
/**
|
|
660
|
+
* Success
|
|
661
|
+
*/
|
|
662
|
+
200: unknown;
|
|
663
|
+
};
|
|
664
|
+
|
|
665
|
+
export type PostApiConversationMemoryTraitGroupsData = {
|
|
666
|
+
body: {
|
|
667
|
+
[key: string]: unknown;
|
|
668
|
+
};
|
|
669
|
+
path?: never;
|
|
670
|
+
query?: never;
|
|
671
|
+
url: '/api/conversation-memory/trait-groups';
|
|
672
|
+
};
|
|
673
|
+
|
|
674
|
+
export type PostApiConversationMemoryTraitGroupsErrors = {
|
|
675
|
+
/**
|
|
676
|
+
* Unauthorized
|
|
677
|
+
*/
|
|
678
|
+
401: unknown;
|
|
679
|
+
/**
|
|
680
|
+
* Internal server error
|
|
681
|
+
*/
|
|
682
|
+
500: unknown;
|
|
683
|
+
};
|
|
684
|
+
|
|
685
|
+
export type PostApiConversationMemoryTraitGroupsResponses = {
|
|
686
|
+
/**
|
|
687
|
+
* Success
|
|
688
|
+
*/
|
|
689
|
+
200: unknown;
|
|
690
|
+
};
|
|
691
|
+
|
|
692
|
+
export type GetApiConversationMemoryTraitsData = {
|
|
693
|
+
body?: never;
|
|
694
|
+
path?: never;
|
|
695
|
+
query: {
|
|
696
|
+
profileId: string;
|
|
697
|
+
pageSize?: string;
|
|
698
|
+
pageToken?: string;
|
|
699
|
+
orderBy?: string;
|
|
700
|
+
traitGroups?: string;
|
|
701
|
+
};
|
|
702
|
+
url: '/api/conversation-memory/traits';
|
|
703
|
+
};
|
|
704
|
+
|
|
705
|
+
export type GetApiConversationMemoryTraitsErrors = {
|
|
706
|
+
/**
|
|
707
|
+
* Unauthorized
|
|
708
|
+
*/
|
|
709
|
+
401: unknown;
|
|
710
|
+
/**
|
|
711
|
+
* Internal server error
|
|
712
|
+
*/
|
|
713
|
+
500: unknown;
|
|
714
|
+
};
|
|
715
|
+
|
|
716
|
+
export type GetApiConversationMemoryTraitsResponses = {
|
|
717
|
+
/**
|
|
718
|
+
* Success
|
|
719
|
+
*/
|
|
720
|
+
200: unknown;
|
|
721
|
+
};
|
|
722
|
+
|
|
723
|
+
export type DeleteApiConversationalIntelligenceOperatorData = {
|
|
724
|
+
body?: never;
|
|
725
|
+
path?: never;
|
|
726
|
+
query: {
|
|
727
|
+
intelligenceOperatorId: string;
|
|
728
|
+
};
|
|
729
|
+
url: '/api/conversational-intelligence-operator';
|
|
730
|
+
};
|
|
731
|
+
|
|
732
|
+
export type DeleteApiConversationalIntelligenceOperatorErrors = {
|
|
733
|
+
/**
|
|
734
|
+
* Unauthorized
|
|
735
|
+
*/
|
|
736
|
+
401: unknown;
|
|
737
|
+
/**
|
|
738
|
+
* Internal server error
|
|
739
|
+
*/
|
|
740
|
+
500: unknown;
|
|
741
|
+
};
|
|
742
|
+
|
|
743
|
+
export type DeleteApiConversationalIntelligenceOperatorResponses = {
|
|
744
|
+
/**
|
|
745
|
+
* Success
|
|
746
|
+
*/
|
|
747
|
+
200: unknown;
|
|
748
|
+
};
|
|
749
|
+
|
|
750
|
+
export type GetApiConversationalIntelligenceOperatorData = {
|
|
751
|
+
body?: never;
|
|
752
|
+
path?: never;
|
|
753
|
+
query?: {
|
|
754
|
+
intelligenceOperatorId?: string;
|
|
755
|
+
pageToken?: string;
|
|
756
|
+
};
|
|
757
|
+
url: '/api/conversational-intelligence-operator';
|
|
758
|
+
};
|
|
759
|
+
|
|
760
|
+
export type GetApiConversationalIntelligenceOperatorErrors = {
|
|
761
|
+
/**
|
|
762
|
+
* Unauthorized
|
|
763
|
+
*/
|
|
764
|
+
401: unknown;
|
|
765
|
+
/**
|
|
766
|
+
* Internal server error
|
|
767
|
+
*/
|
|
768
|
+
500: unknown;
|
|
769
|
+
};
|
|
770
|
+
|
|
771
|
+
export type GetApiConversationalIntelligenceOperatorResponses = {
|
|
772
|
+
/**
|
|
773
|
+
* Success
|
|
774
|
+
*/
|
|
775
|
+
200: unknown;
|
|
776
|
+
};
|
|
777
|
+
|
|
778
|
+
export type PostApiConversationalIntelligenceOperatorData = {
|
|
779
|
+
body: {
|
|
780
|
+
[key: string]: unknown;
|
|
781
|
+
};
|
|
782
|
+
path?: never;
|
|
783
|
+
query?: {
|
|
784
|
+
intelligenceOperatorId?: string;
|
|
785
|
+
};
|
|
786
|
+
url: '/api/conversational-intelligence-operator';
|
|
787
|
+
};
|
|
788
|
+
|
|
789
|
+
export type PostApiConversationalIntelligenceOperatorErrors = {
|
|
790
|
+
/**
|
|
791
|
+
* Unauthorized
|
|
792
|
+
*/
|
|
793
|
+
401: unknown;
|
|
794
|
+
/**
|
|
795
|
+
* Internal server error
|
|
796
|
+
*/
|
|
797
|
+
500: unknown;
|
|
798
|
+
};
|
|
799
|
+
|
|
800
|
+
export type PostApiConversationalIntelligenceOperatorResponses = {
|
|
801
|
+
/**
|
|
802
|
+
* Success
|
|
803
|
+
*/
|
|
804
|
+
200: unknown;
|
|
805
|
+
};
|
|
806
|
+
|
|
807
|
+
export type PutApiConversationalIntelligenceOperatorData = {
|
|
808
|
+
body: {
|
|
809
|
+
[key: string]: unknown;
|
|
810
|
+
};
|
|
811
|
+
path?: never;
|
|
812
|
+
query: {
|
|
813
|
+
intelligenceOperatorId: string;
|
|
814
|
+
};
|
|
815
|
+
url: '/api/conversational-intelligence-operator';
|
|
816
|
+
};
|
|
817
|
+
|
|
818
|
+
export type PutApiConversationalIntelligenceOperatorErrors = {
|
|
819
|
+
/**
|
|
820
|
+
* Unauthorized
|
|
821
|
+
*/
|
|
822
|
+
401: unknown;
|
|
823
|
+
/**
|
|
824
|
+
* Internal server error
|
|
825
|
+
*/
|
|
826
|
+
500: unknown;
|
|
827
|
+
};
|
|
828
|
+
|
|
829
|
+
export type PutApiConversationalIntelligenceOperatorResponses = {
|
|
830
|
+
/**
|
|
831
|
+
* Success
|
|
832
|
+
*/
|
|
833
|
+
200: unknown;
|
|
834
|
+
};
|
|
835
|
+
|
|
836
|
+
export type DeleteApiConversationsDeleteData = {
|
|
837
|
+
body?: never;
|
|
838
|
+
path?: never;
|
|
839
|
+
query?: never;
|
|
840
|
+
url: '/api/conversations/delete';
|
|
841
|
+
};
|
|
842
|
+
|
|
843
|
+
export type DeleteApiConversationsDeleteErrors = {
|
|
844
|
+
/**
|
|
845
|
+
* Unauthorized
|
|
846
|
+
*/
|
|
847
|
+
401: unknown;
|
|
848
|
+
/**
|
|
849
|
+
* Internal server error
|
|
850
|
+
*/
|
|
851
|
+
500: unknown;
|
|
852
|
+
};
|
|
853
|
+
|
|
854
|
+
export type DeleteApiConversationsDeleteResponses = {
|
|
855
|
+
/**
|
|
856
|
+
* Success
|
|
857
|
+
*/
|
|
858
|
+
200: unknown;
|
|
859
|
+
};
|
|
860
|
+
|
|
861
|
+
export type PostApiConversationsSaveData = {
|
|
862
|
+
body: {
|
|
863
|
+
[key: string]: unknown;
|
|
864
|
+
};
|
|
865
|
+
path?: never;
|
|
866
|
+
query?: never;
|
|
867
|
+
url: '/api/conversations/save';
|
|
868
|
+
};
|
|
869
|
+
|
|
870
|
+
export type PostApiConversationsSaveErrors = {
|
|
871
|
+
/**
|
|
872
|
+
* Unauthorized
|
|
873
|
+
*/
|
|
874
|
+
401: unknown;
|
|
875
|
+
/**
|
|
876
|
+
* Internal server error
|
|
877
|
+
*/
|
|
878
|
+
500: unknown;
|
|
879
|
+
};
|
|
880
|
+
|
|
881
|
+
export type PostApiConversationsSaveResponses = {
|
|
882
|
+
/**
|
|
883
|
+
* Success
|
|
884
|
+
*/
|
|
885
|
+
200: unknown;
|
|
886
|
+
};
|
|
887
|
+
|
|
888
|
+
export type PostApiConversationsShareData = {
|
|
889
|
+
body: {
|
|
890
|
+
[key: string]: unknown;
|
|
891
|
+
};
|
|
892
|
+
path?: never;
|
|
893
|
+
query?: never;
|
|
894
|
+
url: '/api/conversations/share';
|
|
895
|
+
};
|
|
896
|
+
|
|
897
|
+
export type PostApiConversationsShareErrors = {
|
|
898
|
+
/**
|
|
899
|
+
* Unauthorized
|
|
900
|
+
*/
|
|
901
|
+
401: unknown;
|
|
902
|
+
/**
|
|
903
|
+
* Internal server error
|
|
904
|
+
*/
|
|
905
|
+
500: unknown;
|
|
906
|
+
};
|
|
907
|
+
|
|
908
|
+
export type PostApiConversationsShareResponses = {
|
|
909
|
+
/**
|
|
910
|
+
* Success
|
|
911
|
+
*/
|
|
912
|
+
200: unknown;
|
|
913
|
+
};
|
|
914
|
+
|
|
915
|
+
export type GetApiCountryConfigsData = {
|
|
916
|
+
body?: never;
|
|
917
|
+
path?: never;
|
|
918
|
+
query?: never;
|
|
919
|
+
url: '/api/country-configs';
|
|
920
|
+
};
|
|
921
|
+
|
|
922
|
+
export type GetApiCountryConfigsErrors = {
|
|
923
|
+
/**
|
|
924
|
+
* Unauthorized
|
|
925
|
+
*/
|
|
926
|
+
401: unknown;
|
|
927
|
+
/**
|
|
928
|
+
* Internal server error
|
|
929
|
+
*/
|
|
930
|
+
500: unknown;
|
|
931
|
+
};
|
|
932
|
+
|
|
933
|
+
export type GetApiCountryConfigsResponses = {
|
|
934
|
+
/**
|
|
935
|
+
* Success
|
|
936
|
+
*/
|
|
937
|
+
200: unknown;
|
|
938
|
+
};
|
|
939
|
+
|
|
940
|
+
export type PostApiCreateExternalFlexConnectionData = {
|
|
941
|
+
body: {
|
|
942
|
+
[key: string]: unknown;
|
|
943
|
+
};
|
|
944
|
+
path?: never;
|
|
945
|
+
query?: never;
|
|
946
|
+
url: '/api/create-external-flex-connection';
|
|
947
|
+
};
|
|
948
|
+
|
|
949
|
+
export type PostApiCreateExternalFlexConnectionErrors = {
|
|
950
|
+
/**
|
|
951
|
+
* Internal server error
|
|
952
|
+
*/
|
|
953
|
+
500: unknown;
|
|
954
|
+
};
|
|
955
|
+
|
|
956
|
+
export type PostApiCreateExternalFlexConnectionResponses = {
|
|
957
|
+
/**
|
|
958
|
+
* Success
|
|
959
|
+
*/
|
|
960
|
+
200: unknown;
|
|
961
|
+
};
|
|
962
|
+
|
|
963
|
+
export type PostApiEnhancePromptData = {
|
|
964
|
+
body: {
|
|
965
|
+
[key: string]: unknown;
|
|
966
|
+
};
|
|
967
|
+
path?: never;
|
|
968
|
+
query?: never;
|
|
969
|
+
url: '/api/enhance-prompt';
|
|
970
|
+
};
|
|
971
|
+
|
|
972
|
+
export type PostApiEnhancePromptErrors = {
|
|
973
|
+
/**
|
|
974
|
+
* Unauthorized
|
|
975
|
+
*/
|
|
976
|
+
401: unknown;
|
|
977
|
+
/**
|
|
978
|
+
* Internal server error
|
|
979
|
+
*/
|
|
980
|
+
500: unknown;
|
|
981
|
+
};
|
|
982
|
+
|
|
983
|
+
export type PostApiEnhancePromptResponses = {
|
|
984
|
+
/**
|
|
985
|
+
* Success
|
|
986
|
+
*/
|
|
987
|
+
200: unknown;
|
|
988
|
+
};
|
|
989
|
+
|
|
990
|
+
export type PostApiGenerateTagsData = {
|
|
991
|
+
body: {
|
|
992
|
+
[key: string]: unknown;
|
|
993
|
+
};
|
|
994
|
+
path?: never;
|
|
995
|
+
query?: never;
|
|
996
|
+
url: '/api/generate-tags';
|
|
997
|
+
};
|
|
998
|
+
|
|
999
|
+
export type PostApiGenerateTagsErrors = {
|
|
1000
|
+
/**
|
|
1001
|
+
* Unauthorized
|
|
1002
|
+
*/
|
|
1003
|
+
401: unknown;
|
|
1004
|
+
/**
|
|
1005
|
+
* Internal server error
|
|
1006
|
+
*/
|
|
1007
|
+
500: unknown;
|
|
1008
|
+
};
|
|
1009
|
+
|
|
1010
|
+
export type PostApiGenerateTagsResponses = {
|
|
1011
|
+
/**
|
|
1012
|
+
* Success
|
|
1013
|
+
*/
|
|
1014
|
+
200: unknown;
|
|
1015
|
+
};
|
|
1016
|
+
|
|
1017
|
+
export type PostApiIncrementViewCountData = {
|
|
1018
|
+
body: {
|
|
1019
|
+
[key: string]: unknown;
|
|
1020
|
+
};
|
|
1021
|
+
path?: never;
|
|
1022
|
+
query?: never;
|
|
1023
|
+
url: '/api/increment-view-count';
|
|
1024
|
+
};
|
|
1025
|
+
|
|
1026
|
+
export type PostApiIncrementViewCountErrors = {
|
|
1027
|
+
/**
|
|
1028
|
+
* Unauthorized
|
|
1029
|
+
*/
|
|
1030
|
+
401: unknown;
|
|
1031
|
+
/**
|
|
1032
|
+
* Internal server error
|
|
1033
|
+
*/
|
|
1034
|
+
500: unknown;
|
|
1035
|
+
};
|
|
1036
|
+
|
|
1037
|
+
export type PostApiIncrementViewCountResponses = {
|
|
1038
|
+
/**
|
|
1039
|
+
* Success
|
|
1040
|
+
*/
|
|
1041
|
+
200: unknown;
|
|
1042
|
+
};
|
|
1043
|
+
|
|
1044
|
+
export type GetApiIntelligenceConfigurationData = {
|
|
1045
|
+
body?: never;
|
|
1046
|
+
path?: never;
|
|
1047
|
+
query?: {
|
|
1048
|
+
intelligenceConfigurationId?: string;
|
|
1049
|
+
pageToken?: string;
|
|
1050
|
+
};
|
|
1051
|
+
url: '/api/intelligence-configuration';
|
|
1052
|
+
};
|
|
1053
|
+
|
|
1054
|
+
export type GetApiIntelligenceConfigurationErrors = {
|
|
1055
|
+
/**
|
|
1056
|
+
* Unauthorized
|
|
1057
|
+
*/
|
|
1058
|
+
401: unknown;
|
|
1059
|
+
/**
|
|
1060
|
+
* Internal server error
|
|
1061
|
+
*/
|
|
1062
|
+
500: unknown;
|
|
1063
|
+
};
|
|
1064
|
+
|
|
1065
|
+
export type GetApiIntelligenceConfigurationResponses = {
|
|
1066
|
+
/**
|
|
1067
|
+
* Success
|
|
1068
|
+
*/
|
|
1069
|
+
200: unknown;
|
|
1070
|
+
};
|
|
1071
|
+
|
|
1072
|
+
export type PostApiIntelligenceConfigurationData = {
|
|
1073
|
+
body: {
|
|
1074
|
+
[key: string]: unknown;
|
|
1075
|
+
};
|
|
1076
|
+
path?: never;
|
|
1077
|
+
query?: never;
|
|
1078
|
+
url: '/api/intelligence-configuration';
|
|
1079
|
+
};
|
|
1080
|
+
|
|
1081
|
+
export type PostApiIntelligenceConfigurationErrors = {
|
|
1082
|
+
/**
|
|
1083
|
+
* Unauthorized
|
|
1084
|
+
*/
|
|
1085
|
+
401: unknown;
|
|
1086
|
+
/**
|
|
1087
|
+
* Internal server error
|
|
1088
|
+
*/
|
|
1089
|
+
500: unknown;
|
|
1090
|
+
};
|
|
1091
|
+
|
|
1092
|
+
export type PostApiIntelligenceConfigurationResponses = {
|
|
1093
|
+
/**
|
|
1094
|
+
* Success
|
|
1095
|
+
*/
|
|
1096
|
+
200: unknown;
|
|
1097
|
+
};
|
|
1098
|
+
|
|
1099
|
+
export type PutApiIntelligenceConfigurationData = {
|
|
1100
|
+
body: {
|
|
1101
|
+
[key: string]: unknown;
|
|
1102
|
+
};
|
|
1103
|
+
path?: never;
|
|
1104
|
+
query?: never;
|
|
1105
|
+
url: '/api/intelligence-configuration';
|
|
1106
|
+
};
|
|
1107
|
+
|
|
1108
|
+
export type PutApiIntelligenceConfigurationErrors = {
|
|
1109
|
+
/**
|
|
1110
|
+
* Unauthorized
|
|
1111
|
+
*/
|
|
1112
|
+
401: unknown;
|
|
1113
|
+
/**
|
|
1114
|
+
* Internal server error
|
|
1115
|
+
*/
|
|
1116
|
+
500: unknown;
|
|
1117
|
+
};
|
|
1118
|
+
|
|
1119
|
+
export type PutApiIntelligenceConfigurationResponses = {
|
|
1120
|
+
/**
|
|
1121
|
+
* Success
|
|
1122
|
+
*/
|
|
1123
|
+
200: unknown;
|
|
1124
|
+
};
|
|
1125
|
+
|
|
1126
|
+
export type GetApiInternalNavData = {
|
|
1127
|
+
body?: never;
|
|
1128
|
+
path?: never;
|
|
1129
|
+
query?: never;
|
|
1130
|
+
url: '/api/internal-nav';
|
|
1131
|
+
};
|
|
1132
|
+
|
|
1133
|
+
export type GetApiInternalNavErrors = {
|
|
1134
|
+
/**
|
|
1135
|
+
* Internal server error
|
|
1136
|
+
*/
|
|
1137
|
+
500: unknown;
|
|
1138
|
+
};
|
|
1139
|
+
|
|
1140
|
+
export type GetApiInternalNavResponses = {
|
|
1141
|
+
/**
|
|
1142
|
+
* Success
|
|
1143
|
+
*/
|
|
1144
|
+
200: unknown;
|
|
1145
|
+
};
|
|
1146
|
+
|
|
1147
|
+
export type GetApiIsvLogoData = {
|
|
1148
|
+
body?: never;
|
|
1149
|
+
path?: never;
|
|
1150
|
+
query: {
|
|
1151
|
+
company: string;
|
|
1152
|
+
};
|
|
1153
|
+
url: '/api/isv/logo';
|
|
1154
|
+
};
|
|
1155
|
+
|
|
1156
|
+
export type GetApiIsvLogoErrors = {
|
|
1157
|
+
/**
|
|
1158
|
+
* Internal server error
|
|
1159
|
+
*/
|
|
1160
|
+
500: unknown;
|
|
1161
|
+
};
|
|
1162
|
+
|
|
1163
|
+
export type GetApiIsvLogoResponses = {
|
|
1164
|
+
/**
|
|
1165
|
+
* Success
|
|
1166
|
+
*/
|
|
1167
|
+
200: unknown;
|
|
1168
|
+
};
|
|
1169
|
+
|
|
1170
|
+
export type DeleteApiLeadGenData = {
|
|
1171
|
+
body?: never;
|
|
1172
|
+
path?: never;
|
|
1173
|
+
query?: never;
|
|
1174
|
+
url: '/api/lead-gen';
|
|
1175
|
+
};
|
|
1176
|
+
|
|
1177
|
+
export type DeleteApiLeadGenErrors = {
|
|
1178
|
+
/**
|
|
1179
|
+
* Unauthorized
|
|
1180
|
+
*/
|
|
1181
|
+
401: unknown;
|
|
1182
|
+
/**
|
|
1183
|
+
* Internal server error
|
|
1184
|
+
*/
|
|
1185
|
+
500: unknown;
|
|
1186
|
+
};
|
|
1187
|
+
|
|
1188
|
+
export type DeleteApiLeadGenResponses = {
|
|
1189
|
+
/**
|
|
1190
|
+
* Success
|
|
1191
|
+
*/
|
|
1192
|
+
200: unknown;
|
|
1193
|
+
};
|
|
1194
|
+
|
|
1195
|
+
export type GetApiLeadGenData = {
|
|
1196
|
+
body?: never;
|
|
1197
|
+
path?: never;
|
|
1198
|
+
query: {
|
|
1199
|
+
objectID: string;
|
|
1200
|
+
agentNumber: string;
|
|
1201
|
+
};
|
|
1202
|
+
url: '/api/lead-gen';
|
|
1203
|
+
};
|
|
1204
|
+
|
|
1205
|
+
export type GetApiLeadGenErrors = {
|
|
1206
|
+
/**
|
|
1207
|
+
* Unauthorized
|
|
1208
|
+
*/
|
|
1209
|
+
401: unknown;
|
|
1210
|
+
/**
|
|
1211
|
+
* Internal server error
|
|
1212
|
+
*/
|
|
1213
|
+
500: unknown;
|
|
1214
|
+
};
|
|
1215
|
+
|
|
1216
|
+
export type GetApiLeadGenResponses = {
|
|
1217
|
+
/**
|
|
1218
|
+
* Success
|
|
1219
|
+
*/
|
|
1220
|
+
200: unknown;
|
|
1221
|
+
};
|
|
1222
|
+
|
|
1223
|
+
export type PatchApiLeadGenData = {
|
|
1224
|
+
body: {
|
|
1225
|
+
[key: string]: unknown;
|
|
1226
|
+
};
|
|
1227
|
+
path?: never;
|
|
1228
|
+
query?: never;
|
|
1229
|
+
url: '/api/lead-gen';
|
|
1230
|
+
};
|
|
1231
|
+
|
|
1232
|
+
export type PatchApiLeadGenErrors = {
|
|
1233
|
+
/**
|
|
1234
|
+
* Unauthorized
|
|
1235
|
+
*/
|
|
1236
|
+
401: unknown;
|
|
1237
|
+
/**
|
|
1238
|
+
* Internal server error
|
|
1239
|
+
*/
|
|
1240
|
+
500: unknown;
|
|
1241
|
+
};
|
|
1242
|
+
|
|
1243
|
+
export type PatchApiLeadGenResponses = {
|
|
1244
|
+
/**
|
|
1245
|
+
* Success
|
|
1246
|
+
*/
|
|
1247
|
+
200: unknown;
|
|
1248
|
+
};
|
|
1249
|
+
|
|
1250
|
+
export type PostApiLeadGenData = {
|
|
1251
|
+
body: {
|
|
1252
|
+
[key: string]: unknown;
|
|
1253
|
+
};
|
|
1254
|
+
path?: never;
|
|
1255
|
+
query?: never;
|
|
1256
|
+
url: '/api/lead-gen';
|
|
1257
|
+
};
|
|
1258
|
+
|
|
1259
|
+
export type PostApiLeadGenErrors = {
|
|
1260
|
+
/**
|
|
1261
|
+
* Unauthorized
|
|
1262
|
+
*/
|
|
1263
|
+
401: unknown;
|
|
1264
|
+
/**
|
|
1265
|
+
* Internal server error
|
|
1266
|
+
*/
|
|
1267
|
+
500: unknown;
|
|
1268
|
+
};
|
|
1269
|
+
|
|
1270
|
+
export type PostApiLeadGenResponses = {
|
|
1271
|
+
/**
|
|
1272
|
+
* Success
|
|
1273
|
+
*/
|
|
1274
|
+
200: unknown;
|
|
1275
|
+
};
|
|
1276
|
+
|
|
1277
|
+
export type DeleteApiLinkShortenerData = {
|
|
1278
|
+
body?: never;
|
|
1279
|
+
path?: never;
|
|
1280
|
+
query: {
|
|
1281
|
+
code: string;
|
|
1282
|
+
};
|
|
1283
|
+
url: '/api/link-shortener';
|
|
1284
|
+
};
|
|
1285
|
+
|
|
1286
|
+
export type DeleteApiLinkShortenerErrors = {
|
|
1287
|
+
/**
|
|
1288
|
+
* Unauthorized
|
|
1289
|
+
*/
|
|
1290
|
+
401: unknown;
|
|
1291
|
+
/**
|
|
1292
|
+
* Internal server error
|
|
1293
|
+
*/
|
|
1294
|
+
500: unknown;
|
|
1295
|
+
};
|
|
1296
|
+
|
|
1297
|
+
export type DeleteApiLinkShortenerResponses = {
|
|
1298
|
+
/**
|
|
1299
|
+
* Success
|
|
1300
|
+
*/
|
|
1301
|
+
200: unknown;
|
|
1302
|
+
};
|
|
1303
|
+
|
|
1304
|
+
export type GetApiLinkShortenerData = {
|
|
1305
|
+
body?: never;
|
|
1306
|
+
path?: never;
|
|
1307
|
+
query?: {
|
|
1308
|
+
code?: string;
|
|
1309
|
+
};
|
|
1310
|
+
url: '/api/link-shortener';
|
|
1311
|
+
};
|
|
1312
|
+
|
|
1313
|
+
export type GetApiLinkShortenerErrors = {
|
|
1314
|
+
/**
|
|
1315
|
+
* Unauthorized
|
|
1316
|
+
*/
|
|
1317
|
+
401: unknown;
|
|
1318
|
+
/**
|
|
1319
|
+
* Internal server error
|
|
1320
|
+
*/
|
|
1321
|
+
500: unknown;
|
|
1322
|
+
};
|
|
1323
|
+
|
|
1324
|
+
export type GetApiLinkShortenerResponses = {
|
|
1325
|
+
/**
|
|
1326
|
+
* Success
|
|
1327
|
+
*/
|
|
1328
|
+
200: unknown;
|
|
1329
|
+
};
|
|
1330
|
+
|
|
1331
|
+
export type PatchApiLinkShortenerData = {
|
|
1332
|
+
body: {
|
|
1333
|
+
[key: string]: unknown;
|
|
1334
|
+
};
|
|
1335
|
+
path?: never;
|
|
1336
|
+
query: {
|
|
1337
|
+
code: string;
|
|
1338
|
+
};
|
|
1339
|
+
url: '/api/link-shortener';
|
|
1340
|
+
};
|
|
1341
|
+
|
|
1342
|
+
export type PatchApiLinkShortenerErrors = {
|
|
1343
|
+
/**
|
|
1344
|
+
* Unauthorized
|
|
1345
|
+
*/
|
|
1346
|
+
401: unknown;
|
|
1347
|
+
/**
|
|
1348
|
+
* Internal server error
|
|
1349
|
+
*/
|
|
1350
|
+
500: unknown;
|
|
1351
|
+
};
|
|
1352
|
+
|
|
1353
|
+
export type PatchApiLinkShortenerResponses = {
|
|
1354
|
+
/**
|
|
1355
|
+
* Success
|
|
1356
|
+
*/
|
|
1357
|
+
200: unknown;
|
|
1358
|
+
};
|
|
1359
|
+
|
|
1360
|
+
export type PostApiLinkShortenerData = {
|
|
1361
|
+
body: {
|
|
1362
|
+
[key: string]: unknown;
|
|
1363
|
+
};
|
|
1364
|
+
path?: never;
|
|
1365
|
+
query?: {
|
|
1366
|
+
code?: string;
|
|
1367
|
+
};
|
|
1368
|
+
url: '/api/link-shortener';
|
|
1369
|
+
};
|
|
1370
|
+
|
|
1371
|
+
export type PostApiLinkShortenerErrors = {
|
|
1372
|
+
/**
|
|
1373
|
+
* Unauthorized
|
|
1374
|
+
*/
|
|
1375
|
+
401: unknown;
|
|
1376
|
+
/**
|
|
1377
|
+
* Internal server error
|
|
1378
|
+
*/
|
|
1379
|
+
500: unknown;
|
|
1380
|
+
};
|
|
1381
|
+
|
|
1382
|
+
export type PostApiLinkShortenerResponses = {
|
|
1383
|
+
/**
|
|
1384
|
+
* Success
|
|
1385
|
+
*/
|
|
1386
|
+
200: unknown;
|
|
1387
|
+
};
|
|
1388
|
+
|
|
1389
|
+
export type DeleteApiLiveNumbersData = {
|
|
1390
|
+
body?: never;
|
|
1391
|
+
path?: never;
|
|
1392
|
+
query?: never;
|
|
1393
|
+
url: '/api/live-numbers';
|
|
1394
|
+
};
|
|
1395
|
+
|
|
1396
|
+
export type DeleteApiLiveNumbersErrors = {
|
|
1397
|
+
/**
|
|
1398
|
+
* Unauthorized
|
|
1399
|
+
*/
|
|
1400
|
+
401: unknown;
|
|
1401
|
+
/**
|
|
1402
|
+
* Internal server error
|
|
1403
|
+
*/
|
|
1404
|
+
500: unknown;
|
|
1405
|
+
};
|
|
1406
|
+
|
|
1407
|
+
export type DeleteApiLiveNumbersResponses = {
|
|
1408
|
+
/**
|
|
1409
|
+
* Success
|
|
1410
|
+
*/
|
|
1411
|
+
200: unknown;
|
|
1412
|
+
};
|
|
1413
|
+
|
|
1414
|
+
export type GetApiLiveNumbersData = {
|
|
1415
|
+
body?: never;
|
|
1416
|
+
path?: never;
|
|
1417
|
+
query?: {
|
|
1418
|
+
countryCode?: string;
|
|
1419
|
+
};
|
|
1420
|
+
url: '/api/live-numbers';
|
|
1421
|
+
};
|
|
1422
|
+
|
|
1423
|
+
export type GetApiLiveNumbersErrors = {
|
|
1424
|
+
/**
|
|
1425
|
+
* Unauthorized
|
|
1426
|
+
*/
|
|
1427
|
+
401: unknown;
|
|
1428
|
+
/**
|
|
1429
|
+
* Internal server error
|
|
1430
|
+
*/
|
|
1431
|
+
500: unknown;
|
|
1432
|
+
};
|
|
1433
|
+
|
|
1434
|
+
export type GetApiLiveNumbersResponses = {
|
|
1435
|
+
/**
|
|
1436
|
+
* Success
|
|
1437
|
+
*/
|
|
1438
|
+
200: unknown;
|
|
1439
|
+
};
|
|
1440
|
+
|
|
1441
|
+
export type PostApiOutboundCallData = {
|
|
1442
|
+
body: {
|
|
1443
|
+
[key: string]: unknown;
|
|
1444
|
+
};
|
|
1445
|
+
path?: never;
|
|
1446
|
+
query?: never;
|
|
1447
|
+
url: '/api/outbound-call';
|
|
1448
|
+
};
|
|
1449
|
+
|
|
1450
|
+
export type PostApiOutboundCallErrors = {
|
|
1451
|
+
/**
|
|
1452
|
+
* Unauthorized
|
|
1453
|
+
*/
|
|
1454
|
+
401: unknown;
|
|
1455
|
+
/**
|
|
1456
|
+
* Internal server error
|
|
1457
|
+
*/
|
|
1458
|
+
500: unknown;
|
|
1459
|
+
};
|
|
1460
|
+
|
|
1461
|
+
export type PostApiOutboundCallResponses = {
|
|
1462
|
+
/**
|
|
1463
|
+
* Success
|
|
1464
|
+
*/
|
|
1465
|
+
200: unknown;
|
|
1466
|
+
};
|
|
1467
|
+
|
|
1468
|
+
export type PostApiOutboundCommunicationTextData = {
|
|
1469
|
+
body: {
|
|
1470
|
+
[key: string]: unknown;
|
|
1471
|
+
};
|
|
1472
|
+
path?: never;
|
|
1473
|
+
query?: never;
|
|
1474
|
+
url: '/api/outbound-communication-text';
|
|
1475
|
+
};
|
|
1476
|
+
|
|
1477
|
+
export type PostApiOutboundCommunicationTextErrors = {
|
|
1478
|
+
/**
|
|
1479
|
+
* Unauthorized
|
|
1480
|
+
*/
|
|
1481
|
+
401: unknown;
|
|
1482
|
+
/**
|
|
1483
|
+
* Internal server error
|
|
1484
|
+
*/
|
|
1485
|
+
500: unknown;
|
|
1486
|
+
};
|
|
1487
|
+
|
|
1488
|
+
export type PostApiOutboundCommunicationTextResponses = {
|
|
1489
|
+
/**
|
|
1490
|
+
* Success
|
|
1491
|
+
*/
|
|
1492
|
+
200: unknown;
|
|
1493
|
+
};
|
|
1494
|
+
|
|
1495
|
+
export type GetApiPhoneLogsByPhoneNumberData = {
|
|
1496
|
+
body?: never;
|
|
1497
|
+
path: {
|
|
1498
|
+
phoneNumber: string;
|
|
1499
|
+
};
|
|
1500
|
+
query?: {
|
|
1501
|
+
countryCode?: string;
|
|
1502
|
+
};
|
|
1503
|
+
url: '/api/phone-logs/{phoneNumber}';
|
|
1504
|
+
};
|
|
1505
|
+
|
|
1506
|
+
export type GetApiPhoneLogsByPhoneNumberErrors = {
|
|
1507
|
+
/**
|
|
1508
|
+
* Internal server error
|
|
1509
|
+
*/
|
|
1510
|
+
500: unknown;
|
|
1511
|
+
};
|
|
1512
|
+
|
|
1513
|
+
export type GetApiPhoneLogsByPhoneNumberResponses = {
|
|
1514
|
+
/**
|
|
1515
|
+
* Success
|
|
1516
|
+
*/
|
|
1517
|
+
200: unknown;
|
|
1518
|
+
};
|
|
1519
|
+
|
|
1520
|
+
export type GetApiRecentlyActiveNumbersData = {
|
|
1521
|
+
body?: never;
|
|
1522
|
+
path?: never;
|
|
1523
|
+
query?: {
|
|
1524
|
+
countryCode?: string;
|
|
1525
|
+
};
|
|
1526
|
+
url: '/api/recently-active-numbers';
|
|
1527
|
+
};
|
|
1528
|
+
|
|
1529
|
+
export type GetApiRecentlyActiveNumbersErrors = {
|
|
1530
|
+
/**
|
|
1531
|
+
* Unauthorized
|
|
1532
|
+
*/
|
|
1533
|
+
401: unknown;
|
|
1534
|
+
/**
|
|
1535
|
+
* Internal server error
|
|
1536
|
+
*/
|
|
1537
|
+
500: unknown;
|
|
1538
|
+
};
|
|
1539
|
+
|
|
1540
|
+
export type GetApiRecentlyActiveNumbersResponses = {
|
|
1541
|
+
/**
|
|
1542
|
+
* Success
|
|
1543
|
+
*/
|
|
1544
|
+
200: unknown;
|
|
1545
|
+
};
|
|
1546
|
+
|
|
1547
|
+
export type PostApiSegmentIdentifyData = {
|
|
1548
|
+
body: {
|
|
1549
|
+
[key: string]: unknown;
|
|
1550
|
+
};
|
|
1551
|
+
path?: never;
|
|
1552
|
+
query?: never;
|
|
1553
|
+
url: '/api/segment/identify';
|
|
1554
|
+
};
|
|
1555
|
+
|
|
1556
|
+
export type PostApiSegmentIdentifyErrors = {
|
|
1557
|
+
/**
|
|
1558
|
+
* Unauthorized
|
|
1559
|
+
*/
|
|
1560
|
+
401: unknown;
|
|
1561
|
+
/**
|
|
1562
|
+
* Internal server error
|
|
1563
|
+
*/
|
|
1564
|
+
500: unknown;
|
|
1565
|
+
};
|
|
1566
|
+
|
|
1567
|
+
export type PostApiSegmentIdentifyResponses = {
|
|
1568
|
+
/**
|
|
1569
|
+
* Success
|
|
1570
|
+
*/
|
|
1571
|
+
200: unknown;
|
|
1572
|
+
};
|
|
1573
|
+
|
|
1574
|
+
export type PostApiSegmentProfileData = {
|
|
1575
|
+
body: {
|
|
1576
|
+
[key: string]: unknown;
|
|
1577
|
+
};
|
|
1578
|
+
path?: never;
|
|
1579
|
+
query?: never;
|
|
1580
|
+
url: '/api/segment/profile';
|
|
1581
|
+
};
|
|
1582
|
+
|
|
1583
|
+
export type PostApiSegmentProfileErrors = {
|
|
1584
|
+
/**
|
|
1585
|
+
* Unauthorized
|
|
1586
|
+
*/
|
|
1587
|
+
401: unknown;
|
|
1588
|
+
/**
|
|
1589
|
+
* Internal server error
|
|
1590
|
+
*/
|
|
1591
|
+
500: unknown;
|
|
1592
|
+
};
|
|
1593
|
+
|
|
1594
|
+
export type PostApiSegmentProfileResponses = {
|
|
1595
|
+
/**
|
|
1596
|
+
* Success
|
|
1597
|
+
*/
|
|
1598
|
+
200: unknown;
|
|
1599
|
+
};
|
|
1600
|
+
|
|
1601
|
+
export type GetApiSessionData = {
|
|
1602
|
+
body?: never;
|
|
1603
|
+
path?: never;
|
|
1604
|
+
query?: never;
|
|
1605
|
+
url: '/api/session';
|
|
1606
|
+
};
|
|
1607
|
+
|
|
1608
|
+
export type GetApiSessionErrors = {
|
|
1609
|
+
/**
|
|
1610
|
+
* Internal server error
|
|
1611
|
+
*/
|
|
1612
|
+
500: unknown;
|
|
1613
|
+
};
|
|
1614
|
+
|
|
1615
|
+
export type GetApiSessionResponses = {
|
|
1616
|
+
/**
|
|
1617
|
+
* Success
|
|
1618
|
+
*/
|
|
1619
|
+
200: unknown;
|
|
1620
|
+
};
|
|
1621
|
+
|
|
1622
|
+
export type GetApiSupportedRegionsData = {
|
|
1623
|
+
body?: never;
|
|
1624
|
+
path?: never;
|
|
1625
|
+
query?: never;
|
|
1626
|
+
url: '/api/supported-regions';
|
|
1627
|
+
};
|
|
1628
|
+
|
|
1629
|
+
export type GetApiSupportedRegionsErrors = {
|
|
1630
|
+
/**
|
|
1631
|
+
* Unauthorized
|
|
1632
|
+
*/
|
|
1633
|
+
401: unknown;
|
|
1634
|
+
/**
|
|
1635
|
+
* Internal server error
|
|
1636
|
+
*/
|
|
1637
|
+
500: unknown;
|
|
1638
|
+
};
|
|
1639
|
+
|
|
1640
|
+
export type GetApiSupportedRegionsResponses = {
|
|
1641
|
+
/**
|
|
1642
|
+
* Success
|
|
1643
|
+
*/
|
|
1644
|
+
200: unknown;
|
|
1645
|
+
};
|
|
1646
|
+
|
|
1647
|
+
export type PostApiTagsData = {
|
|
1648
|
+
body: {
|
|
1649
|
+
[key: string]: unknown;
|
|
1650
|
+
};
|
|
1651
|
+
path?: never;
|
|
1652
|
+
query?: never;
|
|
1653
|
+
url: '/api/tags';
|
|
1654
|
+
};
|
|
1655
|
+
|
|
1656
|
+
export type PostApiTagsErrors = {
|
|
1657
|
+
/**
|
|
1658
|
+
* Internal server error
|
|
1659
|
+
*/
|
|
1660
|
+
500: unknown;
|
|
1661
|
+
};
|
|
1662
|
+
|
|
1663
|
+
export type PostApiTagsResponses = {
|
|
1664
|
+
/**
|
|
1665
|
+
* Success
|
|
1666
|
+
*/
|
|
1667
|
+
200: unknown;
|
|
1668
|
+
};
|
|
1669
|
+
|
|
1670
|
+
export type PostApiTelemetryData = {
|
|
1671
|
+
body?: never;
|
|
1672
|
+
path?: never;
|
|
1673
|
+
query?: {
|
|
1674
|
+
ddforward?: string;
|
|
1675
|
+
};
|
|
1676
|
+
url: '/api/telemetry';
|
|
1677
|
+
};
|
|
1678
|
+
|
|
1679
|
+
export type PostApiTelemetryErrors = {
|
|
1680
|
+
/**
|
|
1681
|
+
* Internal server error
|
|
1682
|
+
*/
|
|
1683
|
+
500: unknown;
|
|
1684
|
+
};
|
|
1685
|
+
|
|
1686
|
+
export type PostApiTelemetryResponses = {
|
|
1687
|
+
/**
|
|
1688
|
+
* Success
|
|
1689
|
+
*/
|
|
1690
|
+
200: unknown;
|
|
1691
|
+
};
|
|
1692
|
+
|
|
1693
|
+
export type DeleteApiTemplateData = {
|
|
1694
|
+
body?: never;
|
|
1695
|
+
path?: never;
|
|
1696
|
+
query?: {
|
|
1697
|
+
campaign?: string;
|
|
1698
|
+
};
|
|
1699
|
+
url: '/api/template';
|
|
1700
|
+
};
|
|
1701
|
+
|
|
1702
|
+
export type DeleteApiTemplateErrors = {
|
|
1703
|
+
/**
|
|
1704
|
+
* Unauthorized
|
|
1705
|
+
*/
|
|
1706
|
+
401: unknown;
|
|
1707
|
+
/**
|
|
1708
|
+
* Internal server error
|
|
1709
|
+
*/
|
|
1710
|
+
500: unknown;
|
|
1711
|
+
};
|
|
1712
|
+
|
|
1713
|
+
export type DeleteApiTemplateResponses = {
|
|
1714
|
+
/**
|
|
1715
|
+
* Success
|
|
1716
|
+
*/
|
|
1717
|
+
200: unknown;
|
|
1718
|
+
};
|
|
1719
|
+
|
|
1720
|
+
export type PostApiTemplateAutogenData = {
|
|
1721
|
+
body: {
|
|
1722
|
+
[key: string]: unknown;
|
|
1723
|
+
};
|
|
1724
|
+
path?: never;
|
|
1725
|
+
query?: never;
|
|
1726
|
+
url: '/api/template-autogen';
|
|
1727
|
+
};
|
|
1728
|
+
|
|
1729
|
+
export type PostApiTemplateAutogenErrors = {
|
|
1730
|
+
/**
|
|
1731
|
+
* Unauthorized
|
|
1732
|
+
*/
|
|
1733
|
+
401: unknown;
|
|
1734
|
+
/**
|
|
1735
|
+
* Internal server error
|
|
1736
|
+
*/
|
|
1737
|
+
500: unknown;
|
|
1738
|
+
};
|
|
1739
|
+
|
|
1740
|
+
export type PostApiTemplateAutogenResponses = {
|
|
1741
|
+
/**
|
|
1742
|
+
* Success
|
|
1743
|
+
*/
|
|
1744
|
+
200: unknown;
|
|
1745
|
+
};
|
|
1746
|
+
|
|
1747
|
+
export type PostApiVerifyCheckData = {
|
|
1748
|
+
body: {
|
|
1749
|
+
[key: string]: unknown;
|
|
1750
|
+
};
|
|
1751
|
+
path?: never;
|
|
1752
|
+
query?: never;
|
|
1753
|
+
url: '/api/verify/check';
|
|
1754
|
+
};
|
|
1755
|
+
|
|
1756
|
+
export type PostApiVerifyCheckErrors = {
|
|
1757
|
+
/**
|
|
1758
|
+
* Internal server error
|
|
1759
|
+
*/
|
|
1760
|
+
500: unknown;
|
|
1761
|
+
};
|
|
1762
|
+
|
|
1763
|
+
export type PostApiVerifyCheckResponses = {
|
|
1764
|
+
/**
|
|
1765
|
+
* Success
|
|
1766
|
+
*/
|
|
1767
|
+
200: unknown;
|
|
1768
|
+
};
|
|
1769
|
+
|
|
1770
|
+
export type PostApiVerifySendData = {
|
|
1771
|
+
body: {
|
|
1772
|
+
[key: string]: unknown;
|
|
1773
|
+
};
|
|
1774
|
+
path?: never;
|
|
1775
|
+
query?: never;
|
|
1776
|
+
url: '/api/verify/send';
|
|
1777
|
+
};
|
|
1778
|
+
|
|
1779
|
+
export type PostApiVerifySendErrors = {
|
|
1780
|
+
/**
|
|
1781
|
+
* Internal server error
|
|
1782
|
+
*/
|
|
1783
|
+
500: unknown;
|
|
1784
|
+
};
|
|
1785
|
+
|
|
1786
|
+
export type PostApiVerifySendResponses = {
|
|
1787
|
+
/**
|
|
1788
|
+
* Success
|
|
1789
|
+
*/
|
|
1790
|
+
200: unknown;
|
|
1791
|
+
};
|