@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.
@@ -0,0 +1,2749 @@
1
+ import { z } from 'zod';
2
+
3
+ type AuthToken = string | undefined;
4
+ interface Auth {
5
+ /**
6
+ * Which part of the request do we use to send the auth?
7
+ *
8
+ * @default 'header'
9
+ */
10
+ in?: 'header' | 'query' | 'cookie';
11
+ /**
12
+ * A unique identifier for the security scheme.
13
+ *
14
+ * Defined only when there are multiple security schemes whose `Auth`
15
+ * shape would otherwise be identical.
16
+ */
17
+ key?: string;
18
+ /**
19
+ * Header or query parameter name.
20
+ *
21
+ * @default 'Authorization'
22
+ */
23
+ name?: string;
24
+ scheme?: 'basic' | 'bearer';
25
+ type: 'apiKey' | 'http';
26
+ }
27
+
28
+ interface SerializerOptions<T> {
29
+ /**
30
+ * @default true
31
+ */
32
+ explode: boolean;
33
+ style: T;
34
+ }
35
+ type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited';
36
+ type ObjectStyle = 'form' | 'deepObject';
37
+
38
+ type QuerySerializer = (query: Record<string, unknown>) => string;
39
+ type BodySerializer = (body: unknown) => unknown;
40
+ type QuerySerializerOptionsObject = {
41
+ allowReserved?: boolean;
42
+ array?: Partial<SerializerOptions<ArrayStyle>>;
43
+ object?: Partial<SerializerOptions<ObjectStyle>>;
44
+ };
45
+ type QuerySerializerOptions = QuerySerializerOptionsObject & {
46
+ /**
47
+ * Per-parameter serialization overrides. When provided, these settings
48
+ * override the global array/object settings for specific parameter names.
49
+ */
50
+ parameters?: Record<string, QuerySerializerOptionsObject>;
51
+ };
52
+
53
+ type HttpMethod = 'connect' | 'delete' | 'get' | 'head' | 'options' | 'patch' | 'post' | 'put' | 'trace';
54
+ type Client$1<RequestFn = never, Config = unknown, MethodFn = never, BuildUrlFn = never, SseFn = never> = {
55
+ /**
56
+ * Returns the final request URL.
57
+ */
58
+ buildUrl: BuildUrlFn;
59
+ getConfig: () => Config;
60
+ request: RequestFn;
61
+ setConfig: (config: Config) => Config;
62
+ } & {
63
+ [K in HttpMethod]: MethodFn;
64
+ } & ([SseFn] extends [never] ? {
65
+ sse?: never;
66
+ } : {
67
+ sse: {
68
+ [K in HttpMethod]: SseFn;
69
+ };
70
+ });
71
+ interface Config$1 {
72
+ /**
73
+ * Auth token or a function returning auth token. The resolved value will be
74
+ * added to the request payload as defined by its `security` array.
75
+ */
76
+ auth?: ((auth: Auth) => Promise<AuthToken> | AuthToken) | AuthToken;
77
+ /**
78
+ * A function for serializing request body parameter. By default,
79
+ * {@link JSON.stringify()} will be used.
80
+ */
81
+ bodySerializer?: BodySerializer | null;
82
+ /**
83
+ * An object containing any HTTP headers that you want to pre-populate your
84
+ * `Headers` object with.
85
+ *
86
+ * {@link https://developer.mozilla.org/docs/Web/API/Headers/Headers#init See more}
87
+ */
88
+ headers?: RequestInit['headers'] | Record<string, string | number | boolean | (string | number | boolean)[] | null | undefined | unknown>;
89
+ /**
90
+ * The request method.
91
+ *
92
+ * {@link https://developer.mozilla.org/docs/Web/API/fetch#method See more}
93
+ */
94
+ method?: Uppercase<HttpMethod>;
95
+ /**
96
+ * A function for serializing request query parameters. By default, arrays
97
+ * will be exploded in form style, objects will be exploded in deepObject
98
+ * style, and reserved characters are percent-encoded.
99
+ *
100
+ * This method will have no effect if the native `paramsSerializer()` Axios
101
+ * API function is used.
102
+ *
103
+ * {@link https://swagger.io/docs/specification/serialization/#query View examples}
104
+ */
105
+ querySerializer?: QuerySerializer | QuerySerializerOptions;
106
+ /**
107
+ * A function validating request data. This is useful if you want to ensure
108
+ * the request conforms to the desired shape, so it can be safely sent to
109
+ * the server.
110
+ */
111
+ requestValidator?: (data: unknown) => Promise<unknown>;
112
+ /**
113
+ * A function transforming response data before it's returned. This is useful
114
+ * for post-processing data, e.g., converting ISO strings into Date objects.
115
+ */
116
+ responseTransformer?: (data: unknown) => Promise<unknown>;
117
+ /**
118
+ * A function validating response data. This is useful if you want to ensure
119
+ * the response conforms to the desired shape, so it can be safely passed to
120
+ * the transformers and returned to the user.
121
+ */
122
+ responseValidator?: (data: unknown) => Promise<unknown>;
123
+ }
124
+ /**
125
+ * Arbitrary metadata passed through the `meta` request option.
126
+ */
127
+ interface ClientMeta {
128
+ }
129
+
130
+ type ServerSentEventsOptions<TData = unknown> = Omit<RequestInit, 'method'> & Pick<Config$1, 'method' | 'responseTransformer' | 'responseValidator'> & {
131
+ /**
132
+ * Fetch API implementation. You can use this option to provide a custom
133
+ * fetch instance.
134
+ *
135
+ * @default globalThis.fetch
136
+ */
137
+ fetch?: typeof fetch;
138
+ /**
139
+ * Implementing clients can call request interceptors inside this hook.
140
+ */
141
+ onRequest?: (url: string, init: RequestInit) => Promise<Request>;
142
+ /**
143
+ * Callback invoked when a network or parsing error occurs during streaming.
144
+ *
145
+ * This option applies only if the endpoint returns a stream of events.
146
+ *
147
+ * @param error The error that occurred.
148
+ */
149
+ onSseError?: (error: unknown) => void;
150
+ /**
151
+ * Callback invoked when an event is streamed from the server.
152
+ *
153
+ * This option applies only if the endpoint returns a stream of events.
154
+ *
155
+ * @param event Event streamed from the server.
156
+ * @returns Nothing (void).
157
+ */
158
+ onSseEvent?: (event: StreamEvent<TData>) => void;
159
+ serializedBody?: RequestInit['body'];
160
+ /**
161
+ * Default retry delay in milliseconds.
162
+ *
163
+ * This option applies only if the endpoint returns a stream of events.
164
+ *
165
+ * @default 3000
166
+ */
167
+ sseDefaultRetryDelay?: number;
168
+ /**
169
+ * Maximum number of retry attempts before giving up.
170
+ */
171
+ sseMaxRetryAttempts?: number;
172
+ /**
173
+ * Maximum retry delay in milliseconds.
174
+ *
175
+ * Applies only when exponential backoff is used.
176
+ *
177
+ * This option applies only if the endpoint returns a stream of events.
178
+ *
179
+ * @default 30000
180
+ */
181
+ sseMaxRetryDelay?: number;
182
+ /**
183
+ * Optional sleep function for retry backoff.
184
+ *
185
+ * Defaults to using `setTimeout`.
186
+ */
187
+ sseSleepFn?: (ms: number) => Promise<void>;
188
+ url: string;
189
+ };
190
+ interface StreamEvent<TData = unknown> {
191
+ data: TData;
192
+ event?: string;
193
+ id?: string;
194
+ retry?: number;
195
+ }
196
+ type ServerSentEventsResult<TData = unknown, TReturn = void, TNext = unknown> = {
197
+ stream: AsyncGenerator<TData extends Record<string, unknown> ? TData[keyof TData] : TData, TReturn, TNext>;
198
+ };
199
+
200
+ type ErrInterceptor<Err, Res, Req, Options> = (error: Err,
201
+ /** response may be undefined due to a network error where no response object is produced */
202
+ response: Res | undefined,
203
+ /** request may be undefined, because error may be from building the request object itself */
204
+ request: Req | undefined, options: Options) => Err | Promise<Err>;
205
+ type ReqInterceptor<Req, Options> = (request: Req, options: Options) => Req | Promise<Req>;
206
+ type ResInterceptor<Res, Req, Options> = (response: Res, request: Req, options: Options) => Res | Promise<Res>;
207
+ declare class Interceptors<Interceptor> {
208
+ fns: Array<Interceptor | null>;
209
+ clear(): void;
210
+ eject(id: number | Interceptor): void;
211
+ exists(id: number | Interceptor): boolean;
212
+ getInterceptorIndex(id: number | Interceptor): number;
213
+ update(id: number | Interceptor, fn: Interceptor): number | Interceptor | false;
214
+ use(fn: Interceptor): number;
215
+ }
216
+ interface Middleware<Req, Res, Err, Options> {
217
+ error: Interceptors<ErrInterceptor<Err, Res, Req, Options>>;
218
+ request: Interceptors<ReqInterceptor<Req, Options>>;
219
+ response: Interceptors<ResInterceptor<Res, Req, Options>>;
220
+ }
221
+
222
+ type ResponseStyle = 'data' | 'fields';
223
+ interface Config<T extends ClientOptions$1 = ClientOptions$1> extends Omit<RequestInit, 'body' | 'headers' | 'method'>, Config$1 {
224
+ /**
225
+ * Base URL for all requests made by this client.
226
+ */
227
+ baseUrl?: T['baseUrl'];
228
+ /**
229
+ * Fetch API implementation. You can use this option to provide a custom
230
+ * fetch instance.
231
+ *
232
+ * @default globalThis.fetch
233
+ */
234
+ fetch?: typeof fetch;
235
+ /**
236
+ * Please don't use the Fetch client for Next.js applications. The `next`
237
+ * options won't have any effect.
238
+ *
239
+ * Install {@link https://www.npmjs.com/package/@hey-api/client-next `@hey-api/client-next`} instead.
240
+ */
241
+ next?: never;
242
+ /**
243
+ * Return the response data parsed in a specified format. By default, `auto`
244
+ * will infer the appropriate method from the `Content-Type` response header.
245
+ * You can override this behavior with any of the {@link Body} methods.
246
+ * Select `stream` if you don't want to parse response data at all.
247
+ *
248
+ * @default 'auto'
249
+ */
250
+ parseAs?: 'arrayBuffer' | 'auto' | 'blob' | 'formData' | 'json' | 'stream' | 'text';
251
+ /**
252
+ * Should we return only data or multiple fields (data, error, response, etc.)?
253
+ *
254
+ * @default 'fields'
255
+ */
256
+ responseStyle?: ResponseStyle;
257
+ /**
258
+ * Throw an error instead of returning it in the response?
259
+ *
260
+ * @default false
261
+ */
262
+ throwOnError?: T['throwOnError'];
263
+ }
264
+ interface RequestOptions<TData = unknown, TResponseStyle extends ResponseStyle = 'fields', ThrowOnError extends boolean = boolean, Url extends string = string> extends Config<{
265
+ responseStyle: TResponseStyle;
266
+ throwOnError: ThrowOnError;
267
+ }>, Pick<ServerSentEventsOptions<TData>, 'onRequest' | 'onSseError' | 'onSseEvent' | 'sseDefaultRetryDelay' | 'sseMaxRetryAttempts' | 'sseMaxRetryDelay'> {
268
+ /**
269
+ * Any body that you want to add to your request.
270
+ *
271
+ * {@link https://developer.mozilla.org/docs/Web/API/fetch#body}
272
+ */
273
+ body?: unknown;
274
+ path?: Record<string, unknown>;
275
+ query?: Record<string, unknown>;
276
+ /**
277
+ * Security mechanism(s) to use for the request.
278
+ */
279
+ security?: ReadonlyArray<Auth>;
280
+ url: Url;
281
+ }
282
+ interface ResolvedRequestOptions<TResponseStyle extends ResponseStyle = 'fields', ThrowOnError extends boolean = boolean, Url extends string = string> extends RequestOptions<unknown, TResponseStyle, ThrowOnError, Url> {
283
+ headers: Headers;
284
+ serializedBody?: string;
285
+ }
286
+ type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boolean = boolean, TResponseStyle extends ResponseStyle = 'fields'> = ThrowOnError extends true ? Promise<TResponseStyle extends 'data' ? TData extends Record<string, unknown> ? TData[keyof TData] : TData : {
287
+ data: TData extends Record<string, unknown> ? TData[keyof TData] : TData;
288
+ request: Request;
289
+ response: Response;
290
+ }> : Promise<TResponseStyle extends 'data' ? (TData extends Record<string, unknown> ? TData[keyof TData] : TData) | undefined : ({
291
+ data: TData extends Record<string, unknown> ? TData[keyof TData] : TData;
292
+ error: undefined;
293
+ } | {
294
+ data: undefined;
295
+ error: TError extends Record<string, unknown> ? TError[keyof TError] : TError;
296
+ }) & {
297
+ /** request may be undefined, because error may be from building the request object itself */
298
+ request?: Request;
299
+ /** response may be undefined, because error may be from building the request object itself or from a network error */
300
+ response?: Response;
301
+ }>;
302
+ interface ClientOptions$1 {
303
+ baseUrl?: string;
304
+ responseStyle?: ResponseStyle;
305
+ throwOnError?: boolean;
306
+ }
307
+ type MethodFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
308
+ type SseFn = <TData = unknown, _TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData>>;
309
+ type RequestFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'> & Pick<Required<RequestOptions<TData, TResponseStyle, ThrowOnError>>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
310
+ type BuildUrlFn = <TData extends {
311
+ body?: unknown;
312
+ path?: Record<string, unknown>;
313
+ query?: Record<string, unknown>;
314
+ url: string;
315
+ }>(options: TData & Options$1<TData>) => string;
316
+ type Client = Client$1<RequestFn, Config, MethodFn, BuildUrlFn, SseFn> & {
317
+ interceptors: Middleware<Request, Response, unknown, ResolvedRequestOptions>;
318
+ };
319
+ interface TDataShape {
320
+ body?: unknown;
321
+ headers?: unknown;
322
+ path?: unknown;
323
+ query?: unknown;
324
+ url: string;
325
+ }
326
+ type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
327
+ type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields'> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
328
+
329
+ type CreateRampSiteClientOptions = Omit<Config, 'auth' | 'baseUrl'> & {
330
+ /** Base URL of the RAMP site API, e.g. `https://app.example.com`. */
331
+ baseUrl: string;
332
+ /**
333
+ * Bearer token (or a function resolving one) sent as `Authorization: Bearer
334
+ * <token>` on requests to private endpoints.
335
+ */
336
+ getAuthToken?: () => string | Promise<string>;
337
+ };
338
+
339
+ declare const createRampSiteClient: ({ baseUrl, getAuthToken, ...config }: CreateRampSiteClientOptions) => Client;
340
+
341
+ type ClientOptions = {
342
+ baseUrl: `${string}://${string}` | (string & {});
343
+ };
344
+ type PostApiAlgoliaSecuredKeyData = {
345
+ body?: never;
346
+ path?: never;
347
+ query?: never;
348
+ url: '/api/algolia-secured-key';
349
+ };
350
+ type PostApiAlgoliaSecuredKeyErrors = {
351
+ /**
352
+ * Internal server error
353
+ */
354
+ 500: unknown;
355
+ };
356
+ type PostApiAlgoliaSecuredKeyResponses = {
357
+ /**
358
+ * Success
359
+ */
360
+ 200: unknown;
361
+ };
362
+ type GetApiCampaignData = {
363
+ body?: never;
364
+ path?: never;
365
+ query?: never;
366
+ url: '/api/campaign';
367
+ };
368
+ type GetApiCampaignErrors = {
369
+ /**
370
+ * Unauthorized
371
+ */
372
+ 401: unknown;
373
+ /**
374
+ * Internal server error
375
+ */
376
+ 500: unknown;
377
+ };
378
+ type GetApiCampaignResponses = {
379
+ /**
380
+ * Success
381
+ */
382
+ 200: unknown;
383
+ };
384
+ type DeleteApiConversationMemoryConversationSummariesData = {
385
+ body?: never;
386
+ path?: never;
387
+ query: {
388
+ profileId: string;
389
+ summaryId: string;
390
+ };
391
+ url: '/api/conversation-memory/conversation-summaries';
392
+ };
393
+ type DeleteApiConversationMemoryConversationSummariesErrors = {
394
+ /**
395
+ * Unauthorized
396
+ */
397
+ 401: unknown;
398
+ /**
399
+ * Internal server error
400
+ */
401
+ 500: unknown;
402
+ };
403
+ type DeleteApiConversationMemoryConversationSummariesResponses = {
404
+ /**
405
+ * Success
406
+ */
407
+ 200: unknown;
408
+ };
409
+ type GetApiConversationMemoryConversationSummariesData = {
410
+ body?: never;
411
+ path?: never;
412
+ query: {
413
+ profileId: string;
414
+ summaryId?: string;
415
+ pageSize?: string;
416
+ pageToken?: string;
417
+ };
418
+ url: '/api/conversation-memory/conversation-summaries';
419
+ };
420
+ type GetApiConversationMemoryConversationSummariesErrors = {
421
+ /**
422
+ * Unauthorized
423
+ */
424
+ 401: unknown;
425
+ /**
426
+ * Internal server error
427
+ */
428
+ 500: unknown;
429
+ };
430
+ type GetApiConversationMemoryConversationSummariesResponses = {
431
+ /**
432
+ * Success
433
+ */
434
+ 200: unknown;
435
+ };
436
+ type PatchApiConversationMemoryConversationSummariesData = {
437
+ body: {
438
+ [key: string]: unknown;
439
+ };
440
+ path?: never;
441
+ query: {
442
+ profileId: string;
443
+ summaryId: string;
444
+ };
445
+ url: '/api/conversation-memory/conversation-summaries';
446
+ };
447
+ type PatchApiConversationMemoryConversationSummariesErrors = {
448
+ /**
449
+ * Unauthorized
450
+ */
451
+ 401: unknown;
452
+ /**
453
+ * Internal server error
454
+ */
455
+ 500: unknown;
456
+ };
457
+ type PatchApiConversationMemoryConversationSummariesResponses = {
458
+ /**
459
+ * Success
460
+ */
461
+ 200: unknown;
462
+ };
463
+ type PostApiConversationMemoryConversationSummariesData = {
464
+ body: {
465
+ [key: string]: unknown;
466
+ };
467
+ path?: never;
468
+ query?: never;
469
+ url: '/api/conversation-memory/conversation-summaries';
470
+ };
471
+ type PostApiConversationMemoryConversationSummariesErrors = {
472
+ /**
473
+ * Unauthorized
474
+ */
475
+ 401: unknown;
476
+ /**
477
+ * Internal server error
478
+ */
479
+ 500: unknown;
480
+ };
481
+ type PostApiConversationMemoryConversationSummariesResponses = {
482
+ /**
483
+ * Success
484
+ */
485
+ 200: unknown;
486
+ };
487
+ type DeleteApiConversationMemoryIdentifiersData = {
488
+ body?: never;
489
+ path?: never;
490
+ query: {
491
+ profileId: string;
492
+ idType: string;
493
+ removeAll?: string;
494
+ value?: string;
495
+ };
496
+ url: '/api/conversation-memory/identifiers';
497
+ };
498
+ type DeleteApiConversationMemoryIdentifiersErrors = {
499
+ /**
500
+ * Unauthorized
501
+ */
502
+ 401: unknown;
503
+ /**
504
+ * Internal server error
505
+ */
506
+ 500: unknown;
507
+ };
508
+ type DeleteApiConversationMemoryIdentifiersResponses = {
509
+ /**
510
+ * Success
511
+ */
512
+ 200: unknown;
513
+ };
514
+ type GetApiConversationMemoryIdentifiersData = {
515
+ body?: never;
516
+ path?: never;
517
+ query: {
518
+ profileId: string;
519
+ idType: string;
520
+ };
521
+ url: '/api/conversation-memory/identifiers';
522
+ };
523
+ type GetApiConversationMemoryIdentifiersErrors = {
524
+ /**
525
+ * Unauthorized
526
+ */
527
+ 401: unknown;
528
+ /**
529
+ * Internal server error
530
+ */
531
+ 500: unknown;
532
+ };
533
+ type GetApiConversationMemoryIdentifiersResponses = {
534
+ /**
535
+ * Success
536
+ */
537
+ 200: unknown;
538
+ };
539
+ type PatchApiConversationMemoryIdentifiersData = {
540
+ body: {
541
+ [key: string]: unknown;
542
+ };
543
+ path?: never;
544
+ query: {
545
+ profileId: string;
546
+ idType: string;
547
+ removeAll?: string;
548
+ value?: string;
549
+ };
550
+ url: '/api/conversation-memory/identifiers';
551
+ };
552
+ type PatchApiConversationMemoryIdentifiersErrors = {
553
+ /**
554
+ * Unauthorized
555
+ */
556
+ 401: unknown;
557
+ /**
558
+ * Internal server error
559
+ */
560
+ 500: unknown;
561
+ };
562
+ type PatchApiConversationMemoryIdentifiersResponses = {
563
+ /**
564
+ * Success
565
+ */
566
+ 200: unknown;
567
+ };
568
+ type PostApiConversationMemoryIdentifiersData = {
569
+ body: {
570
+ [key: string]: unknown;
571
+ };
572
+ path?: never;
573
+ query: {
574
+ profileId: string;
575
+ idType: string;
576
+ removeAll?: string;
577
+ value: string;
578
+ };
579
+ url: '/api/conversation-memory/identifiers';
580
+ };
581
+ type PostApiConversationMemoryIdentifiersErrors = {
582
+ /**
583
+ * Unauthorized
584
+ */
585
+ 401: unknown;
586
+ /**
587
+ * Internal server error
588
+ */
589
+ 500: unknown;
590
+ };
591
+ type PostApiConversationMemoryIdentifiersResponses = {
592
+ /**
593
+ * Success
594
+ */
595
+ 200: unknown;
596
+ };
597
+ type DeleteApiConversationMemoryObservationsData = {
598
+ body?: never;
599
+ path?: never;
600
+ query: {
601
+ profileId: string;
602
+ observationId: string;
603
+ };
604
+ url: '/api/conversation-memory/observations';
605
+ };
606
+ type DeleteApiConversationMemoryObservationsErrors = {
607
+ /**
608
+ * Unauthorized
609
+ */
610
+ 401: unknown;
611
+ /**
612
+ * Internal server error
613
+ */
614
+ 500: unknown;
615
+ };
616
+ type DeleteApiConversationMemoryObservationsResponses = {
617
+ /**
618
+ * Success
619
+ */
620
+ 200: unknown;
621
+ };
622
+ type GetApiConversationMemoryObservationsData = {
623
+ body?: never;
624
+ path?: never;
625
+ query: {
626
+ profileId: string;
627
+ observationId?: string;
628
+ pageSize?: string;
629
+ pageToken?: string;
630
+ orderBy?: string;
631
+ source?: string;
632
+ createdAfter?: string;
633
+ createdBefore?: string;
634
+ };
635
+ url: '/api/conversation-memory/observations';
636
+ };
637
+ type GetApiConversationMemoryObservationsErrors = {
638
+ /**
639
+ * Unauthorized
640
+ */
641
+ 401: unknown;
642
+ /**
643
+ * Internal server error
644
+ */
645
+ 500: unknown;
646
+ };
647
+ type GetApiConversationMemoryObservationsResponses = {
648
+ /**
649
+ * Success
650
+ */
651
+ 200: unknown;
652
+ };
653
+ type PatchApiConversationMemoryObservationsData = {
654
+ body: {
655
+ [key: string]: unknown;
656
+ };
657
+ path?: never;
658
+ query: {
659
+ profileId: string;
660
+ observationId: string;
661
+ };
662
+ url: '/api/conversation-memory/observations';
663
+ };
664
+ type PatchApiConversationMemoryObservationsErrors = {
665
+ /**
666
+ * Unauthorized
667
+ */
668
+ 401: unknown;
669
+ /**
670
+ * Internal server error
671
+ */
672
+ 500: unknown;
673
+ };
674
+ type PatchApiConversationMemoryObservationsResponses = {
675
+ /**
676
+ * Success
677
+ */
678
+ 200: unknown;
679
+ };
680
+ type PostApiConversationMemoryObservationsData = {
681
+ body: {
682
+ [key: string]: unknown;
683
+ };
684
+ path?: never;
685
+ query: {
686
+ profileId: string;
687
+ };
688
+ url: '/api/conversation-memory/observations';
689
+ };
690
+ type PostApiConversationMemoryObservationsErrors = {
691
+ /**
692
+ * Unauthorized
693
+ */
694
+ 401: unknown;
695
+ /**
696
+ * Internal server error
697
+ */
698
+ 500: unknown;
699
+ };
700
+ type PostApiConversationMemoryObservationsResponses = {
701
+ /**
702
+ * Success
703
+ */
704
+ 200: unknown;
705
+ };
706
+ type DeleteApiConversationMemoryProfilesData = {
707
+ body?: never;
708
+ path?: never;
709
+ query: {
710
+ profileId: string;
711
+ };
712
+ url: '/api/conversation-memory/profiles';
713
+ };
714
+ type DeleteApiConversationMemoryProfilesErrors = {
715
+ /**
716
+ * Unauthorized
717
+ */
718
+ 401: unknown;
719
+ /**
720
+ * Internal server error
721
+ */
722
+ 500: unknown;
723
+ };
724
+ type DeleteApiConversationMemoryProfilesResponses = {
725
+ /**
726
+ * Success
727
+ */
728
+ 200: unknown;
729
+ };
730
+ type GetApiConversationMemoryProfilesData = {
731
+ body?: never;
732
+ path?: never;
733
+ query?: {
734
+ profileId?: string;
735
+ traitGroups?: string;
736
+ pageSize?: string;
737
+ pageToken?: string;
738
+ orderBy?: string;
739
+ };
740
+ url: '/api/conversation-memory/profiles';
741
+ };
742
+ type GetApiConversationMemoryProfilesErrors = {
743
+ /**
744
+ * Unauthorized
745
+ */
746
+ 401: unknown;
747
+ /**
748
+ * Internal server error
749
+ */
750
+ 500: unknown;
751
+ };
752
+ type GetApiConversationMemoryProfilesResponses = {
753
+ /**
754
+ * Success
755
+ */
756
+ 200: unknown;
757
+ };
758
+ type PatchApiConversationMemoryProfilesData = {
759
+ body: {
760
+ [key: string]: unknown;
761
+ };
762
+ path?: never;
763
+ query: {
764
+ profileId: string;
765
+ };
766
+ url: '/api/conversation-memory/profiles';
767
+ };
768
+ type PatchApiConversationMemoryProfilesErrors = {
769
+ /**
770
+ * Unauthorized
771
+ */
772
+ 401: unknown;
773
+ /**
774
+ * Internal server error
775
+ */
776
+ 500: unknown;
777
+ };
778
+ type PatchApiConversationMemoryProfilesResponses = {
779
+ /**
780
+ * Success
781
+ */
782
+ 200: unknown;
783
+ };
784
+ type PostApiConversationMemoryProfilesData = {
785
+ body: {
786
+ [key: string]: unknown;
787
+ };
788
+ path?: never;
789
+ query: {
790
+ profileId: string;
791
+ };
792
+ url: '/api/conversation-memory/profiles';
793
+ };
794
+ type PostApiConversationMemoryProfilesErrors = {
795
+ /**
796
+ * Unauthorized
797
+ */
798
+ 401: unknown;
799
+ /**
800
+ * Internal server error
801
+ */
802
+ 500: unknown;
803
+ };
804
+ type PostApiConversationMemoryProfilesResponses = {
805
+ /**
806
+ * Success
807
+ */
808
+ 200: unknown;
809
+ };
810
+ type PostApiConversationMemoryProfilesLookupData = {
811
+ body: {
812
+ [key: string]: unknown;
813
+ };
814
+ path?: never;
815
+ query?: never;
816
+ url: '/api/conversation-memory/profiles-lookup';
817
+ };
818
+ type PostApiConversationMemoryProfilesLookupErrors = {
819
+ /**
820
+ * Unauthorized
821
+ */
822
+ 401: unknown;
823
+ /**
824
+ * Internal server error
825
+ */
826
+ 500: unknown;
827
+ };
828
+ type PostApiConversationMemoryProfilesLookupResponses = {
829
+ /**
830
+ * Success
831
+ */
832
+ 200: unknown;
833
+ };
834
+ type PostApiConversationMemoryRecallData = {
835
+ body: {
836
+ [key: string]: unknown;
837
+ };
838
+ path?: never;
839
+ query?: never;
840
+ url: '/api/conversation-memory/recall';
841
+ };
842
+ type PostApiConversationMemoryRecallErrors = {
843
+ /**
844
+ * Unauthorized
845
+ */
846
+ 401: unknown;
847
+ /**
848
+ * Internal server error
849
+ */
850
+ 500: unknown;
851
+ };
852
+ type PostApiConversationMemoryRecallResponses = {
853
+ /**
854
+ * Success
855
+ */
856
+ 200: unknown;
857
+ };
858
+ type DeleteApiConversationMemoryResetData = {
859
+ body?: never;
860
+ path?: never;
861
+ query: {
862
+ profileId: string;
863
+ };
864
+ url: '/api/conversation-memory/reset';
865
+ };
866
+ type DeleteApiConversationMemoryResetErrors = {
867
+ /**
868
+ * Unauthorized
869
+ */
870
+ 401: unknown;
871
+ /**
872
+ * Internal server error
873
+ */
874
+ 500: unknown;
875
+ };
876
+ type DeleteApiConversationMemoryResetResponses = {
877
+ /**
878
+ * Success
879
+ */
880
+ 200: unknown;
881
+ };
882
+ type GetApiConversationMemoryTraitGroupsData = {
883
+ body?: never;
884
+ path?: never;
885
+ query?: {
886
+ traitGroupName?: string;
887
+ includeTraits?: string;
888
+ pageSize?: string;
889
+ pageToken?: string;
890
+ };
891
+ url: '/api/conversation-memory/trait-groups';
892
+ };
893
+ type GetApiConversationMemoryTraitGroupsErrors = {
894
+ /**
895
+ * Unauthorized
896
+ */
897
+ 401: unknown;
898
+ /**
899
+ * Internal server error
900
+ */
901
+ 500: unknown;
902
+ };
903
+ type GetApiConversationMemoryTraitGroupsResponses = {
904
+ /**
905
+ * Success
906
+ */
907
+ 200: unknown;
908
+ };
909
+ type PatchApiConversationMemoryTraitGroupsData = {
910
+ body: {
911
+ [key: string]: unknown;
912
+ };
913
+ path?: never;
914
+ query?: never;
915
+ url: '/api/conversation-memory/trait-groups';
916
+ };
917
+ type PatchApiConversationMemoryTraitGroupsErrors = {
918
+ /**
919
+ * Unauthorized
920
+ */
921
+ 401: unknown;
922
+ /**
923
+ * Internal server error
924
+ */
925
+ 500: unknown;
926
+ };
927
+ type PatchApiConversationMemoryTraitGroupsResponses = {
928
+ /**
929
+ * Success
930
+ */
931
+ 200: unknown;
932
+ };
933
+ type PostApiConversationMemoryTraitGroupsData = {
934
+ body: {
935
+ [key: string]: unknown;
936
+ };
937
+ path?: never;
938
+ query?: never;
939
+ url: '/api/conversation-memory/trait-groups';
940
+ };
941
+ type PostApiConversationMemoryTraitGroupsErrors = {
942
+ /**
943
+ * Unauthorized
944
+ */
945
+ 401: unknown;
946
+ /**
947
+ * Internal server error
948
+ */
949
+ 500: unknown;
950
+ };
951
+ type PostApiConversationMemoryTraitGroupsResponses = {
952
+ /**
953
+ * Success
954
+ */
955
+ 200: unknown;
956
+ };
957
+ type GetApiConversationMemoryTraitsData = {
958
+ body?: never;
959
+ path?: never;
960
+ query: {
961
+ profileId: string;
962
+ pageSize?: string;
963
+ pageToken?: string;
964
+ orderBy?: string;
965
+ traitGroups?: string;
966
+ };
967
+ url: '/api/conversation-memory/traits';
968
+ };
969
+ type GetApiConversationMemoryTraitsErrors = {
970
+ /**
971
+ * Unauthorized
972
+ */
973
+ 401: unknown;
974
+ /**
975
+ * Internal server error
976
+ */
977
+ 500: unknown;
978
+ };
979
+ type GetApiConversationMemoryTraitsResponses = {
980
+ /**
981
+ * Success
982
+ */
983
+ 200: unknown;
984
+ };
985
+ type DeleteApiConversationalIntelligenceOperatorData = {
986
+ body?: never;
987
+ path?: never;
988
+ query: {
989
+ intelligenceOperatorId: string;
990
+ };
991
+ url: '/api/conversational-intelligence-operator';
992
+ };
993
+ type DeleteApiConversationalIntelligenceOperatorErrors = {
994
+ /**
995
+ * Unauthorized
996
+ */
997
+ 401: unknown;
998
+ /**
999
+ * Internal server error
1000
+ */
1001
+ 500: unknown;
1002
+ };
1003
+ type DeleteApiConversationalIntelligenceOperatorResponses = {
1004
+ /**
1005
+ * Success
1006
+ */
1007
+ 200: unknown;
1008
+ };
1009
+ type GetApiConversationalIntelligenceOperatorData = {
1010
+ body?: never;
1011
+ path?: never;
1012
+ query?: {
1013
+ intelligenceOperatorId?: string;
1014
+ pageToken?: string;
1015
+ };
1016
+ url: '/api/conversational-intelligence-operator';
1017
+ };
1018
+ type GetApiConversationalIntelligenceOperatorErrors = {
1019
+ /**
1020
+ * Unauthorized
1021
+ */
1022
+ 401: unknown;
1023
+ /**
1024
+ * Internal server error
1025
+ */
1026
+ 500: unknown;
1027
+ };
1028
+ type GetApiConversationalIntelligenceOperatorResponses = {
1029
+ /**
1030
+ * Success
1031
+ */
1032
+ 200: unknown;
1033
+ };
1034
+ type PostApiConversationalIntelligenceOperatorData = {
1035
+ body: {
1036
+ [key: string]: unknown;
1037
+ };
1038
+ path?: never;
1039
+ query?: {
1040
+ intelligenceOperatorId?: string;
1041
+ };
1042
+ url: '/api/conversational-intelligence-operator';
1043
+ };
1044
+ type PostApiConversationalIntelligenceOperatorErrors = {
1045
+ /**
1046
+ * Unauthorized
1047
+ */
1048
+ 401: unknown;
1049
+ /**
1050
+ * Internal server error
1051
+ */
1052
+ 500: unknown;
1053
+ };
1054
+ type PostApiConversationalIntelligenceOperatorResponses = {
1055
+ /**
1056
+ * Success
1057
+ */
1058
+ 200: unknown;
1059
+ };
1060
+ type PutApiConversationalIntelligenceOperatorData = {
1061
+ body: {
1062
+ [key: string]: unknown;
1063
+ };
1064
+ path?: never;
1065
+ query: {
1066
+ intelligenceOperatorId: string;
1067
+ };
1068
+ url: '/api/conversational-intelligence-operator';
1069
+ };
1070
+ type PutApiConversationalIntelligenceOperatorErrors = {
1071
+ /**
1072
+ * Unauthorized
1073
+ */
1074
+ 401: unknown;
1075
+ /**
1076
+ * Internal server error
1077
+ */
1078
+ 500: unknown;
1079
+ };
1080
+ type PutApiConversationalIntelligenceOperatorResponses = {
1081
+ /**
1082
+ * Success
1083
+ */
1084
+ 200: unknown;
1085
+ };
1086
+ type DeleteApiConversationsDeleteData = {
1087
+ body?: never;
1088
+ path?: never;
1089
+ query?: never;
1090
+ url: '/api/conversations/delete';
1091
+ };
1092
+ type DeleteApiConversationsDeleteErrors = {
1093
+ /**
1094
+ * Unauthorized
1095
+ */
1096
+ 401: unknown;
1097
+ /**
1098
+ * Internal server error
1099
+ */
1100
+ 500: unknown;
1101
+ };
1102
+ type DeleteApiConversationsDeleteResponses = {
1103
+ /**
1104
+ * Success
1105
+ */
1106
+ 200: unknown;
1107
+ };
1108
+ type PostApiConversationsSaveData = {
1109
+ body: {
1110
+ [key: string]: unknown;
1111
+ };
1112
+ path?: never;
1113
+ query?: never;
1114
+ url: '/api/conversations/save';
1115
+ };
1116
+ type PostApiConversationsSaveErrors = {
1117
+ /**
1118
+ * Unauthorized
1119
+ */
1120
+ 401: unknown;
1121
+ /**
1122
+ * Internal server error
1123
+ */
1124
+ 500: unknown;
1125
+ };
1126
+ type PostApiConversationsSaveResponses = {
1127
+ /**
1128
+ * Success
1129
+ */
1130
+ 200: unknown;
1131
+ };
1132
+ type PostApiConversationsShareData = {
1133
+ body: {
1134
+ [key: string]: unknown;
1135
+ };
1136
+ path?: never;
1137
+ query?: never;
1138
+ url: '/api/conversations/share';
1139
+ };
1140
+ type PostApiConversationsShareErrors = {
1141
+ /**
1142
+ * Unauthorized
1143
+ */
1144
+ 401: unknown;
1145
+ /**
1146
+ * Internal server error
1147
+ */
1148
+ 500: unknown;
1149
+ };
1150
+ type PostApiConversationsShareResponses = {
1151
+ /**
1152
+ * Success
1153
+ */
1154
+ 200: unknown;
1155
+ };
1156
+ type GetApiCountryConfigsData = {
1157
+ body?: never;
1158
+ path?: never;
1159
+ query?: never;
1160
+ url: '/api/country-configs';
1161
+ };
1162
+ type GetApiCountryConfigsErrors = {
1163
+ /**
1164
+ * Unauthorized
1165
+ */
1166
+ 401: unknown;
1167
+ /**
1168
+ * Internal server error
1169
+ */
1170
+ 500: unknown;
1171
+ };
1172
+ type GetApiCountryConfigsResponses = {
1173
+ /**
1174
+ * Success
1175
+ */
1176
+ 200: unknown;
1177
+ };
1178
+ type PostApiCreateExternalFlexConnectionData = {
1179
+ body: {
1180
+ [key: string]: unknown;
1181
+ };
1182
+ path?: never;
1183
+ query?: never;
1184
+ url: '/api/create-external-flex-connection';
1185
+ };
1186
+ type PostApiCreateExternalFlexConnectionErrors = {
1187
+ /**
1188
+ * Internal server error
1189
+ */
1190
+ 500: unknown;
1191
+ };
1192
+ type PostApiCreateExternalFlexConnectionResponses = {
1193
+ /**
1194
+ * Success
1195
+ */
1196
+ 200: unknown;
1197
+ };
1198
+ type PostApiEnhancePromptData = {
1199
+ body: {
1200
+ [key: string]: unknown;
1201
+ };
1202
+ path?: never;
1203
+ query?: never;
1204
+ url: '/api/enhance-prompt';
1205
+ };
1206
+ type PostApiEnhancePromptErrors = {
1207
+ /**
1208
+ * Unauthorized
1209
+ */
1210
+ 401: unknown;
1211
+ /**
1212
+ * Internal server error
1213
+ */
1214
+ 500: unknown;
1215
+ };
1216
+ type PostApiEnhancePromptResponses = {
1217
+ /**
1218
+ * Success
1219
+ */
1220
+ 200: unknown;
1221
+ };
1222
+ type PostApiGenerateTagsData = {
1223
+ body: {
1224
+ [key: string]: unknown;
1225
+ };
1226
+ path?: never;
1227
+ query?: never;
1228
+ url: '/api/generate-tags';
1229
+ };
1230
+ type PostApiGenerateTagsErrors = {
1231
+ /**
1232
+ * Unauthorized
1233
+ */
1234
+ 401: unknown;
1235
+ /**
1236
+ * Internal server error
1237
+ */
1238
+ 500: unknown;
1239
+ };
1240
+ type PostApiGenerateTagsResponses = {
1241
+ /**
1242
+ * Success
1243
+ */
1244
+ 200: unknown;
1245
+ };
1246
+ type PostApiIncrementViewCountData = {
1247
+ body: {
1248
+ [key: string]: unknown;
1249
+ };
1250
+ path?: never;
1251
+ query?: never;
1252
+ url: '/api/increment-view-count';
1253
+ };
1254
+ type PostApiIncrementViewCountErrors = {
1255
+ /**
1256
+ * Unauthorized
1257
+ */
1258
+ 401: unknown;
1259
+ /**
1260
+ * Internal server error
1261
+ */
1262
+ 500: unknown;
1263
+ };
1264
+ type PostApiIncrementViewCountResponses = {
1265
+ /**
1266
+ * Success
1267
+ */
1268
+ 200: unknown;
1269
+ };
1270
+ type GetApiIntelligenceConfigurationData = {
1271
+ body?: never;
1272
+ path?: never;
1273
+ query?: {
1274
+ intelligenceConfigurationId?: string;
1275
+ pageToken?: string;
1276
+ };
1277
+ url: '/api/intelligence-configuration';
1278
+ };
1279
+ type GetApiIntelligenceConfigurationErrors = {
1280
+ /**
1281
+ * Unauthorized
1282
+ */
1283
+ 401: unknown;
1284
+ /**
1285
+ * Internal server error
1286
+ */
1287
+ 500: unknown;
1288
+ };
1289
+ type GetApiIntelligenceConfigurationResponses = {
1290
+ /**
1291
+ * Success
1292
+ */
1293
+ 200: unknown;
1294
+ };
1295
+ type PostApiIntelligenceConfigurationData = {
1296
+ body: {
1297
+ [key: string]: unknown;
1298
+ };
1299
+ path?: never;
1300
+ query?: never;
1301
+ url: '/api/intelligence-configuration';
1302
+ };
1303
+ type PostApiIntelligenceConfigurationErrors = {
1304
+ /**
1305
+ * Unauthorized
1306
+ */
1307
+ 401: unknown;
1308
+ /**
1309
+ * Internal server error
1310
+ */
1311
+ 500: unknown;
1312
+ };
1313
+ type PostApiIntelligenceConfigurationResponses = {
1314
+ /**
1315
+ * Success
1316
+ */
1317
+ 200: unknown;
1318
+ };
1319
+ type PutApiIntelligenceConfigurationData = {
1320
+ body: {
1321
+ [key: string]: unknown;
1322
+ };
1323
+ path?: never;
1324
+ query?: never;
1325
+ url: '/api/intelligence-configuration';
1326
+ };
1327
+ type PutApiIntelligenceConfigurationErrors = {
1328
+ /**
1329
+ * Unauthorized
1330
+ */
1331
+ 401: unknown;
1332
+ /**
1333
+ * Internal server error
1334
+ */
1335
+ 500: unknown;
1336
+ };
1337
+ type PutApiIntelligenceConfigurationResponses = {
1338
+ /**
1339
+ * Success
1340
+ */
1341
+ 200: unknown;
1342
+ };
1343
+ type GetApiInternalNavData = {
1344
+ body?: never;
1345
+ path?: never;
1346
+ query?: never;
1347
+ url: '/api/internal-nav';
1348
+ };
1349
+ type GetApiInternalNavErrors = {
1350
+ /**
1351
+ * Internal server error
1352
+ */
1353
+ 500: unknown;
1354
+ };
1355
+ type GetApiInternalNavResponses = {
1356
+ /**
1357
+ * Success
1358
+ */
1359
+ 200: unknown;
1360
+ };
1361
+ type GetApiIsvLogoData = {
1362
+ body?: never;
1363
+ path?: never;
1364
+ query: {
1365
+ company: string;
1366
+ };
1367
+ url: '/api/isv/logo';
1368
+ };
1369
+ type GetApiIsvLogoErrors = {
1370
+ /**
1371
+ * Internal server error
1372
+ */
1373
+ 500: unknown;
1374
+ };
1375
+ type GetApiIsvLogoResponses = {
1376
+ /**
1377
+ * Success
1378
+ */
1379
+ 200: unknown;
1380
+ };
1381
+ type DeleteApiLeadGenData = {
1382
+ body?: never;
1383
+ path?: never;
1384
+ query?: never;
1385
+ url: '/api/lead-gen';
1386
+ };
1387
+ type DeleteApiLeadGenErrors = {
1388
+ /**
1389
+ * Unauthorized
1390
+ */
1391
+ 401: unknown;
1392
+ /**
1393
+ * Internal server error
1394
+ */
1395
+ 500: unknown;
1396
+ };
1397
+ type DeleteApiLeadGenResponses = {
1398
+ /**
1399
+ * Success
1400
+ */
1401
+ 200: unknown;
1402
+ };
1403
+ type GetApiLeadGenData = {
1404
+ body?: never;
1405
+ path?: never;
1406
+ query: {
1407
+ objectID: string;
1408
+ agentNumber: string;
1409
+ };
1410
+ url: '/api/lead-gen';
1411
+ };
1412
+ type GetApiLeadGenErrors = {
1413
+ /**
1414
+ * Unauthorized
1415
+ */
1416
+ 401: unknown;
1417
+ /**
1418
+ * Internal server error
1419
+ */
1420
+ 500: unknown;
1421
+ };
1422
+ type GetApiLeadGenResponses = {
1423
+ /**
1424
+ * Success
1425
+ */
1426
+ 200: unknown;
1427
+ };
1428
+ type PatchApiLeadGenData = {
1429
+ body: {
1430
+ [key: string]: unknown;
1431
+ };
1432
+ path?: never;
1433
+ query?: never;
1434
+ url: '/api/lead-gen';
1435
+ };
1436
+ type PatchApiLeadGenErrors = {
1437
+ /**
1438
+ * Unauthorized
1439
+ */
1440
+ 401: unknown;
1441
+ /**
1442
+ * Internal server error
1443
+ */
1444
+ 500: unknown;
1445
+ };
1446
+ type PatchApiLeadGenResponses = {
1447
+ /**
1448
+ * Success
1449
+ */
1450
+ 200: unknown;
1451
+ };
1452
+ type PostApiLeadGenData = {
1453
+ body: {
1454
+ [key: string]: unknown;
1455
+ };
1456
+ path?: never;
1457
+ query?: never;
1458
+ url: '/api/lead-gen';
1459
+ };
1460
+ type PostApiLeadGenErrors = {
1461
+ /**
1462
+ * Unauthorized
1463
+ */
1464
+ 401: unknown;
1465
+ /**
1466
+ * Internal server error
1467
+ */
1468
+ 500: unknown;
1469
+ };
1470
+ type PostApiLeadGenResponses = {
1471
+ /**
1472
+ * Success
1473
+ */
1474
+ 200: unknown;
1475
+ };
1476
+ type DeleteApiLinkShortenerData = {
1477
+ body?: never;
1478
+ path?: never;
1479
+ query: {
1480
+ code: string;
1481
+ };
1482
+ url: '/api/link-shortener';
1483
+ };
1484
+ type DeleteApiLinkShortenerErrors = {
1485
+ /**
1486
+ * Unauthorized
1487
+ */
1488
+ 401: unknown;
1489
+ /**
1490
+ * Internal server error
1491
+ */
1492
+ 500: unknown;
1493
+ };
1494
+ type DeleteApiLinkShortenerResponses = {
1495
+ /**
1496
+ * Success
1497
+ */
1498
+ 200: unknown;
1499
+ };
1500
+ type GetApiLinkShortenerData = {
1501
+ body?: never;
1502
+ path?: never;
1503
+ query?: {
1504
+ code?: string;
1505
+ };
1506
+ url: '/api/link-shortener';
1507
+ };
1508
+ type GetApiLinkShortenerErrors = {
1509
+ /**
1510
+ * Unauthorized
1511
+ */
1512
+ 401: unknown;
1513
+ /**
1514
+ * Internal server error
1515
+ */
1516
+ 500: unknown;
1517
+ };
1518
+ type GetApiLinkShortenerResponses = {
1519
+ /**
1520
+ * Success
1521
+ */
1522
+ 200: unknown;
1523
+ };
1524
+ type PatchApiLinkShortenerData = {
1525
+ body: {
1526
+ [key: string]: unknown;
1527
+ };
1528
+ path?: never;
1529
+ query: {
1530
+ code: string;
1531
+ };
1532
+ url: '/api/link-shortener';
1533
+ };
1534
+ type PatchApiLinkShortenerErrors = {
1535
+ /**
1536
+ * Unauthorized
1537
+ */
1538
+ 401: unknown;
1539
+ /**
1540
+ * Internal server error
1541
+ */
1542
+ 500: unknown;
1543
+ };
1544
+ type PatchApiLinkShortenerResponses = {
1545
+ /**
1546
+ * Success
1547
+ */
1548
+ 200: unknown;
1549
+ };
1550
+ type PostApiLinkShortenerData = {
1551
+ body: {
1552
+ [key: string]: unknown;
1553
+ };
1554
+ path?: never;
1555
+ query?: {
1556
+ code?: string;
1557
+ };
1558
+ url: '/api/link-shortener';
1559
+ };
1560
+ type PostApiLinkShortenerErrors = {
1561
+ /**
1562
+ * Unauthorized
1563
+ */
1564
+ 401: unknown;
1565
+ /**
1566
+ * Internal server error
1567
+ */
1568
+ 500: unknown;
1569
+ };
1570
+ type PostApiLinkShortenerResponses = {
1571
+ /**
1572
+ * Success
1573
+ */
1574
+ 200: unknown;
1575
+ };
1576
+ type DeleteApiLiveNumbersData = {
1577
+ body?: never;
1578
+ path?: never;
1579
+ query?: never;
1580
+ url: '/api/live-numbers';
1581
+ };
1582
+ type DeleteApiLiveNumbersErrors = {
1583
+ /**
1584
+ * Unauthorized
1585
+ */
1586
+ 401: unknown;
1587
+ /**
1588
+ * Internal server error
1589
+ */
1590
+ 500: unknown;
1591
+ };
1592
+ type DeleteApiLiveNumbersResponses = {
1593
+ /**
1594
+ * Success
1595
+ */
1596
+ 200: unknown;
1597
+ };
1598
+ type GetApiLiveNumbersData = {
1599
+ body?: never;
1600
+ path?: never;
1601
+ query?: {
1602
+ countryCode?: string;
1603
+ };
1604
+ url: '/api/live-numbers';
1605
+ };
1606
+ type GetApiLiveNumbersErrors = {
1607
+ /**
1608
+ * Unauthorized
1609
+ */
1610
+ 401: unknown;
1611
+ /**
1612
+ * Internal server error
1613
+ */
1614
+ 500: unknown;
1615
+ };
1616
+ type GetApiLiveNumbersResponses = {
1617
+ /**
1618
+ * Success
1619
+ */
1620
+ 200: unknown;
1621
+ };
1622
+ type PostApiOutboundCallData = {
1623
+ body: {
1624
+ [key: string]: unknown;
1625
+ };
1626
+ path?: never;
1627
+ query?: never;
1628
+ url: '/api/outbound-call';
1629
+ };
1630
+ type PostApiOutboundCallErrors = {
1631
+ /**
1632
+ * Unauthorized
1633
+ */
1634
+ 401: unknown;
1635
+ /**
1636
+ * Internal server error
1637
+ */
1638
+ 500: unknown;
1639
+ };
1640
+ type PostApiOutboundCallResponses = {
1641
+ /**
1642
+ * Success
1643
+ */
1644
+ 200: unknown;
1645
+ };
1646
+ type PostApiOutboundCommunicationTextData = {
1647
+ body: {
1648
+ [key: string]: unknown;
1649
+ };
1650
+ path?: never;
1651
+ query?: never;
1652
+ url: '/api/outbound-communication-text';
1653
+ };
1654
+ type PostApiOutboundCommunicationTextErrors = {
1655
+ /**
1656
+ * Unauthorized
1657
+ */
1658
+ 401: unknown;
1659
+ /**
1660
+ * Internal server error
1661
+ */
1662
+ 500: unknown;
1663
+ };
1664
+ type PostApiOutboundCommunicationTextResponses = {
1665
+ /**
1666
+ * Success
1667
+ */
1668
+ 200: unknown;
1669
+ };
1670
+ type GetApiPhoneLogsByPhoneNumberData = {
1671
+ body?: never;
1672
+ path: {
1673
+ phoneNumber: string;
1674
+ };
1675
+ query?: {
1676
+ countryCode?: string;
1677
+ };
1678
+ url: '/api/phone-logs/{phoneNumber}';
1679
+ };
1680
+ type GetApiPhoneLogsByPhoneNumberErrors = {
1681
+ /**
1682
+ * Internal server error
1683
+ */
1684
+ 500: unknown;
1685
+ };
1686
+ type GetApiPhoneLogsByPhoneNumberResponses = {
1687
+ /**
1688
+ * Success
1689
+ */
1690
+ 200: unknown;
1691
+ };
1692
+ type GetApiRecentlyActiveNumbersData = {
1693
+ body?: never;
1694
+ path?: never;
1695
+ query?: {
1696
+ countryCode?: string;
1697
+ };
1698
+ url: '/api/recently-active-numbers';
1699
+ };
1700
+ type GetApiRecentlyActiveNumbersErrors = {
1701
+ /**
1702
+ * Unauthorized
1703
+ */
1704
+ 401: unknown;
1705
+ /**
1706
+ * Internal server error
1707
+ */
1708
+ 500: unknown;
1709
+ };
1710
+ type GetApiRecentlyActiveNumbersResponses = {
1711
+ /**
1712
+ * Success
1713
+ */
1714
+ 200: unknown;
1715
+ };
1716
+ type PostApiSegmentIdentifyData = {
1717
+ body: {
1718
+ [key: string]: unknown;
1719
+ };
1720
+ path?: never;
1721
+ query?: never;
1722
+ url: '/api/segment/identify';
1723
+ };
1724
+ type PostApiSegmentIdentifyErrors = {
1725
+ /**
1726
+ * Unauthorized
1727
+ */
1728
+ 401: unknown;
1729
+ /**
1730
+ * Internal server error
1731
+ */
1732
+ 500: unknown;
1733
+ };
1734
+ type PostApiSegmentIdentifyResponses = {
1735
+ /**
1736
+ * Success
1737
+ */
1738
+ 200: unknown;
1739
+ };
1740
+ type PostApiSegmentProfileData = {
1741
+ body: {
1742
+ [key: string]: unknown;
1743
+ };
1744
+ path?: never;
1745
+ query?: never;
1746
+ url: '/api/segment/profile';
1747
+ };
1748
+ type PostApiSegmentProfileErrors = {
1749
+ /**
1750
+ * Unauthorized
1751
+ */
1752
+ 401: unknown;
1753
+ /**
1754
+ * Internal server error
1755
+ */
1756
+ 500: unknown;
1757
+ };
1758
+ type PostApiSegmentProfileResponses = {
1759
+ /**
1760
+ * Success
1761
+ */
1762
+ 200: unknown;
1763
+ };
1764
+ type GetApiSessionData = {
1765
+ body?: never;
1766
+ path?: never;
1767
+ query?: never;
1768
+ url: '/api/session';
1769
+ };
1770
+ type GetApiSessionErrors = {
1771
+ /**
1772
+ * Internal server error
1773
+ */
1774
+ 500: unknown;
1775
+ };
1776
+ type GetApiSessionResponses = {
1777
+ /**
1778
+ * Success
1779
+ */
1780
+ 200: unknown;
1781
+ };
1782
+ type GetApiSupportedRegionsData = {
1783
+ body?: never;
1784
+ path?: never;
1785
+ query?: never;
1786
+ url: '/api/supported-regions';
1787
+ };
1788
+ type GetApiSupportedRegionsErrors = {
1789
+ /**
1790
+ * Unauthorized
1791
+ */
1792
+ 401: unknown;
1793
+ /**
1794
+ * Internal server error
1795
+ */
1796
+ 500: unknown;
1797
+ };
1798
+ type GetApiSupportedRegionsResponses = {
1799
+ /**
1800
+ * Success
1801
+ */
1802
+ 200: unknown;
1803
+ };
1804
+ type PostApiTagsData = {
1805
+ body: {
1806
+ [key: string]: unknown;
1807
+ };
1808
+ path?: never;
1809
+ query?: never;
1810
+ url: '/api/tags';
1811
+ };
1812
+ type PostApiTagsErrors = {
1813
+ /**
1814
+ * Internal server error
1815
+ */
1816
+ 500: unknown;
1817
+ };
1818
+ type PostApiTagsResponses = {
1819
+ /**
1820
+ * Success
1821
+ */
1822
+ 200: unknown;
1823
+ };
1824
+ type PostApiTelemetryData = {
1825
+ body?: never;
1826
+ path?: never;
1827
+ query?: {
1828
+ ddforward?: string;
1829
+ };
1830
+ url: '/api/telemetry';
1831
+ };
1832
+ type PostApiTelemetryErrors = {
1833
+ /**
1834
+ * Internal server error
1835
+ */
1836
+ 500: unknown;
1837
+ };
1838
+ type PostApiTelemetryResponses = {
1839
+ /**
1840
+ * Success
1841
+ */
1842
+ 200: unknown;
1843
+ };
1844
+ type DeleteApiTemplateData = {
1845
+ body?: never;
1846
+ path?: never;
1847
+ query?: {
1848
+ campaign?: string;
1849
+ };
1850
+ url: '/api/template';
1851
+ };
1852
+ type DeleteApiTemplateErrors = {
1853
+ /**
1854
+ * Unauthorized
1855
+ */
1856
+ 401: unknown;
1857
+ /**
1858
+ * Internal server error
1859
+ */
1860
+ 500: unknown;
1861
+ };
1862
+ type DeleteApiTemplateResponses = {
1863
+ /**
1864
+ * Success
1865
+ */
1866
+ 200: unknown;
1867
+ };
1868
+ type PostApiTemplateAutogenData = {
1869
+ body: {
1870
+ [key: string]: unknown;
1871
+ };
1872
+ path?: never;
1873
+ query?: never;
1874
+ url: '/api/template-autogen';
1875
+ };
1876
+ type PostApiTemplateAutogenErrors = {
1877
+ /**
1878
+ * Unauthorized
1879
+ */
1880
+ 401: unknown;
1881
+ /**
1882
+ * Internal server error
1883
+ */
1884
+ 500: unknown;
1885
+ };
1886
+ type PostApiTemplateAutogenResponses = {
1887
+ /**
1888
+ * Success
1889
+ */
1890
+ 200: unknown;
1891
+ };
1892
+ type PostApiVerifyCheckData = {
1893
+ body: {
1894
+ [key: string]: unknown;
1895
+ };
1896
+ path?: never;
1897
+ query?: never;
1898
+ url: '/api/verify/check';
1899
+ };
1900
+ type PostApiVerifyCheckErrors = {
1901
+ /**
1902
+ * Internal server error
1903
+ */
1904
+ 500: unknown;
1905
+ };
1906
+ type PostApiVerifyCheckResponses = {
1907
+ /**
1908
+ * Success
1909
+ */
1910
+ 200: unknown;
1911
+ };
1912
+ type PostApiVerifySendData = {
1913
+ body: {
1914
+ [key: string]: unknown;
1915
+ };
1916
+ path?: never;
1917
+ query?: never;
1918
+ url: '/api/verify/send';
1919
+ };
1920
+ type PostApiVerifySendErrors = {
1921
+ /**
1922
+ * Internal server error
1923
+ */
1924
+ 500: unknown;
1925
+ };
1926
+ type PostApiVerifySendResponses = {
1927
+ /**
1928
+ * Success
1929
+ */
1930
+ 200: unknown;
1931
+ };
1932
+
1933
+ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options$1<TData, ThrowOnError, TResponse> & {
1934
+ /**
1935
+ * You can provide a client instance returned by `createClient()` instead of
1936
+ * individual options. This might be also useful if you want to implement a
1937
+ * custom client.
1938
+ */
1939
+ client?: Client;
1940
+ /**
1941
+ * You can pass arbitrary values through the `meta` object. This can be
1942
+ * used to access values that aren't defined as part of the SDK function.
1943
+ */
1944
+ meta?: keyof ClientMeta extends never ? Record<string, unknown> : ClientMeta;
1945
+ };
1946
+ /**
1947
+ * POST algolia-secured-key
1948
+ */
1949
+ declare const postApiAlgoliaSecuredKey: <ThrowOnError extends boolean = false>(options?: Options<PostApiAlgoliaSecuredKeyData, ThrowOnError>) => RequestResult<PostApiAlgoliaSecuredKeyResponses, PostApiAlgoliaSecuredKeyErrors, ThrowOnError>;
1950
+ /**
1951
+ * GET campaign
1952
+ */
1953
+ declare const getApiCampaign: <ThrowOnError extends boolean = false>(options?: Options<GetApiCampaignData, ThrowOnError>) => RequestResult<GetApiCampaignResponses, GetApiCampaignErrors, ThrowOnError>;
1954
+ /**
1955
+ * DELETE conversation-memory / conversation-summaries
1956
+ */
1957
+ declare const deleteApiConversationMemoryConversationSummaries: <ThrowOnError extends boolean = false>(options: Options<DeleteApiConversationMemoryConversationSummariesData, ThrowOnError>) => RequestResult<DeleteApiConversationMemoryConversationSummariesResponses, DeleteApiConversationMemoryConversationSummariesErrors, ThrowOnError>;
1958
+ /**
1959
+ * GET conversation-memory / conversation-summaries
1960
+ */
1961
+ declare const getApiConversationMemoryConversationSummaries: <ThrowOnError extends boolean = false>(options: Options<GetApiConversationMemoryConversationSummariesData, ThrowOnError>) => RequestResult<GetApiConversationMemoryConversationSummariesResponses, GetApiConversationMemoryConversationSummariesErrors, ThrowOnError>;
1962
+ /**
1963
+ * PATCH conversation-memory / conversation-summaries
1964
+ */
1965
+ declare const patchApiConversationMemoryConversationSummaries: <ThrowOnError extends boolean = false>(options: Options<PatchApiConversationMemoryConversationSummariesData, ThrowOnError>) => RequestResult<PatchApiConversationMemoryConversationSummariesResponses, PatchApiConversationMemoryConversationSummariesErrors, ThrowOnError>;
1966
+ /**
1967
+ * POST conversation-memory / conversation-summaries
1968
+ */
1969
+ declare const postApiConversationMemoryConversationSummaries: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationMemoryConversationSummariesData, ThrowOnError>) => RequestResult<PostApiConversationMemoryConversationSummariesResponses, PostApiConversationMemoryConversationSummariesErrors, ThrowOnError>;
1970
+ /**
1971
+ * DELETE conversation-memory / identifiers
1972
+ */
1973
+ declare const deleteApiConversationMemoryIdentifiers: <ThrowOnError extends boolean = false>(options: Options<DeleteApiConversationMemoryIdentifiersData, ThrowOnError>) => RequestResult<DeleteApiConversationMemoryIdentifiersResponses, DeleteApiConversationMemoryIdentifiersErrors, ThrowOnError>;
1974
+ /**
1975
+ * GET conversation-memory / identifiers
1976
+ */
1977
+ declare const getApiConversationMemoryIdentifiers: <ThrowOnError extends boolean = false>(options: Options<GetApiConversationMemoryIdentifiersData, ThrowOnError>) => RequestResult<GetApiConversationMemoryIdentifiersResponses, GetApiConversationMemoryIdentifiersErrors, ThrowOnError>;
1978
+ /**
1979
+ * PATCH conversation-memory / identifiers
1980
+ */
1981
+ declare const patchApiConversationMemoryIdentifiers: <ThrowOnError extends boolean = false>(options: Options<PatchApiConversationMemoryIdentifiersData, ThrowOnError>) => RequestResult<PatchApiConversationMemoryIdentifiersResponses, PatchApiConversationMemoryIdentifiersErrors, ThrowOnError>;
1982
+ /**
1983
+ * POST conversation-memory / identifiers
1984
+ */
1985
+ declare const postApiConversationMemoryIdentifiers: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationMemoryIdentifiersData, ThrowOnError>) => RequestResult<PostApiConversationMemoryIdentifiersResponses, PostApiConversationMemoryIdentifiersErrors, ThrowOnError>;
1986
+ /**
1987
+ * DELETE conversation-memory / observations
1988
+ */
1989
+ declare const deleteApiConversationMemoryObservations: <ThrowOnError extends boolean = false>(options: Options<DeleteApiConversationMemoryObservationsData, ThrowOnError>) => RequestResult<DeleteApiConversationMemoryObservationsResponses, DeleteApiConversationMemoryObservationsErrors, ThrowOnError>;
1990
+ /**
1991
+ * GET conversation-memory / observations
1992
+ */
1993
+ declare const getApiConversationMemoryObservations: <ThrowOnError extends boolean = false>(options: Options<GetApiConversationMemoryObservationsData, ThrowOnError>) => RequestResult<GetApiConversationMemoryObservationsResponses, GetApiConversationMemoryObservationsErrors, ThrowOnError>;
1994
+ /**
1995
+ * PATCH conversation-memory / observations
1996
+ */
1997
+ declare const patchApiConversationMemoryObservations: <ThrowOnError extends boolean = false>(options: Options<PatchApiConversationMemoryObservationsData, ThrowOnError>) => RequestResult<PatchApiConversationMemoryObservationsResponses, PatchApiConversationMemoryObservationsErrors, ThrowOnError>;
1998
+ /**
1999
+ * POST conversation-memory / observations
2000
+ */
2001
+ declare const postApiConversationMemoryObservations: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationMemoryObservationsData, ThrowOnError>) => RequestResult<PostApiConversationMemoryObservationsResponses, PostApiConversationMemoryObservationsErrors, ThrowOnError>;
2002
+ /**
2003
+ * DELETE conversation-memory / profiles
2004
+ */
2005
+ declare const deleteApiConversationMemoryProfiles: <ThrowOnError extends boolean = false>(options: Options<DeleteApiConversationMemoryProfilesData, ThrowOnError>) => RequestResult<DeleteApiConversationMemoryProfilesResponses, DeleteApiConversationMemoryProfilesErrors, ThrowOnError>;
2006
+ /**
2007
+ * GET conversation-memory / profiles
2008
+ */
2009
+ declare const getApiConversationMemoryProfiles: <ThrowOnError extends boolean = false>(options?: Options<GetApiConversationMemoryProfilesData, ThrowOnError>) => RequestResult<GetApiConversationMemoryProfilesResponses, GetApiConversationMemoryProfilesErrors, ThrowOnError>;
2010
+ /**
2011
+ * PATCH conversation-memory / profiles
2012
+ */
2013
+ declare const patchApiConversationMemoryProfiles: <ThrowOnError extends boolean = false>(options: Options<PatchApiConversationMemoryProfilesData, ThrowOnError>) => RequestResult<PatchApiConversationMemoryProfilesResponses, PatchApiConversationMemoryProfilesErrors, ThrowOnError>;
2014
+ /**
2015
+ * POST conversation-memory / profiles
2016
+ */
2017
+ declare const postApiConversationMemoryProfiles: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationMemoryProfilesData, ThrowOnError>) => RequestResult<PostApiConversationMemoryProfilesResponses, PostApiConversationMemoryProfilesErrors, ThrowOnError>;
2018
+ /**
2019
+ * POST conversation-memory / profiles-lookup
2020
+ */
2021
+ declare const postApiConversationMemoryProfilesLookup: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationMemoryProfilesLookupData, ThrowOnError>) => RequestResult<PostApiConversationMemoryProfilesLookupResponses, PostApiConversationMemoryProfilesLookupErrors, ThrowOnError>;
2022
+ /**
2023
+ * POST conversation-memory / recall
2024
+ */
2025
+ declare const postApiConversationMemoryRecall: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationMemoryRecallData, ThrowOnError>) => RequestResult<PostApiConversationMemoryRecallResponses, PostApiConversationMemoryRecallErrors, ThrowOnError>;
2026
+ /**
2027
+ * DELETE conversation-memory / reset
2028
+ */
2029
+ declare const deleteApiConversationMemoryReset: <ThrowOnError extends boolean = false>(options: Options<DeleteApiConversationMemoryResetData, ThrowOnError>) => RequestResult<DeleteApiConversationMemoryResetResponses, DeleteApiConversationMemoryResetErrors, ThrowOnError>;
2030
+ /**
2031
+ * GET conversation-memory / trait-groups
2032
+ */
2033
+ declare const getApiConversationMemoryTraitGroups: <ThrowOnError extends boolean = false>(options?: Options<GetApiConversationMemoryTraitGroupsData, ThrowOnError>) => RequestResult<GetApiConversationMemoryTraitGroupsResponses, GetApiConversationMemoryTraitGroupsErrors, ThrowOnError>;
2034
+ /**
2035
+ * PATCH conversation-memory / trait-groups
2036
+ */
2037
+ declare const patchApiConversationMemoryTraitGroups: <ThrowOnError extends boolean = false>(options: Options<PatchApiConversationMemoryTraitGroupsData, ThrowOnError>) => RequestResult<PatchApiConversationMemoryTraitGroupsResponses, PatchApiConversationMemoryTraitGroupsErrors, ThrowOnError>;
2038
+ /**
2039
+ * POST conversation-memory / trait-groups
2040
+ */
2041
+ declare const postApiConversationMemoryTraitGroups: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationMemoryTraitGroupsData, ThrowOnError>) => RequestResult<PostApiConversationMemoryTraitGroupsResponses, PostApiConversationMemoryTraitGroupsErrors, ThrowOnError>;
2042
+ /**
2043
+ * GET conversation-memory / traits
2044
+ */
2045
+ declare const getApiConversationMemoryTraits: <ThrowOnError extends boolean = false>(options: Options<GetApiConversationMemoryTraitsData, ThrowOnError>) => RequestResult<GetApiConversationMemoryTraitsResponses, GetApiConversationMemoryTraitsErrors, ThrowOnError>;
2046
+ /**
2047
+ * DELETE conversational-intelligence-operator
2048
+ */
2049
+ declare const deleteApiConversationalIntelligenceOperator: <ThrowOnError extends boolean = false>(options: Options<DeleteApiConversationalIntelligenceOperatorData, ThrowOnError>) => RequestResult<DeleteApiConversationalIntelligenceOperatorResponses, DeleteApiConversationalIntelligenceOperatorErrors, ThrowOnError>;
2050
+ /**
2051
+ * GET conversational-intelligence-operator
2052
+ */
2053
+ declare const getApiConversationalIntelligenceOperator: <ThrowOnError extends boolean = false>(options?: Options<GetApiConversationalIntelligenceOperatorData, ThrowOnError>) => RequestResult<GetApiConversationalIntelligenceOperatorResponses, GetApiConversationalIntelligenceOperatorErrors, ThrowOnError>;
2054
+ /**
2055
+ * POST conversational-intelligence-operator
2056
+ */
2057
+ declare const postApiConversationalIntelligenceOperator: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationalIntelligenceOperatorData, ThrowOnError>) => RequestResult<PostApiConversationalIntelligenceOperatorResponses, PostApiConversationalIntelligenceOperatorErrors, ThrowOnError>;
2058
+ /**
2059
+ * PUT conversational-intelligence-operator
2060
+ */
2061
+ declare const putApiConversationalIntelligenceOperator: <ThrowOnError extends boolean = false>(options: Options<PutApiConversationalIntelligenceOperatorData, ThrowOnError>) => RequestResult<PutApiConversationalIntelligenceOperatorResponses, PutApiConversationalIntelligenceOperatorErrors, ThrowOnError>;
2062
+ /**
2063
+ * DELETE conversations / delete
2064
+ */
2065
+ declare const deleteApiConversationsDelete: <ThrowOnError extends boolean = false>(options?: Options<DeleteApiConversationsDeleteData, ThrowOnError>) => RequestResult<DeleteApiConversationsDeleteResponses, DeleteApiConversationsDeleteErrors, ThrowOnError>;
2066
+ /**
2067
+ * POST conversations / save
2068
+ */
2069
+ declare const postApiConversationsSave: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationsSaveData, ThrowOnError>) => RequestResult<PostApiConversationsSaveResponses, PostApiConversationsSaveErrors, ThrowOnError>;
2070
+ /**
2071
+ * POST conversations / share
2072
+ */
2073
+ declare const postApiConversationsShare: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationsShareData, ThrowOnError>) => RequestResult<PostApiConversationsShareResponses, PostApiConversationsShareErrors, ThrowOnError>;
2074
+ /**
2075
+ * GET country-configs
2076
+ */
2077
+ declare const getApiCountryConfigs: <ThrowOnError extends boolean = false>(options?: Options<GetApiCountryConfigsData, ThrowOnError>) => RequestResult<GetApiCountryConfigsResponses, GetApiCountryConfigsErrors, ThrowOnError>;
2078
+ /**
2079
+ * POST create-external-flex-connection
2080
+ */
2081
+ declare const postApiCreateExternalFlexConnection: <ThrowOnError extends boolean = false>(options: Options<PostApiCreateExternalFlexConnectionData, ThrowOnError>) => RequestResult<PostApiCreateExternalFlexConnectionResponses, PostApiCreateExternalFlexConnectionErrors, ThrowOnError>;
2082
+ /**
2083
+ * POST enhance-prompt
2084
+ */
2085
+ declare const postApiEnhancePrompt: <ThrowOnError extends boolean = false>(options: Options<PostApiEnhancePromptData, ThrowOnError>) => RequestResult<PostApiEnhancePromptResponses, PostApiEnhancePromptErrors, ThrowOnError>;
2086
+ /**
2087
+ * POST generate-tags
2088
+ */
2089
+ declare const postApiGenerateTags: <ThrowOnError extends boolean = false>(options: Options<PostApiGenerateTagsData, ThrowOnError>) => RequestResult<PostApiGenerateTagsResponses, PostApiGenerateTagsErrors, ThrowOnError>;
2090
+ /**
2091
+ * POST increment-view-count
2092
+ */
2093
+ declare const postApiIncrementViewCount: <ThrowOnError extends boolean = false>(options: Options<PostApiIncrementViewCountData, ThrowOnError>) => RequestResult<PostApiIncrementViewCountResponses, PostApiIncrementViewCountErrors, ThrowOnError>;
2094
+ /**
2095
+ * GET intelligence-configuration
2096
+ */
2097
+ declare const getApiIntelligenceConfiguration: <ThrowOnError extends boolean = false>(options?: Options<GetApiIntelligenceConfigurationData, ThrowOnError>) => RequestResult<GetApiIntelligenceConfigurationResponses, GetApiIntelligenceConfigurationErrors, ThrowOnError>;
2098
+ /**
2099
+ * POST intelligence-configuration
2100
+ */
2101
+ declare const postApiIntelligenceConfiguration: <ThrowOnError extends boolean = false>(options: Options<PostApiIntelligenceConfigurationData, ThrowOnError>) => RequestResult<PostApiIntelligenceConfigurationResponses, PostApiIntelligenceConfigurationErrors, ThrowOnError>;
2102
+ /**
2103
+ * PUT intelligence-configuration
2104
+ */
2105
+ declare const putApiIntelligenceConfiguration: <ThrowOnError extends boolean = false>(options: Options<PutApiIntelligenceConfigurationData, ThrowOnError>) => RequestResult<PutApiIntelligenceConfigurationResponses, PutApiIntelligenceConfigurationErrors, ThrowOnError>;
2106
+ /**
2107
+ * GET internal-nav
2108
+ */
2109
+ declare const getApiInternalNav: <ThrowOnError extends boolean = false>(options?: Options<GetApiInternalNavData, ThrowOnError>) => RequestResult<GetApiInternalNavResponses, GetApiInternalNavErrors, ThrowOnError>;
2110
+ /**
2111
+ * GET isv / logo
2112
+ */
2113
+ declare const getApiIsvLogo: <ThrowOnError extends boolean = false>(options: Options<GetApiIsvLogoData, ThrowOnError>) => RequestResult<GetApiIsvLogoResponses, GetApiIsvLogoErrors, ThrowOnError>;
2114
+ /**
2115
+ * DELETE lead-gen
2116
+ */
2117
+ declare const deleteApiLeadGen: <ThrowOnError extends boolean = false>(options?: Options<DeleteApiLeadGenData, ThrowOnError>) => RequestResult<DeleteApiLeadGenResponses, DeleteApiLeadGenErrors, ThrowOnError>;
2118
+ /**
2119
+ * GET lead-gen
2120
+ */
2121
+ declare const getApiLeadGen: <ThrowOnError extends boolean = false>(options: Options<GetApiLeadGenData, ThrowOnError>) => RequestResult<GetApiLeadGenResponses, GetApiLeadGenErrors, ThrowOnError>;
2122
+ /**
2123
+ * PATCH lead-gen
2124
+ */
2125
+ declare const patchApiLeadGen: <ThrowOnError extends boolean = false>(options: Options<PatchApiLeadGenData, ThrowOnError>) => RequestResult<PatchApiLeadGenResponses, PatchApiLeadGenErrors, ThrowOnError>;
2126
+ /**
2127
+ * POST lead-gen
2128
+ */
2129
+ declare const postApiLeadGen: <ThrowOnError extends boolean = false>(options: Options<PostApiLeadGenData, ThrowOnError>) => RequestResult<PostApiLeadGenResponses, PostApiLeadGenErrors, ThrowOnError>;
2130
+ /**
2131
+ * DELETE link-shortener
2132
+ */
2133
+ declare const deleteApiLinkShortener: <ThrowOnError extends boolean = false>(options: Options<DeleteApiLinkShortenerData, ThrowOnError>) => RequestResult<DeleteApiLinkShortenerResponses, DeleteApiLinkShortenerErrors, ThrowOnError>;
2134
+ /**
2135
+ * GET link-shortener
2136
+ */
2137
+ declare const getApiLinkShortener: <ThrowOnError extends boolean = false>(options?: Options<GetApiLinkShortenerData, ThrowOnError>) => RequestResult<GetApiLinkShortenerResponses, GetApiLinkShortenerErrors, ThrowOnError>;
2138
+ /**
2139
+ * PATCH link-shortener
2140
+ */
2141
+ declare const patchApiLinkShortener: <ThrowOnError extends boolean = false>(options: Options<PatchApiLinkShortenerData, ThrowOnError>) => RequestResult<PatchApiLinkShortenerResponses, PatchApiLinkShortenerErrors, ThrowOnError>;
2142
+ /**
2143
+ * POST link-shortener
2144
+ */
2145
+ declare const postApiLinkShortener: <ThrowOnError extends boolean = false>(options: Options<PostApiLinkShortenerData, ThrowOnError>) => RequestResult<PostApiLinkShortenerResponses, PostApiLinkShortenerErrors, ThrowOnError>;
2146
+ /**
2147
+ * DELETE live-numbers
2148
+ */
2149
+ declare const deleteApiLiveNumbers: <ThrowOnError extends boolean = false>(options?: Options<DeleteApiLiveNumbersData, ThrowOnError>) => RequestResult<DeleteApiLiveNumbersResponses, DeleteApiLiveNumbersErrors, ThrowOnError>;
2150
+ /**
2151
+ * GET live-numbers
2152
+ */
2153
+ declare const getApiLiveNumbers: <ThrowOnError extends boolean = false>(options?: Options<GetApiLiveNumbersData, ThrowOnError>) => RequestResult<GetApiLiveNumbersResponses, GetApiLiveNumbersErrors, ThrowOnError>;
2154
+ /**
2155
+ * POST outbound-call
2156
+ */
2157
+ declare const postApiOutboundCall: <ThrowOnError extends boolean = false>(options: Options<PostApiOutboundCallData, ThrowOnError>) => RequestResult<PostApiOutboundCallResponses, PostApiOutboundCallErrors, ThrowOnError>;
2158
+ /**
2159
+ * POST outbound-communication-text
2160
+ */
2161
+ declare const postApiOutboundCommunicationText: <ThrowOnError extends boolean = false>(options: Options<PostApiOutboundCommunicationTextData, ThrowOnError>) => RequestResult<PostApiOutboundCommunicationTextResponses, PostApiOutboundCommunicationTextErrors, ThrowOnError>;
2162
+ /**
2163
+ * GET phone-logs / {phoneNumber}
2164
+ */
2165
+ declare const getApiPhoneLogsByPhoneNumber: <ThrowOnError extends boolean = false>(options: Options<GetApiPhoneLogsByPhoneNumberData, ThrowOnError>) => RequestResult<GetApiPhoneLogsByPhoneNumberResponses, GetApiPhoneLogsByPhoneNumberErrors, ThrowOnError>;
2166
+ /**
2167
+ * GET recently-active-numbers
2168
+ */
2169
+ declare const getApiRecentlyActiveNumbers: <ThrowOnError extends boolean = false>(options?: Options<GetApiRecentlyActiveNumbersData, ThrowOnError>) => RequestResult<GetApiRecentlyActiveNumbersResponses, GetApiRecentlyActiveNumbersErrors, ThrowOnError>;
2170
+ /**
2171
+ * POST segment / identify
2172
+ */
2173
+ declare const postApiSegmentIdentify: <ThrowOnError extends boolean = false>(options: Options<PostApiSegmentIdentifyData, ThrowOnError>) => RequestResult<PostApiSegmentIdentifyResponses, PostApiSegmentIdentifyErrors, ThrowOnError>;
2174
+ /**
2175
+ * POST segment / profile
2176
+ */
2177
+ declare const postApiSegmentProfile: <ThrowOnError extends boolean = false>(options: Options<PostApiSegmentProfileData, ThrowOnError>) => RequestResult<PostApiSegmentProfileResponses, PostApiSegmentProfileErrors, ThrowOnError>;
2178
+ /**
2179
+ * GET session
2180
+ */
2181
+ declare const getApiSession: <ThrowOnError extends boolean = false>(options?: Options<GetApiSessionData, ThrowOnError>) => RequestResult<GetApiSessionResponses, GetApiSessionErrors, ThrowOnError>;
2182
+ /**
2183
+ * GET supported-regions
2184
+ */
2185
+ declare const getApiSupportedRegions: <ThrowOnError extends boolean = false>(options?: Options<GetApiSupportedRegionsData, ThrowOnError>) => RequestResult<GetApiSupportedRegionsResponses, GetApiSupportedRegionsErrors, ThrowOnError>;
2186
+ /**
2187
+ * POST tags
2188
+ */
2189
+ declare const postApiTags: <ThrowOnError extends boolean = false>(options: Options<PostApiTagsData, ThrowOnError>) => RequestResult<PostApiTagsResponses, PostApiTagsErrors, ThrowOnError>;
2190
+ /**
2191
+ * POST telemetry
2192
+ */
2193
+ declare const postApiTelemetry: <ThrowOnError extends boolean = false>(options?: Options<PostApiTelemetryData, ThrowOnError>) => RequestResult<PostApiTelemetryResponses, PostApiTelemetryErrors, ThrowOnError>;
2194
+ /**
2195
+ * DELETE template
2196
+ */
2197
+ declare const deleteApiTemplate: <ThrowOnError extends boolean = false>(options?: Options<DeleteApiTemplateData, ThrowOnError>) => RequestResult<DeleteApiTemplateResponses, DeleteApiTemplateErrors, ThrowOnError>;
2198
+ /**
2199
+ * POST template-autogen
2200
+ */
2201
+ declare const postApiTemplateAutogen: <ThrowOnError extends boolean = false>(options: Options<PostApiTemplateAutogenData, ThrowOnError>) => RequestResult<PostApiTemplateAutogenResponses, PostApiTemplateAutogenErrors, ThrowOnError>;
2202
+ /**
2203
+ * POST verify / check
2204
+ */
2205
+ declare const postApiVerifyCheck: <ThrowOnError extends boolean = false>(options: Options<PostApiVerifyCheckData, ThrowOnError>) => RequestResult<PostApiVerifyCheckResponses, PostApiVerifyCheckErrors, ThrowOnError>;
2206
+ /**
2207
+ * POST verify / send
2208
+ */
2209
+ declare const postApiVerifySend: <ThrowOnError extends boolean = false>(options: Options<PostApiVerifySendData, ThrowOnError>) => RequestResult<PostApiVerifySendResponses, PostApiVerifySendErrors, ThrowOnError>;
2210
+
2211
+ declare const zDeleteApiConversationMemoryConversationSummariesQuery: z.ZodObject<{
2212
+ profileId: z.ZodString;
2213
+ summaryId: z.ZodString;
2214
+ }, "strip", z.ZodTypeAny, {
2215
+ profileId: string;
2216
+ summaryId: string;
2217
+ }, {
2218
+ profileId: string;
2219
+ summaryId: string;
2220
+ }>;
2221
+ declare const zGetApiConversationMemoryConversationSummariesQuery: z.ZodObject<{
2222
+ profileId: z.ZodString;
2223
+ summaryId: z.ZodOptional<z.ZodString>;
2224
+ pageSize: z.ZodOptional<z.ZodString>;
2225
+ pageToken: z.ZodOptional<z.ZodString>;
2226
+ }, "strip", z.ZodTypeAny, {
2227
+ profileId: string;
2228
+ summaryId?: string | undefined;
2229
+ pageSize?: string | undefined;
2230
+ pageToken?: string | undefined;
2231
+ }, {
2232
+ profileId: string;
2233
+ summaryId?: string | undefined;
2234
+ pageSize?: string | undefined;
2235
+ pageToken?: string | undefined;
2236
+ }>;
2237
+ declare const zPatchApiConversationMemoryConversationSummariesBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2238
+ declare const zPatchApiConversationMemoryConversationSummariesQuery: z.ZodObject<{
2239
+ profileId: z.ZodString;
2240
+ summaryId: z.ZodString;
2241
+ }, "strip", z.ZodTypeAny, {
2242
+ profileId: string;
2243
+ summaryId: string;
2244
+ }, {
2245
+ profileId: string;
2246
+ summaryId: string;
2247
+ }>;
2248
+ declare const zPostApiConversationMemoryConversationSummariesBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2249
+ declare const zDeleteApiConversationMemoryIdentifiersQuery: z.ZodObject<{
2250
+ profileId: z.ZodString;
2251
+ idType: z.ZodString;
2252
+ removeAll: z.ZodOptional<z.ZodString>;
2253
+ value: z.ZodOptional<z.ZodString>;
2254
+ }, "strip", z.ZodTypeAny, {
2255
+ profileId: string;
2256
+ idType: string;
2257
+ value?: string | undefined;
2258
+ removeAll?: string | undefined;
2259
+ }, {
2260
+ profileId: string;
2261
+ idType: string;
2262
+ value?: string | undefined;
2263
+ removeAll?: string | undefined;
2264
+ }>;
2265
+ declare const zGetApiConversationMemoryIdentifiersQuery: z.ZodObject<{
2266
+ profileId: z.ZodString;
2267
+ idType: z.ZodString;
2268
+ }, "strip", z.ZodTypeAny, {
2269
+ profileId: string;
2270
+ idType: string;
2271
+ }, {
2272
+ profileId: string;
2273
+ idType: string;
2274
+ }>;
2275
+ declare const zPatchApiConversationMemoryIdentifiersBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2276
+ declare const zPatchApiConversationMemoryIdentifiersQuery: z.ZodObject<{
2277
+ profileId: z.ZodString;
2278
+ idType: z.ZodString;
2279
+ removeAll: z.ZodOptional<z.ZodString>;
2280
+ value: z.ZodOptional<z.ZodString>;
2281
+ }, "strip", z.ZodTypeAny, {
2282
+ profileId: string;
2283
+ idType: string;
2284
+ value?: string | undefined;
2285
+ removeAll?: string | undefined;
2286
+ }, {
2287
+ profileId: string;
2288
+ idType: string;
2289
+ value?: string | undefined;
2290
+ removeAll?: string | undefined;
2291
+ }>;
2292
+ declare const zPostApiConversationMemoryIdentifiersBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2293
+ declare const zPostApiConversationMemoryIdentifiersQuery: z.ZodObject<{
2294
+ profileId: z.ZodString;
2295
+ idType: z.ZodString;
2296
+ removeAll: z.ZodOptional<z.ZodString>;
2297
+ value: z.ZodString;
2298
+ }, "strip", z.ZodTypeAny, {
2299
+ profileId: string;
2300
+ value: string;
2301
+ idType: string;
2302
+ removeAll?: string | undefined;
2303
+ }, {
2304
+ profileId: string;
2305
+ value: string;
2306
+ idType: string;
2307
+ removeAll?: string | undefined;
2308
+ }>;
2309
+ declare const zDeleteApiConversationMemoryObservationsQuery: z.ZodObject<{
2310
+ profileId: z.ZodString;
2311
+ observationId: z.ZodString;
2312
+ }, "strip", z.ZodTypeAny, {
2313
+ profileId: string;
2314
+ observationId: string;
2315
+ }, {
2316
+ profileId: string;
2317
+ observationId: string;
2318
+ }>;
2319
+ declare const zGetApiConversationMemoryObservationsQuery: z.ZodObject<{
2320
+ profileId: z.ZodString;
2321
+ observationId: z.ZodOptional<z.ZodString>;
2322
+ pageSize: z.ZodOptional<z.ZodString>;
2323
+ pageToken: z.ZodOptional<z.ZodString>;
2324
+ orderBy: z.ZodOptional<z.ZodString>;
2325
+ source: z.ZodOptional<z.ZodString>;
2326
+ createdAfter: z.ZodOptional<z.ZodString>;
2327
+ createdBefore: z.ZodOptional<z.ZodString>;
2328
+ }, "strip", z.ZodTypeAny, {
2329
+ profileId: string;
2330
+ pageSize?: string | undefined;
2331
+ pageToken?: string | undefined;
2332
+ observationId?: string | undefined;
2333
+ orderBy?: string | undefined;
2334
+ source?: string | undefined;
2335
+ createdAfter?: string | undefined;
2336
+ createdBefore?: string | undefined;
2337
+ }, {
2338
+ profileId: string;
2339
+ pageSize?: string | undefined;
2340
+ pageToken?: string | undefined;
2341
+ observationId?: string | undefined;
2342
+ orderBy?: string | undefined;
2343
+ source?: string | undefined;
2344
+ createdAfter?: string | undefined;
2345
+ createdBefore?: string | undefined;
2346
+ }>;
2347
+ declare const zPatchApiConversationMemoryObservationsBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2348
+ declare const zPatchApiConversationMemoryObservationsQuery: z.ZodObject<{
2349
+ profileId: z.ZodString;
2350
+ observationId: z.ZodString;
2351
+ }, "strip", z.ZodTypeAny, {
2352
+ profileId: string;
2353
+ observationId: string;
2354
+ }, {
2355
+ profileId: string;
2356
+ observationId: string;
2357
+ }>;
2358
+ declare const zPostApiConversationMemoryObservationsBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2359
+ declare const zPostApiConversationMemoryObservationsQuery: z.ZodObject<{
2360
+ profileId: z.ZodString;
2361
+ }, "strip", z.ZodTypeAny, {
2362
+ profileId: string;
2363
+ }, {
2364
+ profileId: string;
2365
+ }>;
2366
+ declare const zDeleteApiConversationMemoryProfilesQuery: z.ZodObject<{
2367
+ profileId: z.ZodString;
2368
+ }, "strip", z.ZodTypeAny, {
2369
+ profileId: string;
2370
+ }, {
2371
+ profileId: string;
2372
+ }>;
2373
+ declare const zGetApiConversationMemoryProfilesQuery: z.ZodObject<{
2374
+ profileId: z.ZodOptional<z.ZodString>;
2375
+ traitGroups: z.ZodOptional<z.ZodString>;
2376
+ pageSize: z.ZodOptional<z.ZodString>;
2377
+ pageToken: z.ZodOptional<z.ZodString>;
2378
+ orderBy: z.ZodOptional<z.ZodString>;
2379
+ }, "strip", z.ZodTypeAny, {
2380
+ profileId?: string | undefined;
2381
+ pageSize?: string | undefined;
2382
+ pageToken?: string | undefined;
2383
+ orderBy?: string | undefined;
2384
+ traitGroups?: string | undefined;
2385
+ }, {
2386
+ profileId?: string | undefined;
2387
+ pageSize?: string | undefined;
2388
+ pageToken?: string | undefined;
2389
+ orderBy?: string | undefined;
2390
+ traitGroups?: string | undefined;
2391
+ }>;
2392
+ declare const zPatchApiConversationMemoryProfilesBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2393
+ declare const zPatchApiConversationMemoryProfilesQuery: z.ZodObject<{
2394
+ profileId: z.ZodString;
2395
+ }, "strip", z.ZodTypeAny, {
2396
+ profileId: string;
2397
+ }, {
2398
+ profileId: string;
2399
+ }>;
2400
+ declare const zPostApiConversationMemoryProfilesBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2401
+ declare const zPostApiConversationMemoryProfilesQuery: z.ZodObject<{
2402
+ profileId: z.ZodString;
2403
+ }, "strip", z.ZodTypeAny, {
2404
+ profileId: string;
2405
+ }, {
2406
+ profileId: string;
2407
+ }>;
2408
+ declare const zPostApiConversationMemoryProfilesLookupBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2409
+ declare const zPostApiConversationMemoryRecallBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2410
+ declare const zDeleteApiConversationMemoryResetQuery: z.ZodObject<{
2411
+ profileId: z.ZodString;
2412
+ }, "strip", z.ZodTypeAny, {
2413
+ profileId: string;
2414
+ }, {
2415
+ profileId: string;
2416
+ }>;
2417
+ declare const zGetApiConversationMemoryTraitGroupsQuery: z.ZodObject<{
2418
+ traitGroupName: z.ZodOptional<z.ZodString>;
2419
+ includeTraits: z.ZodOptional<z.ZodString>;
2420
+ pageSize: z.ZodOptional<z.ZodString>;
2421
+ pageToken: z.ZodOptional<z.ZodString>;
2422
+ }, "strip", z.ZodTypeAny, {
2423
+ pageSize?: string | undefined;
2424
+ pageToken?: string | undefined;
2425
+ traitGroupName?: string | undefined;
2426
+ includeTraits?: string | undefined;
2427
+ }, {
2428
+ pageSize?: string | undefined;
2429
+ pageToken?: string | undefined;
2430
+ traitGroupName?: string | undefined;
2431
+ includeTraits?: string | undefined;
2432
+ }>;
2433
+ declare const zPatchApiConversationMemoryTraitGroupsBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2434
+ declare const zPostApiConversationMemoryTraitGroupsBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2435
+ declare const zGetApiConversationMemoryTraitsQuery: z.ZodObject<{
2436
+ profileId: z.ZodString;
2437
+ pageSize: z.ZodOptional<z.ZodString>;
2438
+ pageToken: z.ZodOptional<z.ZodString>;
2439
+ orderBy: z.ZodOptional<z.ZodString>;
2440
+ traitGroups: z.ZodOptional<z.ZodString>;
2441
+ }, "strip", z.ZodTypeAny, {
2442
+ profileId: string;
2443
+ pageSize?: string | undefined;
2444
+ pageToken?: string | undefined;
2445
+ orderBy?: string | undefined;
2446
+ traitGroups?: string | undefined;
2447
+ }, {
2448
+ profileId: string;
2449
+ pageSize?: string | undefined;
2450
+ pageToken?: string | undefined;
2451
+ orderBy?: string | undefined;
2452
+ traitGroups?: string | undefined;
2453
+ }>;
2454
+ declare const zDeleteApiConversationalIntelligenceOperatorQuery: z.ZodObject<{
2455
+ intelligenceOperatorId: z.ZodString;
2456
+ }, "strip", z.ZodTypeAny, {
2457
+ intelligenceOperatorId: string;
2458
+ }, {
2459
+ intelligenceOperatorId: string;
2460
+ }>;
2461
+ declare const zGetApiConversationalIntelligenceOperatorQuery: z.ZodObject<{
2462
+ intelligenceOperatorId: z.ZodOptional<z.ZodString>;
2463
+ pageToken: z.ZodOptional<z.ZodString>;
2464
+ }, "strip", z.ZodTypeAny, {
2465
+ pageToken?: string | undefined;
2466
+ intelligenceOperatorId?: string | undefined;
2467
+ }, {
2468
+ pageToken?: string | undefined;
2469
+ intelligenceOperatorId?: string | undefined;
2470
+ }>;
2471
+ declare const zPostApiConversationalIntelligenceOperatorBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2472
+ declare const zPostApiConversationalIntelligenceOperatorQuery: z.ZodObject<{
2473
+ intelligenceOperatorId: z.ZodOptional<z.ZodString>;
2474
+ }, "strip", z.ZodTypeAny, {
2475
+ intelligenceOperatorId?: string | undefined;
2476
+ }, {
2477
+ intelligenceOperatorId?: string | undefined;
2478
+ }>;
2479
+ declare const zPutApiConversationalIntelligenceOperatorBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2480
+ declare const zPutApiConversationalIntelligenceOperatorQuery: z.ZodObject<{
2481
+ intelligenceOperatorId: z.ZodString;
2482
+ }, "strip", z.ZodTypeAny, {
2483
+ intelligenceOperatorId: string;
2484
+ }, {
2485
+ intelligenceOperatorId: string;
2486
+ }>;
2487
+ declare const zPostApiConversationsSaveBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2488
+ declare const zPostApiConversationsShareBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2489
+ declare const zPostApiCreateExternalFlexConnectionBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2490
+ declare const zPostApiEnhancePromptBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2491
+ declare const zPostApiGenerateTagsBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2492
+ declare const zPostApiIncrementViewCountBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2493
+ declare const zGetApiIntelligenceConfigurationQuery: z.ZodObject<{
2494
+ intelligenceConfigurationId: z.ZodOptional<z.ZodString>;
2495
+ pageToken: z.ZodOptional<z.ZodString>;
2496
+ }, "strip", z.ZodTypeAny, {
2497
+ pageToken?: string | undefined;
2498
+ intelligenceConfigurationId?: string | undefined;
2499
+ }, {
2500
+ pageToken?: string | undefined;
2501
+ intelligenceConfigurationId?: string | undefined;
2502
+ }>;
2503
+ declare const zPostApiIntelligenceConfigurationBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2504
+ declare const zPutApiIntelligenceConfigurationBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2505
+ declare const zGetApiIsvLogoQuery: z.ZodObject<{
2506
+ company: z.ZodString;
2507
+ }, "strip", z.ZodTypeAny, {
2508
+ company: string;
2509
+ }, {
2510
+ company: string;
2511
+ }>;
2512
+ declare const zGetApiLeadGenQuery: z.ZodObject<{
2513
+ objectID: z.ZodString;
2514
+ agentNumber: z.ZodString;
2515
+ }, "strip", z.ZodTypeAny, {
2516
+ objectID: string;
2517
+ agentNumber: string;
2518
+ }, {
2519
+ objectID: string;
2520
+ agentNumber: string;
2521
+ }>;
2522
+ declare const zPatchApiLeadGenBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2523
+ declare const zPostApiLeadGenBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2524
+ declare const zDeleteApiLinkShortenerQuery: z.ZodObject<{
2525
+ code: z.ZodString;
2526
+ }, "strip", z.ZodTypeAny, {
2527
+ code: string;
2528
+ }, {
2529
+ code: string;
2530
+ }>;
2531
+ declare const zGetApiLinkShortenerQuery: z.ZodObject<{
2532
+ code: z.ZodOptional<z.ZodString>;
2533
+ }, "strip", z.ZodTypeAny, {
2534
+ code?: string | undefined;
2535
+ }, {
2536
+ code?: string | undefined;
2537
+ }>;
2538
+ declare const zPatchApiLinkShortenerBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2539
+ declare const zPatchApiLinkShortenerQuery: z.ZodObject<{
2540
+ code: z.ZodString;
2541
+ }, "strip", z.ZodTypeAny, {
2542
+ code: string;
2543
+ }, {
2544
+ code: string;
2545
+ }>;
2546
+ declare const zPostApiLinkShortenerBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2547
+ declare const zPostApiLinkShortenerQuery: z.ZodObject<{
2548
+ code: z.ZodOptional<z.ZodString>;
2549
+ }, "strip", z.ZodTypeAny, {
2550
+ code?: string | undefined;
2551
+ }, {
2552
+ code?: string | undefined;
2553
+ }>;
2554
+ declare const zGetApiLiveNumbersQuery: z.ZodObject<{
2555
+ countryCode: z.ZodOptional<z.ZodString>;
2556
+ }, "strip", z.ZodTypeAny, {
2557
+ countryCode?: string | undefined;
2558
+ }, {
2559
+ countryCode?: string | undefined;
2560
+ }>;
2561
+ declare const zPostApiOutboundCallBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2562
+ declare const zPostApiOutboundCommunicationTextBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2563
+ declare const zGetApiPhoneLogsByPhoneNumberPath: z.ZodObject<{
2564
+ phoneNumber: z.ZodString;
2565
+ }, "strip", z.ZodTypeAny, {
2566
+ phoneNumber: string;
2567
+ }, {
2568
+ phoneNumber: string;
2569
+ }>;
2570
+ declare const zGetApiPhoneLogsByPhoneNumberQuery: z.ZodObject<{
2571
+ countryCode: z.ZodOptional<z.ZodString>;
2572
+ }, "strip", z.ZodTypeAny, {
2573
+ countryCode?: string | undefined;
2574
+ }, {
2575
+ countryCode?: string | undefined;
2576
+ }>;
2577
+ declare const zGetApiRecentlyActiveNumbersQuery: z.ZodObject<{
2578
+ countryCode: z.ZodOptional<z.ZodString>;
2579
+ }, "strip", z.ZodTypeAny, {
2580
+ countryCode?: string | undefined;
2581
+ }, {
2582
+ countryCode?: string | undefined;
2583
+ }>;
2584
+ declare const zPostApiSegmentIdentifyBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2585
+ declare const zPostApiSegmentProfileBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2586
+ declare const zPostApiTagsBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2587
+ declare const zPostApiTelemetryQuery: z.ZodObject<{
2588
+ ddforward: z.ZodOptional<z.ZodString>;
2589
+ }, "strip", z.ZodTypeAny, {
2590
+ ddforward?: string | undefined;
2591
+ }, {
2592
+ ddforward?: string | undefined;
2593
+ }>;
2594
+ declare const zDeleteApiTemplateQuery: z.ZodObject<{
2595
+ campaign: z.ZodOptional<z.ZodString>;
2596
+ }, "strip", z.ZodTypeAny, {
2597
+ campaign?: string | undefined;
2598
+ }, {
2599
+ campaign?: string | undefined;
2600
+ }>;
2601
+ declare const zPostApiTemplateAutogenBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2602
+ declare const zPostApiVerifyCheckBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2603
+ declare const zPostApiVerifySendBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2604
+
2605
+ declare const zod_gen_zDeleteApiConversationMemoryConversationSummariesQuery: typeof zDeleteApiConversationMemoryConversationSummariesQuery;
2606
+ declare const zod_gen_zDeleteApiConversationMemoryIdentifiersQuery: typeof zDeleteApiConversationMemoryIdentifiersQuery;
2607
+ declare const zod_gen_zDeleteApiConversationMemoryObservationsQuery: typeof zDeleteApiConversationMemoryObservationsQuery;
2608
+ declare const zod_gen_zDeleteApiConversationMemoryProfilesQuery: typeof zDeleteApiConversationMemoryProfilesQuery;
2609
+ declare const zod_gen_zDeleteApiConversationMemoryResetQuery: typeof zDeleteApiConversationMemoryResetQuery;
2610
+ declare const zod_gen_zDeleteApiConversationalIntelligenceOperatorQuery: typeof zDeleteApiConversationalIntelligenceOperatorQuery;
2611
+ declare const zod_gen_zDeleteApiLinkShortenerQuery: typeof zDeleteApiLinkShortenerQuery;
2612
+ declare const zod_gen_zDeleteApiTemplateQuery: typeof zDeleteApiTemplateQuery;
2613
+ declare const zod_gen_zGetApiConversationMemoryConversationSummariesQuery: typeof zGetApiConversationMemoryConversationSummariesQuery;
2614
+ declare const zod_gen_zGetApiConversationMemoryIdentifiersQuery: typeof zGetApiConversationMemoryIdentifiersQuery;
2615
+ declare const zod_gen_zGetApiConversationMemoryObservationsQuery: typeof zGetApiConversationMemoryObservationsQuery;
2616
+ declare const zod_gen_zGetApiConversationMemoryProfilesQuery: typeof zGetApiConversationMemoryProfilesQuery;
2617
+ declare const zod_gen_zGetApiConversationMemoryTraitGroupsQuery: typeof zGetApiConversationMemoryTraitGroupsQuery;
2618
+ declare const zod_gen_zGetApiConversationMemoryTraitsQuery: typeof zGetApiConversationMemoryTraitsQuery;
2619
+ declare const zod_gen_zGetApiConversationalIntelligenceOperatorQuery: typeof zGetApiConversationalIntelligenceOperatorQuery;
2620
+ declare const zod_gen_zGetApiIntelligenceConfigurationQuery: typeof zGetApiIntelligenceConfigurationQuery;
2621
+ declare const zod_gen_zGetApiIsvLogoQuery: typeof zGetApiIsvLogoQuery;
2622
+ declare const zod_gen_zGetApiLeadGenQuery: typeof zGetApiLeadGenQuery;
2623
+ declare const zod_gen_zGetApiLinkShortenerQuery: typeof zGetApiLinkShortenerQuery;
2624
+ declare const zod_gen_zGetApiLiveNumbersQuery: typeof zGetApiLiveNumbersQuery;
2625
+ declare const zod_gen_zGetApiPhoneLogsByPhoneNumberPath: typeof zGetApiPhoneLogsByPhoneNumberPath;
2626
+ declare const zod_gen_zGetApiPhoneLogsByPhoneNumberQuery: typeof zGetApiPhoneLogsByPhoneNumberQuery;
2627
+ declare const zod_gen_zGetApiRecentlyActiveNumbersQuery: typeof zGetApiRecentlyActiveNumbersQuery;
2628
+ declare const zod_gen_zPatchApiConversationMemoryConversationSummariesBody: typeof zPatchApiConversationMemoryConversationSummariesBody;
2629
+ declare const zod_gen_zPatchApiConversationMemoryConversationSummariesQuery: typeof zPatchApiConversationMemoryConversationSummariesQuery;
2630
+ declare const zod_gen_zPatchApiConversationMemoryIdentifiersBody: typeof zPatchApiConversationMemoryIdentifiersBody;
2631
+ declare const zod_gen_zPatchApiConversationMemoryIdentifiersQuery: typeof zPatchApiConversationMemoryIdentifiersQuery;
2632
+ declare const zod_gen_zPatchApiConversationMemoryObservationsBody: typeof zPatchApiConversationMemoryObservationsBody;
2633
+ declare const zod_gen_zPatchApiConversationMemoryObservationsQuery: typeof zPatchApiConversationMemoryObservationsQuery;
2634
+ declare const zod_gen_zPatchApiConversationMemoryProfilesBody: typeof zPatchApiConversationMemoryProfilesBody;
2635
+ declare const zod_gen_zPatchApiConversationMemoryProfilesQuery: typeof zPatchApiConversationMemoryProfilesQuery;
2636
+ declare const zod_gen_zPatchApiConversationMemoryTraitGroupsBody: typeof zPatchApiConversationMemoryTraitGroupsBody;
2637
+ declare const zod_gen_zPatchApiLeadGenBody: typeof zPatchApiLeadGenBody;
2638
+ declare const zod_gen_zPatchApiLinkShortenerBody: typeof zPatchApiLinkShortenerBody;
2639
+ declare const zod_gen_zPatchApiLinkShortenerQuery: typeof zPatchApiLinkShortenerQuery;
2640
+ declare const zod_gen_zPostApiConversationMemoryConversationSummariesBody: typeof zPostApiConversationMemoryConversationSummariesBody;
2641
+ declare const zod_gen_zPostApiConversationMemoryIdentifiersBody: typeof zPostApiConversationMemoryIdentifiersBody;
2642
+ declare const zod_gen_zPostApiConversationMemoryIdentifiersQuery: typeof zPostApiConversationMemoryIdentifiersQuery;
2643
+ declare const zod_gen_zPostApiConversationMemoryObservationsBody: typeof zPostApiConversationMemoryObservationsBody;
2644
+ declare const zod_gen_zPostApiConversationMemoryObservationsQuery: typeof zPostApiConversationMemoryObservationsQuery;
2645
+ declare const zod_gen_zPostApiConversationMemoryProfilesBody: typeof zPostApiConversationMemoryProfilesBody;
2646
+ declare const zod_gen_zPostApiConversationMemoryProfilesLookupBody: typeof zPostApiConversationMemoryProfilesLookupBody;
2647
+ declare const zod_gen_zPostApiConversationMemoryProfilesQuery: typeof zPostApiConversationMemoryProfilesQuery;
2648
+ declare const zod_gen_zPostApiConversationMemoryRecallBody: typeof zPostApiConversationMemoryRecallBody;
2649
+ declare const zod_gen_zPostApiConversationMemoryTraitGroupsBody: typeof zPostApiConversationMemoryTraitGroupsBody;
2650
+ declare const zod_gen_zPostApiConversationalIntelligenceOperatorBody: typeof zPostApiConversationalIntelligenceOperatorBody;
2651
+ declare const zod_gen_zPostApiConversationalIntelligenceOperatorQuery: typeof zPostApiConversationalIntelligenceOperatorQuery;
2652
+ declare const zod_gen_zPostApiConversationsSaveBody: typeof zPostApiConversationsSaveBody;
2653
+ declare const zod_gen_zPostApiConversationsShareBody: typeof zPostApiConversationsShareBody;
2654
+ declare const zod_gen_zPostApiCreateExternalFlexConnectionBody: typeof zPostApiCreateExternalFlexConnectionBody;
2655
+ declare const zod_gen_zPostApiEnhancePromptBody: typeof zPostApiEnhancePromptBody;
2656
+ declare const zod_gen_zPostApiGenerateTagsBody: typeof zPostApiGenerateTagsBody;
2657
+ declare const zod_gen_zPostApiIncrementViewCountBody: typeof zPostApiIncrementViewCountBody;
2658
+ declare const zod_gen_zPostApiIntelligenceConfigurationBody: typeof zPostApiIntelligenceConfigurationBody;
2659
+ declare const zod_gen_zPostApiLeadGenBody: typeof zPostApiLeadGenBody;
2660
+ declare const zod_gen_zPostApiLinkShortenerBody: typeof zPostApiLinkShortenerBody;
2661
+ declare const zod_gen_zPostApiLinkShortenerQuery: typeof zPostApiLinkShortenerQuery;
2662
+ declare const zod_gen_zPostApiOutboundCallBody: typeof zPostApiOutboundCallBody;
2663
+ declare const zod_gen_zPostApiOutboundCommunicationTextBody: typeof zPostApiOutboundCommunicationTextBody;
2664
+ declare const zod_gen_zPostApiSegmentIdentifyBody: typeof zPostApiSegmentIdentifyBody;
2665
+ declare const zod_gen_zPostApiSegmentProfileBody: typeof zPostApiSegmentProfileBody;
2666
+ declare const zod_gen_zPostApiTagsBody: typeof zPostApiTagsBody;
2667
+ declare const zod_gen_zPostApiTelemetryQuery: typeof zPostApiTelemetryQuery;
2668
+ declare const zod_gen_zPostApiTemplateAutogenBody: typeof zPostApiTemplateAutogenBody;
2669
+ declare const zod_gen_zPostApiVerifyCheckBody: typeof zPostApiVerifyCheckBody;
2670
+ declare const zod_gen_zPostApiVerifySendBody: typeof zPostApiVerifySendBody;
2671
+ declare const zod_gen_zPutApiConversationalIntelligenceOperatorBody: typeof zPutApiConversationalIntelligenceOperatorBody;
2672
+ declare const zod_gen_zPutApiConversationalIntelligenceOperatorQuery: typeof zPutApiConversationalIntelligenceOperatorQuery;
2673
+ declare const zod_gen_zPutApiIntelligenceConfigurationBody: typeof zPutApiIntelligenceConfigurationBody;
2674
+ declare namespace zod_gen {
2675
+ export {
2676
+ zod_gen_zDeleteApiConversationMemoryConversationSummariesQuery as zDeleteApiConversationMemoryConversationSummariesQuery,
2677
+ zod_gen_zDeleteApiConversationMemoryIdentifiersQuery as zDeleteApiConversationMemoryIdentifiersQuery,
2678
+ zod_gen_zDeleteApiConversationMemoryObservationsQuery as zDeleteApiConversationMemoryObservationsQuery,
2679
+ zod_gen_zDeleteApiConversationMemoryProfilesQuery as zDeleteApiConversationMemoryProfilesQuery,
2680
+ zod_gen_zDeleteApiConversationMemoryResetQuery as zDeleteApiConversationMemoryResetQuery,
2681
+ zod_gen_zDeleteApiConversationalIntelligenceOperatorQuery as zDeleteApiConversationalIntelligenceOperatorQuery,
2682
+ zod_gen_zDeleteApiLinkShortenerQuery as zDeleteApiLinkShortenerQuery,
2683
+ zod_gen_zDeleteApiTemplateQuery as zDeleteApiTemplateQuery,
2684
+ zod_gen_zGetApiConversationMemoryConversationSummariesQuery as zGetApiConversationMemoryConversationSummariesQuery,
2685
+ zod_gen_zGetApiConversationMemoryIdentifiersQuery as zGetApiConversationMemoryIdentifiersQuery,
2686
+ zod_gen_zGetApiConversationMemoryObservationsQuery as zGetApiConversationMemoryObservationsQuery,
2687
+ zod_gen_zGetApiConversationMemoryProfilesQuery as zGetApiConversationMemoryProfilesQuery,
2688
+ zod_gen_zGetApiConversationMemoryTraitGroupsQuery as zGetApiConversationMemoryTraitGroupsQuery,
2689
+ zod_gen_zGetApiConversationMemoryTraitsQuery as zGetApiConversationMemoryTraitsQuery,
2690
+ zod_gen_zGetApiConversationalIntelligenceOperatorQuery as zGetApiConversationalIntelligenceOperatorQuery,
2691
+ zod_gen_zGetApiIntelligenceConfigurationQuery as zGetApiIntelligenceConfigurationQuery,
2692
+ zod_gen_zGetApiIsvLogoQuery as zGetApiIsvLogoQuery,
2693
+ zod_gen_zGetApiLeadGenQuery as zGetApiLeadGenQuery,
2694
+ zod_gen_zGetApiLinkShortenerQuery as zGetApiLinkShortenerQuery,
2695
+ zod_gen_zGetApiLiveNumbersQuery as zGetApiLiveNumbersQuery,
2696
+ zod_gen_zGetApiPhoneLogsByPhoneNumberPath as zGetApiPhoneLogsByPhoneNumberPath,
2697
+ zod_gen_zGetApiPhoneLogsByPhoneNumberQuery as zGetApiPhoneLogsByPhoneNumberQuery,
2698
+ zod_gen_zGetApiRecentlyActiveNumbersQuery as zGetApiRecentlyActiveNumbersQuery,
2699
+ zod_gen_zPatchApiConversationMemoryConversationSummariesBody as zPatchApiConversationMemoryConversationSummariesBody,
2700
+ zod_gen_zPatchApiConversationMemoryConversationSummariesQuery as zPatchApiConversationMemoryConversationSummariesQuery,
2701
+ zod_gen_zPatchApiConversationMemoryIdentifiersBody as zPatchApiConversationMemoryIdentifiersBody,
2702
+ zod_gen_zPatchApiConversationMemoryIdentifiersQuery as zPatchApiConversationMemoryIdentifiersQuery,
2703
+ zod_gen_zPatchApiConversationMemoryObservationsBody as zPatchApiConversationMemoryObservationsBody,
2704
+ zod_gen_zPatchApiConversationMemoryObservationsQuery as zPatchApiConversationMemoryObservationsQuery,
2705
+ zod_gen_zPatchApiConversationMemoryProfilesBody as zPatchApiConversationMemoryProfilesBody,
2706
+ zod_gen_zPatchApiConversationMemoryProfilesQuery as zPatchApiConversationMemoryProfilesQuery,
2707
+ zod_gen_zPatchApiConversationMemoryTraitGroupsBody as zPatchApiConversationMemoryTraitGroupsBody,
2708
+ zod_gen_zPatchApiLeadGenBody as zPatchApiLeadGenBody,
2709
+ zod_gen_zPatchApiLinkShortenerBody as zPatchApiLinkShortenerBody,
2710
+ zod_gen_zPatchApiLinkShortenerQuery as zPatchApiLinkShortenerQuery,
2711
+ zod_gen_zPostApiConversationMemoryConversationSummariesBody as zPostApiConversationMemoryConversationSummariesBody,
2712
+ zod_gen_zPostApiConversationMemoryIdentifiersBody as zPostApiConversationMemoryIdentifiersBody,
2713
+ zod_gen_zPostApiConversationMemoryIdentifiersQuery as zPostApiConversationMemoryIdentifiersQuery,
2714
+ zod_gen_zPostApiConversationMemoryObservationsBody as zPostApiConversationMemoryObservationsBody,
2715
+ zod_gen_zPostApiConversationMemoryObservationsQuery as zPostApiConversationMemoryObservationsQuery,
2716
+ zod_gen_zPostApiConversationMemoryProfilesBody as zPostApiConversationMemoryProfilesBody,
2717
+ zod_gen_zPostApiConversationMemoryProfilesLookupBody as zPostApiConversationMemoryProfilesLookupBody,
2718
+ zod_gen_zPostApiConversationMemoryProfilesQuery as zPostApiConversationMemoryProfilesQuery,
2719
+ zod_gen_zPostApiConversationMemoryRecallBody as zPostApiConversationMemoryRecallBody,
2720
+ zod_gen_zPostApiConversationMemoryTraitGroupsBody as zPostApiConversationMemoryTraitGroupsBody,
2721
+ zod_gen_zPostApiConversationalIntelligenceOperatorBody as zPostApiConversationalIntelligenceOperatorBody,
2722
+ zod_gen_zPostApiConversationalIntelligenceOperatorQuery as zPostApiConversationalIntelligenceOperatorQuery,
2723
+ zod_gen_zPostApiConversationsSaveBody as zPostApiConversationsSaveBody,
2724
+ zod_gen_zPostApiConversationsShareBody as zPostApiConversationsShareBody,
2725
+ zod_gen_zPostApiCreateExternalFlexConnectionBody as zPostApiCreateExternalFlexConnectionBody,
2726
+ zod_gen_zPostApiEnhancePromptBody as zPostApiEnhancePromptBody,
2727
+ zod_gen_zPostApiGenerateTagsBody as zPostApiGenerateTagsBody,
2728
+ zod_gen_zPostApiIncrementViewCountBody as zPostApiIncrementViewCountBody,
2729
+ zod_gen_zPostApiIntelligenceConfigurationBody as zPostApiIntelligenceConfigurationBody,
2730
+ zod_gen_zPostApiLeadGenBody as zPostApiLeadGenBody,
2731
+ zod_gen_zPostApiLinkShortenerBody as zPostApiLinkShortenerBody,
2732
+ zod_gen_zPostApiLinkShortenerQuery as zPostApiLinkShortenerQuery,
2733
+ zod_gen_zPostApiOutboundCallBody as zPostApiOutboundCallBody,
2734
+ zod_gen_zPostApiOutboundCommunicationTextBody as zPostApiOutboundCommunicationTextBody,
2735
+ zod_gen_zPostApiSegmentIdentifyBody as zPostApiSegmentIdentifyBody,
2736
+ zod_gen_zPostApiSegmentProfileBody as zPostApiSegmentProfileBody,
2737
+ zod_gen_zPostApiTagsBody as zPostApiTagsBody,
2738
+ zod_gen_zPostApiTelemetryQuery as zPostApiTelemetryQuery,
2739
+ zod_gen_zPostApiTemplateAutogenBody as zPostApiTemplateAutogenBody,
2740
+ zod_gen_zPostApiVerifyCheckBody as zPostApiVerifyCheckBody,
2741
+ zod_gen_zPostApiVerifySendBody as zPostApiVerifySendBody,
2742
+ zod_gen_zPutApiConversationalIntelligenceOperatorBody as zPutApiConversationalIntelligenceOperatorBody,
2743
+ zod_gen_zPutApiConversationalIntelligenceOperatorQuery as zPutApiConversationalIntelligenceOperatorQuery,
2744
+ zod_gen_zPutApiIntelligenceConfigurationBody as zPutApiIntelligenceConfigurationBody,
2745
+ };
2746
+ }
2747
+
2748
+ export { createRampSiteClient, deleteApiConversationMemoryConversationSummaries, deleteApiConversationMemoryIdentifiers, deleteApiConversationMemoryObservations, deleteApiConversationMemoryProfiles, deleteApiConversationMemoryReset, deleteApiConversationalIntelligenceOperator, deleteApiConversationsDelete, deleteApiLeadGen, deleteApiLinkShortener, deleteApiLiveNumbers, deleteApiTemplate, getApiCampaign, getApiConversationMemoryConversationSummaries, getApiConversationMemoryIdentifiers, getApiConversationMemoryObservations, getApiConversationMemoryProfiles, getApiConversationMemoryTraitGroups, getApiConversationMemoryTraits, getApiConversationalIntelligenceOperator, getApiCountryConfigs, getApiIntelligenceConfiguration, getApiInternalNav, getApiIsvLogo, getApiLeadGen, getApiLinkShortener, getApiLiveNumbers, getApiPhoneLogsByPhoneNumber, getApiRecentlyActiveNumbers, getApiSession, getApiSupportedRegions, patchApiConversationMemoryConversationSummaries, patchApiConversationMemoryIdentifiers, patchApiConversationMemoryObservations, patchApiConversationMemoryProfiles, patchApiConversationMemoryTraitGroups, patchApiLeadGen, patchApiLinkShortener, postApiAlgoliaSecuredKey, postApiConversationMemoryConversationSummaries, postApiConversationMemoryIdentifiers, postApiConversationMemoryObservations, postApiConversationMemoryProfiles, postApiConversationMemoryProfilesLookup, postApiConversationMemoryRecall, postApiConversationMemoryTraitGroups, postApiConversationalIntelligenceOperator, postApiConversationsSave, postApiConversationsShare, postApiCreateExternalFlexConnection, postApiEnhancePrompt, postApiGenerateTags, postApiIncrementViewCount, postApiIntelligenceConfiguration, postApiLeadGen, postApiLinkShortener, postApiOutboundCall, postApiOutboundCommunicationText, postApiSegmentIdentify, postApiSegmentProfile, postApiTags, postApiTelemetry, postApiTemplateAutogen, postApiVerifyCheck, postApiVerifySend, putApiConversationalIntelligenceOperator, putApiIntelligenceConfiguration, zod_gen as schemas };
2749
+ export type { Client, ClientOptions, Config, CreateRampSiteClientOptions, DeleteApiConversationMemoryConversationSummariesData, DeleteApiConversationMemoryConversationSummariesErrors, DeleteApiConversationMemoryConversationSummariesResponses, DeleteApiConversationMemoryIdentifiersData, DeleteApiConversationMemoryIdentifiersErrors, DeleteApiConversationMemoryIdentifiersResponses, DeleteApiConversationMemoryObservationsData, DeleteApiConversationMemoryObservationsErrors, DeleteApiConversationMemoryObservationsResponses, DeleteApiConversationMemoryProfilesData, DeleteApiConversationMemoryProfilesErrors, DeleteApiConversationMemoryProfilesResponses, DeleteApiConversationMemoryResetData, DeleteApiConversationMemoryResetErrors, DeleteApiConversationMemoryResetResponses, DeleteApiConversationalIntelligenceOperatorData, DeleteApiConversationalIntelligenceOperatorErrors, DeleteApiConversationalIntelligenceOperatorResponses, DeleteApiConversationsDeleteData, DeleteApiConversationsDeleteErrors, DeleteApiConversationsDeleteResponses, DeleteApiLeadGenData, DeleteApiLeadGenErrors, DeleteApiLeadGenResponses, DeleteApiLinkShortenerData, DeleteApiLinkShortenerErrors, DeleteApiLinkShortenerResponses, DeleteApiLiveNumbersData, DeleteApiLiveNumbersErrors, DeleteApiLiveNumbersResponses, DeleteApiTemplateData, DeleteApiTemplateErrors, DeleteApiTemplateResponses, GetApiCampaignData, GetApiCampaignErrors, GetApiCampaignResponses, GetApiConversationMemoryConversationSummariesData, GetApiConversationMemoryConversationSummariesErrors, GetApiConversationMemoryConversationSummariesResponses, GetApiConversationMemoryIdentifiersData, GetApiConversationMemoryIdentifiersErrors, GetApiConversationMemoryIdentifiersResponses, GetApiConversationMemoryObservationsData, GetApiConversationMemoryObservationsErrors, GetApiConversationMemoryObservationsResponses, GetApiConversationMemoryProfilesData, GetApiConversationMemoryProfilesErrors, GetApiConversationMemoryProfilesResponses, GetApiConversationMemoryTraitGroupsData, GetApiConversationMemoryTraitGroupsErrors, GetApiConversationMemoryTraitGroupsResponses, GetApiConversationMemoryTraitsData, GetApiConversationMemoryTraitsErrors, GetApiConversationMemoryTraitsResponses, GetApiConversationalIntelligenceOperatorData, GetApiConversationalIntelligenceOperatorErrors, GetApiConversationalIntelligenceOperatorResponses, GetApiCountryConfigsData, GetApiCountryConfigsErrors, GetApiCountryConfigsResponses, GetApiIntelligenceConfigurationData, GetApiIntelligenceConfigurationErrors, GetApiIntelligenceConfigurationResponses, GetApiInternalNavData, GetApiInternalNavErrors, GetApiInternalNavResponses, GetApiIsvLogoData, GetApiIsvLogoErrors, GetApiIsvLogoResponses, GetApiLeadGenData, GetApiLeadGenErrors, GetApiLeadGenResponses, GetApiLinkShortenerData, GetApiLinkShortenerErrors, GetApiLinkShortenerResponses, GetApiLiveNumbersData, GetApiLiveNumbersErrors, GetApiLiveNumbersResponses, GetApiPhoneLogsByPhoneNumberData, GetApiPhoneLogsByPhoneNumberErrors, GetApiPhoneLogsByPhoneNumberResponses, GetApiRecentlyActiveNumbersData, GetApiRecentlyActiveNumbersErrors, GetApiRecentlyActiveNumbersResponses, GetApiSessionData, GetApiSessionErrors, GetApiSessionResponses, GetApiSupportedRegionsData, GetApiSupportedRegionsErrors, GetApiSupportedRegionsResponses, Options, PatchApiConversationMemoryConversationSummariesData, PatchApiConversationMemoryConversationSummariesErrors, PatchApiConversationMemoryConversationSummariesResponses, PatchApiConversationMemoryIdentifiersData, PatchApiConversationMemoryIdentifiersErrors, PatchApiConversationMemoryIdentifiersResponses, PatchApiConversationMemoryObservationsData, PatchApiConversationMemoryObservationsErrors, PatchApiConversationMemoryObservationsResponses, PatchApiConversationMemoryProfilesData, PatchApiConversationMemoryProfilesErrors, PatchApiConversationMemoryProfilesResponses, PatchApiConversationMemoryTraitGroupsData, PatchApiConversationMemoryTraitGroupsErrors, PatchApiConversationMemoryTraitGroupsResponses, PatchApiLeadGenData, PatchApiLeadGenErrors, PatchApiLeadGenResponses, PatchApiLinkShortenerData, PatchApiLinkShortenerErrors, PatchApiLinkShortenerResponses, PostApiAlgoliaSecuredKeyData, PostApiAlgoliaSecuredKeyErrors, PostApiAlgoliaSecuredKeyResponses, PostApiConversationMemoryConversationSummariesData, PostApiConversationMemoryConversationSummariesErrors, PostApiConversationMemoryConversationSummariesResponses, PostApiConversationMemoryIdentifiersData, PostApiConversationMemoryIdentifiersErrors, PostApiConversationMemoryIdentifiersResponses, PostApiConversationMemoryObservationsData, PostApiConversationMemoryObservationsErrors, PostApiConversationMemoryObservationsResponses, PostApiConversationMemoryProfilesData, PostApiConversationMemoryProfilesErrors, PostApiConversationMemoryProfilesLookupData, PostApiConversationMemoryProfilesLookupErrors, PostApiConversationMemoryProfilesLookupResponses, PostApiConversationMemoryProfilesResponses, PostApiConversationMemoryRecallData, PostApiConversationMemoryRecallErrors, PostApiConversationMemoryRecallResponses, PostApiConversationMemoryTraitGroupsData, PostApiConversationMemoryTraitGroupsErrors, PostApiConversationMemoryTraitGroupsResponses, PostApiConversationalIntelligenceOperatorData, PostApiConversationalIntelligenceOperatorErrors, PostApiConversationalIntelligenceOperatorResponses, PostApiConversationsSaveData, PostApiConversationsSaveErrors, PostApiConversationsSaveResponses, PostApiConversationsShareData, PostApiConversationsShareErrors, PostApiConversationsShareResponses, PostApiCreateExternalFlexConnectionData, PostApiCreateExternalFlexConnectionErrors, PostApiCreateExternalFlexConnectionResponses, PostApiEnhancePromptData, PostApiEnhancePromptErrors, PostApiEnhancePromptResponses, PostApiGenerateTagsData, PostApiGenerateTagsErrors, PostApiGenerateTagsResponses, PostApiIncrementViewCountData, PostApiIncrementViewCountErrors, PostApiIncrementViewCountResponses, PostApiIntelligenceConfigurationData, PostApiIntelligenceConfigurationErrors, PostApiIntelligenceConfigurationResponses, PostApiLeadGenData, PostApiLeadGenErrors, PostApiLeadGenResponses, PostApiLinkShortenerData, PostApiLinkShortenerErrors, PostApiLinkShortenerResponses, PostApiOutboundCallData, PostApiOutboundCallErrors, PostApiOutboundCallResponses, PostApiOutboundCommunicationTextData, PostApiOutboundCommunicationTextErrors, PostApiOutboundCommunicationTextResponses, PostApiSegmentIdentifyData, PostApiSegmentIdentifyErrors, PostApiSegmentIdentifyResponses, PostApiSegmentProfileData, PostApiSegmentProfileErrors, PostApiSegmentProfileResponses, PostApiTagsData, PostApiTagsErrors, PostApiTagsResponses, PostApiTelemetryData, PostApiTelemetryErrors, PostApiTelemetryResponses, PostApiTemplateAutogenData, PostApiTemplateAutogenErrors, PostApiTemplateAutogenResponses, PostApiVerifyCheckData, PostApiVerifyCheckErrors, PostApiVerifyCheckResponses, PostApiVerifySendData, PostApiVerifySendErrors, PostApiVerifySendResponses, PutApiConversationalIntelligenceOperatorData, PutApiConversationalIntelligenceOperatorErrors, PutApiConversationalIntelligenceOperatorResponses, PutApiIntelligenceConfigurationData, PutApiIntelligenceConfigurationErrors, PutApiIntelligenceConfigurationResponses, RequestResult };