@gtmi/ramp-dialog-client 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +44 -0
- package/dist/es/index.d.mts +769 -0
- package/dist/es/index.mjs +1042 -0
- package/package.json +46 -0
- package/src/client.test.ts +39 -0
- package/src/client.ts +15 -0
- package/src/client.types.ts +11 -0
- package/src/generated/client/client.gen.ts +277 -0
- package/src/generated/client/index.ts +27 -0
- package/src/generated/client/types.gen.ts +214 -0
- package/src/generated/client/utils.gen.ts +316 -0
- package/src/generated/client.gen.ts +18 -0
- package/src/generated/core/auth.gen.ts +48 -0
- package/src/generated/core/bodySerializer.gen.ts +82 -0
- package/src/generated/core/params.gen.ts +178 -0
- package/src/generated/core/pathSerializer.gen.ts +171 -0
- package/src/generated/core/queryKeySerializer.gen.ts +117 -0
- package/src/generated/core/serverSentEvents.gen.ts +242 -0
- package/src/generated/core/types.gen.ts +110 -0
- package/src/generated/core/utils.gen.ts +140 -0
- package/src/generated/index.ts +64 -0
- package/src/generated/sdk.gen.ts +408 -0
- package/src/generated/types.gen.ts +322 -0
- package/src/generated/zod.gen.ts +38 -0
- package/src/index.ts +7 -0
|
@@ -0,0 +1,769 @@
|
|
|
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 CreateRampDialogClientOptions = Omit<Config, 'auth' | 'baseUrl'> & {
|
|
330
|
+
/** Base URL of the RAMP Dialog API, e.g. `https://dialog.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 createRampDialogClient: ({ baseUrl, getAuthToken, ...config }: CreateRampDialogClientOptions) => Client;
|
|
340
|
+
|
|
341
|
+
type ClientOptions = {
|
|
342
|
+
baseUrl: `${string}://${string}` | (string & {});
|
|
343
|
+
};
|
|
344
|
+
type GetApiActiveConversationsByCustomerNumberData = {
|
|
345
|
+
body?: never;
|
|
346
|
+
path: {
|
|
347
|
+
customerNumber: string;
|
|
348
|
+
};
|
|
349
|
+
query?: never;
|
|
350
|
+
url: '/api/active-conversations/{customerNumber}';
|
|
351
|
+
};
|
|
352
|
+
type GetApiActiveConversationsByCustomerNumberErrors = {
|
|
353
|
+
/**
|
|
354
|
+
* Internal server error
|
|
355
|
+
*/
|
|
356
|
+
500: unknown;
|
|
357
|
+
};
|
|
358
|
+
type GetApiActiveConversationsByCustomerNumberResponses = {
|
|
359
|
+
/**
|
|
360
|
+
* Success
|
|
361
|
+
*/
|
|
362
|
+
200: unknown;
|
|
363
|
+
};
|
|
364
|
+
type GetApiActiveConversationsAgentByAgentNumberData = {
|
|
365
|
+
body?: never;
|
|
366
|
+
path: {
|
|
367
|
+
agentNumber: string;
|
|
368
|
+
};
|
|
369
|
+
query?: never;
|
|
370
|
+
url: '/api/active-conversations/agent/{agentNumber}';
|
|
371
|
+
};
|
|
372
|
+
type GetApiActiveConversationsAgentByAgentNumberErrors = {
|
|
373
|
+
/**
|
|
374
|
+
* Internal server error
|
|
375
|
+
*/
|
|
376
|
+
500: unknown;
|
|
377
|
+
};
|
|
378
|
+
type GetApiActiveConversationsAgentByAgentNumberResponses = {
|
|
379
|
+
/**
|
|
380
|
+
* Success
|
|
381
|
+
*/
|
|
382
|
+
200: unknown;
|
|
383
|
+
};
|
|
384
|
+
type PostApiActiveConversationsAgentClaimData = {
|
|
385
|
+
body: {
|
|
386
|
+
[key: string]: unknown;
|
|
387
|
+
};
|
|
388
|
+
path?: never;
|
|
389
|
+
query?: never;
|
|
390
|
+
url: '/api/active-conversations/agent/claim';
|
|
391
|
+
};
|
|
392
|
+
type PostApiActiveConversationsAgentClaimErrors = {
|
|
393
|
+
/**
|
|
394
|
+
* Internal server error
|
|
395
|
+
*/
|
|
396
|
+
500: unknown;
|
|
397
|
+
};
|
|
398
|
+
type PostApiActiveConversationsAgentClaimResponses = {
|
|
399
|
+
/**
|
|
400
|
+
* Success
|
|
401
|
+
*/
|
|
402
|
+
200: unknown;
|
|
403
|
+
};
|
|
404
|
+
type PostApiClearData = {
|
|
405
|
+
body: {
|
|
406
|
+
[key: string]: unknown;
|
|
407
|
+
};
|
|
408
|
+
path?: never;
|
|
409
|
+
query?: never;
|
|
410
|
+
url: '/api/clear';
|
|
411
|
+
};
|
|
412
|
+
type PostApiClearErrors = {
|
|
413
|
+
/**
|
|
414
|
+
* Internal server error
|
|
415
|
+
*/
|
|
416
|
+
500: unknown;
|
|
417
|
+
};
|
|
418
|
+
type PostApiClearResponses = {
|
|
419
|
+
/**
|
|
420
|
+
* Success
|
|
421
|
+
*/
|
|
422
|
+
200: unknown;
|
|
423
|
+
};
|
|
424
|
+
type PostApiConversationMemoryProfilesLookupData = {
|
|
425
|
+
body: {
|
|
426
|
+
[key: string]: unknown;
|
|
427
|
+
};
|
|
428
|
+
path?: never;
|
|
429
|
+
query?: never;
|
|
430
|
+
url: '/api/conversation-memory/profiles-lookup';
|
|
431
|
+
};
|
|
432
|
+
type PostApiConversationMemoryProfilesLookupErrors = {
|
|
433
|
+
/**
|
|
434
|
+
* Internal server error
|
|
435
|
+
*/
|
|
436
|
+
500: unknown;
|
|
437
|
+
};
|
|
438
|
+
type PostApiConversationMemoryProfilesLookupResponses = {
|
|
439
|
+
/**
|
|
440
|
+
* Success
|
|
441
|
+
*/
|
|
442
|
+
200: unknown;
|
|
443
|
+
};
|
|
444
|
+
type PostApiConversationMemoryRecallData = {
|
|
445
|
+
body: {
|
|
446
|
+
[key: string]: unknown;
|
|
447
|
+
};
|
|
448
|
+
path?: never;
|
|
449
|
+
query?: never;
|
|
450
|
+
url: '/api/conversation-memory/recall';
|
|
451
|
+
};
|
|
452
|
+
type PostApiConversationMemoryRecallErrors = {
|
|
453
|
+
/**
|
|
454
|
+
* Internal server error
|
|
455
|
+
*/
|
|
456
|
+
500: unknown;
|
|
457
|
+
};
|
|
458
|
+
type PostApiConversationMemoryRecallResponses = {
|
|
459
|
+
/**
|
|
460
|
+
* Success
|
|
461
|
+
*/
|
|
462
|
+
200: unknown;
|
|
463
|
+
};
|
|
464
|
+
type DeleteApiConversationMemoryResetData = {
|
|
465
|
+
body?: never;
|
|
466
|
+
path?: never;
|
|
467
|
+
query: {
|
|
468
|
+
profileId: string;
|
|
469
|
+
};
|
|
470
|
+
url: '/api/conversation-memory/reset';
|
|
471
|
+
};
|
|
472
|
+
type DeleteApiConversationMemoryResetErrors = {
|
|
473
|
+
/**
|
|
474
|
+
* Internal server error
|
|
475
|
+
*/
|
|
476
|
+
500: unknown;
|
|
477
|
+
};
|
|
478
|
+
type DeleteApiConversationMemoryResetResponses = {
|
|
479
|
+
/**
|
|
480
|
+
* Success
|
|
481
|
+
*/
|
|
482
|
+
200: unknown;
|
|
483
|
+
};
|
|
484
|
+
type GetApiCountryConfigsData = {
|
|
485
|
+
body?: never;
|
|
486
|
+
path?: never;
|
|
487
|
+
query?: never;
|
|
488
|
+
url: '/api/country-configs';
|
|
489
|
+
};
|
|
490
|
+
type GetApiCountryConfigsErrors = {
|
|
491
|
+
/**
|
|
492
|
+
* Internal server error
|
|
493
|
+
*/
|
|
494
|
+
500: unknown;
|
|
495
|
+
};
|
|
496
|
+
type GetApiCountryConfigsResponses = {
|
|
497
|
+
/**
|
|
498
|
+
* Success
|
|
499
|
+
*/
|
|
500
|
+
200: unknown;
|
|
501
|
+
};
|
|
502
|
+
type DeleteApiKillConversationByPhoneData = {
|
|
503
|
+
body?: never;
|
|
504
|
+
path: {
|
|
505
|
+
phone: string;
|
|
506
|
+
};
|
|
507
|
+
query?: never;
|
|
508
|
+
url: '/api/kill-conversation/{phone}';
|
|
509
|
+
};
|
|
510
|
+
type DeleteApiKillConversationByPhoneErrors = {
|
|
511
|
+
/**
|
|
512
|
+
* Internal server error
|
|
513
|
+
*/
|
|
514
|
+
500: unknown;
|
|
515
|
+
};
|
|
516
|
+
type DeleteApiKillConversationByPhoneResponses = {
|
|
517
|
+
/**
|
|
518
|
+
* Success
|
|
519
|
+
*/
|
|
520
|
+
200: unknown;
|
|
521
|
+
};
|
|
522
|
+
type DeleteApiLiveNumbersData = {
|
|
523
|
+
body?: never;
|
|
524
|
+
path?: never;
|
|
525
|
+
query?: never;
|
|
526
|
+
url: '/api/live-numbers';
|
|
527
|
+
};
|
|
528
|
+
type DeleteApiLiveNumbersErrors = {
|
|
529
|
+
/**
|
|
530
|
+
* Internal server error
|
|
531
|
+
*/
|
|
532
|
+
500: unknown;
|
|
533
|
+
};
|
|
534
|
+
type DeleteApiLiveNumbersResponses = {
|
|
535
|
+
/**
|
|
536
|
+
* Success
|
|
537
|
+
*/
|
|
538
|
+
200: unknown;
|
|
539
|
+
};
|
|
540
|
+
type GetApiMessagesData = {
|
|
541
|
+
body?: never;
|
|
542
|
+
path?: never;
|
|
543
|
+
query?: {
|
|
544
|
+
lastId?: string;
|
|
545
|
+
phoneNumber?: string;
|
|
546
|
+
};
|
|
547
|
+
url: '/api/messages';
|
|
548
|
+
};
|
|
549
|
+
type GetApiMessagesErrors = {
|
|
550
|
+
/**
|
|
551
|
+
* Internal server error
|
|
552
|
+
*/
|
|
553
|
+
500: unknown;
|
|
554
|
+
};
|
|
555
|
+
type GetApiMessagesResponses = {
|
|
556
|
+
/**
|
|
557
|
+
* Success
|
|
558
|
+
*/
|
|
559
|
+
200: unknown;
|
|
560
|
+
};
|
|
561
|
+
type PostApiRealTimeCintelUiData = {
|
|
562
|
+
body: {
|
|
563
|
+
[key: string]: unknown;
|
|
564
|
+
};
|
|
565
|
+
path?: never;
|
|
566
|
+
query?: never;
|
|
567
|
+
url: '/api/real-time-cintel-ui';
|
|
568
|
+
};
|
|
569
|
+
type PostApiRealTimeCintelUiErrors = {
|
|
570
|
+
/**
|
|
571
|
+
* Internal server error
|
|
572
|
+
*/
|
|
573
|
+
500: unknown;
|
|
574
|
+
};
|
|
575
|
+
type PostApiRealTimeCintelUiResponses = {
|
|
576
|
+
/**
|
|
577
|
+
* Success
|
|
578
|
+
*/
|
|
579
|
+
200: unknown;
|
|
580
|
+
};
|
|
581
|
+
type GetApiSyncTokenData = {
|
|
582
|
+
body?: never;
|
|
583
|
+
path?: never;
|
|
584
|
+
query?: never;
|
|
585
|
+
url: '/api/sync-token';
|
|
586
|
+
};
|
|
587
|
+
type GetApiSyncTokenErrors = {
|
|
588
|
+
/**
|
|
589
|
+
* Internal server error
|
|
590
|
+
*/
|
|
591
|
+
500: unknown;
|
|
592
|
+
};
|
|
593
|
+
type GetApiSyncTokenResponses = {
|
|
594
|
+
/**
|
|
595
|
+
* Success
|
|
596
|
+
*/
|
|
597
|
+
200: unknown;
|
|
598
|
+
};
|
|
599
|
+
type PostApiTelemetryData = {
|
|
600
|
+
body?: never;
|
|
601
|
+
path?: never;
|
|
602
|
+
query?: {
|
|
603
|
+
ddforward?: string;
|
|
604
|
+
};
|
|
605
|
+
url: '/api/telemetry';
|
|
606
|
+
};
|
|
607
|
+
type PostApiTelemetryErrors = {
|
|
608
|
+
/**
|
|
609
|
+
* Internal server error
|
|
610
|
+
*/
|
|
611
|
+
500: unknown;
|
|
612
|
+
};
|
|
613
|
+
type PostApiTelemetryResponses = {
|
|
614
|
+
/**
|
|
615
|
+
* Success
|
|
616
|
+
*/
|
|
617
|
+
200: unknown;
|
|
618
|
+
};
|
|
619
|
+
|
|
620
|
+
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options$1<TData, ThrowOnError, TResponse> & {
|
|
621
|
+
/**
|
|
622
|
+
* You can provide a client instance returned by `createClient()` instead of
|
|
623
|
+
* individual options. This might be also useful if you want to implement a
|
|
624
|
+
* custom client.
|
|
625
|
+
*/
|
|
626
|
+
client?: Client;
|
|
627
|
+
/**
|
|
628
|
+
* You can pass arbitrary values through the `meta` object. This can be
|
|
629
|
+
* used to access values that aren't defined as part of the SDK function.
|
|
630
|
+
*/
|
|
631
|
+
meta?: keyof ClientMeta extends never ? Record<string, unknown> : ClientMeta;
|
|
632
|
+
};
|
|
633
|
+
/**
|
|
634
|
+
* GET active-conversations / {customerNumber}
|
|
635
|
+
*/
|
|
636
|
+
declare const getApiActiveConversationsByCustomerNumber: <ThrowOnError extends boolean = false>(options: Options<GetApiActiveConversationsByCustomerNumberData, ThrowOnError>) => RequestResult<GetApiActiveConversationsByCustomerNumberResponses, GetApiActiveConversationsByCustomerNumberErrors, ThrowOnError>;
|
|
637
|
+
/**
|
|
638
|
+
* GET active-conversations / agent / {agentNumber}
|
|
639
|
+
*/
|
|
640
|
+
declare const getApiActiveConversationsAgentByAgentNumber: <ThrowOnError extends boolean = false>(options: Options<GetApiActiveConversationsAgentByAgentNumberData, ThrowOnError>) => RequestResult<GetApiActiveConversationsAgentByAgentNumberResponses, GetApiActiveConversationsAgentByAgentNumberErrors, ThrowOnError>;
|
|
641
|
+
/**
|
|
642
|
+
* POST active-conversations / agent / claim
|
|
643
|
+
*/
|
|
644
|
+
declare const postApiActiveConversationsAgentClaim: <ThrowOnError extends boolean = false>(options: Options<PostApiActiveConversationsAgentClaimData, ThrowOnError>) => RequestResult<PostApiActiveConversationsAgentClaimResponses, PostApiActiveConversationsAgentClaimErrors, ThrowOnError>;
|
|
645
|
+
/**
|
|
646
|
+
* POST clear
|
|
647
|
+
*/
|
|
648
|
+
declare const postApiClear: <ThrowOnError extends boolean = false>(options: Options<PostApiClearData, ThrowOnError>) => RequestResult<PostApiClearResponses, PostApiClearErrors, ThrowOnError>;
|
|
649
|
+
/**
|
|
650
|
+
* POST conversation-memory / profiles-lookup
|
|
651
|
+
*/
|
|
652
|
+
declare const postApiConversationMemoryProfilesLookup: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationMemoryProfilesLookupData, ThrowOnError>) => RequestResult<PostApiConversationMemoryProfilesLookupResponses, PostApiConversationMemoryProfilesLookupErrors, ThrowOnError>;
|
|
653
|
+
/**
|
|
654
|
+
* POST conversation-memory / recall
|
|
655
|
+
*/
|
|
656
|
+
declare const postApiConversationMemoryRecall: <ThrowOnError extends boolean = false>(options: Options<PostApiConversationMemoryRecallData, ThrowOnError>) => RequestResult<PostApiConversationMemoryRecallResponses, PostApiConversationMemoryRecallErrors, ThrowOnError>;
|
|
657
|
+
/**
|
|
658
|
+
* DELETE conversation-memory / reset
|
|
659
|
+
*/
|
|
660
|
+
declare const deleteApiConversationMemoryReset: <ThrowOnError extends boolean = false>(options: Options<DeleteApiConversationMemoryResetData, ThrowOnError>) => RequestResult<DeleteApiConversationMemoryResetResponses, DeleteApiConversationMemoryResetErrors, ThrowOnError>;
|
|
661
|
+
/**
|
|
662
|
+
* GET country-configs
|
|
663
|
+
*/
|
|
664
|
+
declare const getApiCountryConfigs: <ThrowOnError extends boolean = false>(options?: Options<GetApiCountryConfigsData, ThrowOnError>) => RequestResult<GetApiCountryConfigsResponses, GetApiCountryConfigsErrors, ThrowOnError>;
|
|
665
|
+
/**
|
|
666
|
+
* DELETE kill-conversation / {phone}
|
|
667
|
+
*/
|
|
668
|
+
declare const deleteApiKillConversationByPhone: <ThrowOnError extends boolean = false>(options: Options<DeleteApiKillConversationByPhoneData, ThrowOnError>) => RequestResult<DeleteApiKillConversationByPhoneResponses, DeleteApiKillConversationByPhoneErrors, ThrowOnError>;
|
|
669
|
+
/**
|
|
670
|
+
* DELETE live-numbers
|
|
671
|
+
*/
|
|
672
|
+
declare const deleteApiLiveNumbers: <ThrowOnError extends boolean = false>(options?: Options<DeleteApiLiveNumbersData, ThrowOnError>) => RequestResult<DeleteApiLiveNumbersResponses, DeleteApiLiveNumbersErrors, ThrowOnError>;
|
|
673
|
+
/**
|
|
674
|
+
* GET messages
|
|
675
|
+
*/
|
|
676
|
+
declare const getApiMessages: <ThrowOnError extends boolean = false>(options?: Options<GetApiMessagesData, ThrowOnError>) => RequestResult<GetApiMessagesResponses, GetApiMessagesErrors, ThrowOnError>;
|
|
677
|
+
/**
|
|
678
|
+
* POST real-time-cintel-ui
|
|
679
|
+
*/
|
|
680
|
+
declare const postApiRealTimeCintelUi: <ThrowOnError extends boolean = false>(options: Options<PostApiRealTimeCintelUiData, ThrowOnError>) => RequestResult<PostApiRealTimeCintelUiResponses, PostApiRealTimeCintelUiErrors, ThrowOnError>;
|
|
681
|
+
/**
|
|
682
|
+
* GET sync-token
|
|
683
|
+
*/
|
|
684
|
+
declare const getApiSyncToken: <ThrowOnError extends boolean = false>(options?: Options<GetApiSyncTokenData, ThrowOnError>) => RequestResult<GetApiSyncTokenResponses, GetApiSyncTokenErrors, ThrowOnError>;
|
|
685
|
+
/**
|
|
686
|
+
* POST telemetry
|
|
687
|
+
*/
|
|
688
|
+
declare const postApiTelemetry: <ThrowOnError extends boolean = false>(options?: Options<PostApiTelemetryData, ThrowOnError>) => RequestResult<PostApiTelemetryResponses, PostApiTelemetryErrors, ThrowOnError>;
|
|
689
|
+
|
|
690
|
+
declare const zGetApiActiveConversationsByCustomerNumberPath: z.ZodObject<{
|
|
691
|
+
customerNumber: z.ZodString;
|
|
692
|
+
}, "strip", z.ZodTypeAny, {
|
|
693
|
+
customerNumber: string;
|
|
694
|
+
}, {
|
|
695
|
+
customerNumber: string;
|
|
696
|
+
}>;
|
|
697
|
+
declare const zGetApiActiveConversationsAgentByAgentNumberPath: z.ZodObject<{
|
|
698
|
+
agentNumber: z.ZodString;
|
|
699
|
+
}, "strip", z.ZodTypeAny, {
|
|
700
|
+
agentNumber: string;
|
|
701
|
+
}, {
|
|
702
|
+
agentNumber: string;
|
|
703
|
+
}>;
|
|
704
|
+
declare const zPostApiActiveConversationsAgentClaimBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
705
|
+
declare const zPostApiClearBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
706
|
+
declare const zPostApiConversationMemoryProfilesLookupBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
707
|
+
declare const zPostApiConversationMemoryRecallBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
708
|
+
declare const zDeleteApiConversationMemoryResetQuery: z.ZodObject<{
|
|
709
|
+
profileId: z.ZodString;
|
|
710
|
+
}, "strip", z.ZodTypeAny, {
|
|
711
|
+
profileId: string;
|
|
712
|
+
}, {
|
|
713
|
+
profileId: string;
|
|
714
|
+
}>;
|
|
715
|
+
declare const zDeleteApiKillConversationByPhonePath: z.ZodObject<{
|
|
716
|
+
phone: z.ZodString;
|
|
717
|
+
}, "strip", z.ZodTypeAny, {
|
|
718
|
+
phone: string;
|
|
719
|
+
}, {
|
|
720
|
+
phone: string;
|
|
721
|
+
}>;
|
|
722
|
+
declare const zGetApiMessagesQuery: z.ZodObject<{
|
|
723
|
+
lastId: z.ZodOptional<z.ZodString>;
|
|
724
|
+
phoneNumber: z.ZodOptional<z.ZodString>;
|
|
725
|
+
}, "strip", z.ZodTypeAny, {
|
|
726
|
+
lastId?: string | undefined;
|
|
727
|
+
phoneNumber?: string | undefined;
|
|
728
|
+
}, {
|
|
729
|
+
lastId?: string | undefined;
|
|
730
|
+
phoneNumber?: string | undefined;
|
|
731
|
+
}>;
|
|
732
|
+
declare const zPostApiRealTimeCintelUiBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
733
|
+
declare const zPostApiTelemetryQuery: z.ZodObject<{
|
|
734
|
+
ddforward: z.ZodOptional<z.ZodString>;
|
|
735
|
+
}, "strip", z.ZodTypeAny, {
|
|
736
|
+
ddforward?: string | undefined;
|
|
737
|
+
}, {
|
|
738
|
+
ddforward?: string | undefined;
|
|
739
|
+
}>;
|
|
740
|
+
|
|
741
|
+
declare const zod_gen_zDeleteApiConversationMemoryResetQuery: typeof zDeleteApiConversationMemoryResetQuery;
|
|
742
|
+
declare const zod_gen_zDeleteApiKillConversationByPhonePath: typeof zDeleteApiKillConversationByPhonePath;
|
|
743
|
+
declare const zod_gen_zGetApiActiveConversationsAgentByAgentNumberPath: typeof zGetApiActiveConversationsAgentByAgentNumberPath;
|
|
744
|
+
declare const zod_gen_zGetApiActiveConversationsByCustomerNumberPath: typeof zGetApiActiveConversationsByCustomerNumberPath;
|
|
745
|
+
declare const zod_gen_zGetApiMessagesQuery: typeof zGetApiMessagesQuery;
|
|
746
|
+
declare const zod_gen_zPostApiActiveConversationsAgentClaimBody: typeof zPostApiActiveConversationsAgentClaimBody;
|
|
747
|
+
declare const zod_gen_zPostApiClearBody: typeof zPostApiClearBody;
|
|
748
|
+
declare const zod_gen_zPostApiConversationMemoryProfilesLookupBody: typeof zPostApiConversationMemoryProfilesLookupBody;
|
|
749
|
+
declare const zod_gen_zPostApiConversationMemoryRecallBody: typeof zPostApiConversationMemoryRecallBody;
|
|
750
|
+
declare const zod_gen_zPostApiRealTimeCintelUiBody: typeof zPostApiRealTimeCintelUiBody;
|
|
751
|
+
declare const zod_gen_zPostApiTelemetryQuery: typeof zPostApiTelemetryQuery;
|
|
752
|
+
declare namespace zod_gen {
|
|
753
|
+
export {
|
|
754
|
+
zod_gen_zDeleteApiConversationMemoryResetQuery as zDeleteApiConversationMemoryResetQuery,
|
|
755
|
+
zod_gen_zDeleteApiKillConversationByPhonePath as zDeleteApiKillConversationByPhonePath,
|
|
756
|
+
zod_gen_zGetApiActiveConversationsAgentByAgentNumberPath as zGetApiActiveConversationsAgentByAgentNumberPath,
|
|
757
|
+
zod_gen_zGetApiActiveConversationsByCustomerNumberPath as zGetApiActiveConversationsByCustomerNumberPath,
|
|
758
|
+
zod_gen_zGetApiMessagesQuery as zGetApiMessagesQuery,
|
|
759
|
+
zod_gen_zPostApiActiveConversationsAgentClaimBody as zPostApiActiveConversationsAgentClaimBody,
|
|
760
|
+
zod_gen_zPostApiClearBody as zPostApiClearBody,
|
|
761
|
+
zod_gen_zPostApiConversationMemoryProfilesLookupBody as zPostApiConversationMemoryProfilesLookupBody,
|
|
762
|
+
zod_gen_zPostApiConversationMemoryRecallBody as zPostApiConversationMemoryRecallBody,
|
|
763
|
+
zod_gen_zPostApiRealTimeCintelUiBody as zPostApiRealTimeCintelUiBody,
|
|
764
|
+
zod_gen_zPostApiTelemetryQuery as zPostApiTelemetryQuery,
|
|
765
|
+
};
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
export { createRampDialogClient, deleteApiConversationMemoryReset, deleteApiKillConversationByPhone, deleteApiLiveNumbers, getApiActiveConversationsAgentByAgentNumber, getApiActiveConversationsByCustomerNumber, getApiCountryConfigs, getApiMessages, getApiSyncToken, postApiActiveConversationsAgentClaim, postApiClear, postApiConversationMemoryProfilesLookup, postApiConversationMemoryRecall, postApiRealTimeCintelUi, postApiTelemetry, zod_gen as schemas };
|
|
769
|
+
export type { Client, ClientOptions, Config, CreateRampDialogClientOptions, DeleteApiConversationMemoryResetData, DeleteApiConversationMemoryResetErrors, DeleteApiConversationMemoryResetResponses, DeleteApiKillConversationByPhoneData, DeleteApiKillConversationByPhoneErrors, DeleteApiKillConversationByPhoneResponses, DeleteApiLiveNumbersData, DeleteApiLiveNumbersErrors, DeleteApiLiveNumbersResponses, GetApiActiveConversationsAgentByAgentNumberData, GetApiActiveConversationsAgentByAgentNumberErrors, GetApiActiveConversationsAgentByAgentNumberResponses, GetApiActiveConversationsByCustomerNumberData, GetApiActiveConversationsByCustomerNumberErrors, GetApiActiveConversationsByCustomerNumberResponses, GetApiCountryConfigsData, GetApiCountryConfigsErrors, GetApiCountryConfigsResponses, GetApiMessagesData, GetApiMessagesErrors, GetApiMessagesResponses, GetApiSyncTokenData, GetApiSyncTokenErrors, GetApiSyncTokenResponses, Options, PostApiActiveConversationsAgentClaimData, PostApiActiveConversationsAgentClaimErrors, PostApiActiveConversationsAgentClaimResponses, PostApiClearData, PostApiClearErrors, PostApiClearResponses, PostApiConversationMemoryProfilesLookupData, PostApiConversationMemoryProfilesLookupErrors, PostApiConversationMemoryProfilesLookupResponses, PostApiConversationMemoryRecallData, PostApiConversationMemoryRecallErrors, PostApiConversationMemoryRecallResponses, PostApiRealTimeCintelUiData, PostApiRealTimeCintelUiErrors, PostApiRealTimeCintelUiResponses, PostApiTelemetryData, PostApiTelemetryErrors, PostApiTelemetryResponses, RequestResult };
|