@gtmi/ramp-site-client 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +44 -0
- package/dist/es/index.d.mts +2749 -0
- package/dist/es/index.mjs +2045 -0
- package/package.json +46 -0
- package/src/client.test.ts +36 -0
- package/src/client.ts +15 -0
- package/src/client.types.ts +11 -0
- package/src/generated/client/client.gen.ts +277 -0
- package/src/generated/client/index.ts +27 -0
- package/src/generated/client/types.gen.ts +214 -0
- package/src/generated/client/utils.gen.ts +316 -0
- package/src/generated/client.gen.ts +18 -0
- package/src/generated/core/auth.gen.ts +48 -0
- package/src/generated/core/bodySerializer.gen.ts +82 -0
- package/src/generated/core/params.gen.ts +178 -0
- package/src/generated/core/pathSerializer.gen.ts +171 -0
- package/src/generated/core/queryKeySerializer.gen.ts +117 -0
- package/src/generated/core/serverSentEvents.gen.ts +242 -0
- package/src/generated/core/types.gen.ts +110 -0
- package/src/generated/core/utils.gen.ts +140 -0
- package/src/generated/index.ts +272 -0
- package/src/generated/sdk.gen.ts +1934 -0
- package/src/generated/types.gen.ts +1791 -0
- package/src/generated/zod.gen.ts +249 -0
- package/src/index.ts +7 -0
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
import type { BodySerializer, QuerySerializer } from './bodySerializer.gen';
|
|
4
|
+
import {
|
|
5
|
+
type ArraySeparatorStyle,
|
|
6
|
+
serializeArrayParam,
|
|
7
|
+
serializeObjectParam,
|
|
8
|
+
serializePrimitiveParam,
|
|
9
|
+
} from './pathSerializer.gen';
|
|
10
|
+
|
|
11
|
+
export interface PathSerializer {
|
|
12
|
+
path: Record<string, unknown>;
|
|
13
|
+
url: string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export const PATH_PARAM_RE: RegExp = /\{[^{}]+\}/g;
|
|
17
|
+
|
|
18
|
+
export const defaultPathSerializer = ({ path, url: _url }: PathSerializer): string => {
|
|
19
|
+
let url = _url;
|
|
20
|
+
const matches = _url.match(PATH_PARAM_RE);
|
|
21
|
+
if (matches) {
|
|
22
|
+
for (const match of matches) {
|
|
23
|
+
let explode = false;
|
|
24
|
+
let name = match.substring(1, match.length - 1);
|
|
25
|
+
let style: ArraySeparatorStyle = 'simple';
|
|
26
|
+
|
|
27
|
+
if (name.endsWith('*')) {
|
|
28
|
+
explode = true;
|
|
29
|
+
name = name.substring(0, name.length - 1);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
if (name.startsWith('.')) {
|
|
33
|
+
name = name.substring(1);
|
|
34
|
+
style = 'label';
|
|
35
|
+
} else if (name.startsWith(';')) {
|
|
36
|
+
name = name.substring(1);
|
|
37
|
+
style = 'matrix';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const value = path[name];
|
|
41
|
+
|
|
42
|
+
if (value === undefined || value === null) {
|
|
43
|
+
continue;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
if (Array.isArray(value)) {
|
|
47
|
+
url = url.replace(match, serializeArrayParam({ explode, name, style, value }));
|
|
48
|
+
continue;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (typeof value === 'object') {
|
|
52
|
+
url = url.replace(
|
|
53
|
+
match,
|
|
54
|
+
serializeObjectParam({
|
|
55
|
+
explode,
|
|
56
|
+
name,
|
|
57
|
+
style,
|
|
58
|
+
value: value as Record<string, unknown>,
|
|
59
|
+
valueOnly: true,
|
|
60
|
+
}),
|
|
61
|
+
);
|
|
62
|
+
continue;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
if (style === 'matrix') {
|
|
66
|
+
url = url.replace(
|
|
67
|
+
match,
|
|
68
|
+
`;${serializePrimitiveParam({
|
|
69
|
+
name,
|
|
70
|
+
value: value as string,
|
|
71
|
+
})}`,
|
|
72
|
+
);
|
|
73
|
+
continue;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
const replaceValue = encodeURIComponent(
|
|
77
|
+
style === 'label' ? `.${value as string}` : (value as string),
|
|
78
|
+
);
|
|
79
|
+
url = url.replace(match, replaceValue);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
return url;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const getUrl = ({
|
|
86
|
+
baseUrl,
|
|
87
|
+
path,
|
|
88
|
+
query,
|
|
89
|
+
querySerializer,
|
|
90
|
+
url: _url,
|
|
91
|
+
}: {
|
|
92
|
+
baseUrl?: string;
|
|
93
|
+
path?: Record<string, unknown>;
|
|
94
|
+
query?: Record<string, unknown>;
|
|
95
|
+
querySerializer: QuerySerializer;
|
|
96
|
+
url: string;
|
|
97
|
+
}): string => {
|
|
98
|
+
const pathUrl = _url.startsWith('/') ? _url : `/${_url}`;
|
|
99
|
+
let url = (baseUrl ?? '') + pathUrl;
|
|
100
|
+
if (path) {
|
|
101
|
+
url = defaultPathSerializer({ path, url });
|
|
102
|
+
}
|
|
103
|
+
let search = query ? querySerializer(query) : '';
|
|
104
|
+
if (search.startsWith('?')) {
|
|
105
|
+
search = search.substring(1);
|
|
106
|
+
}
|
|
107
|
+
if (search) {
|
|
108
|
+
url += `?${search}`;
|
|
109
|
+
}
|
|
110
|
+
return url;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export function getValidRequestBody(options: {
|
|
114
|
+
body?: unknown;
|
|
115
|
+
bodySerializer?: BodySerializer | null;
|
|
116
|
+
serializedBody?: unknown;
|
|
117
|
+
}): unknown {
|
|
118
|
+
const hasBody = options.body !== undefined;
|
|
119
|
+
const isSerializedBody = hasBody && options.bodySerializer;
|
|
120
|
+
|
|
121
|
+
if (isSerializedBody) {
|
|
122
|
+
if ('serializedBody' in options) {
|
|
123
|
+
const hasSerializedBody =
|
|
124
|
+
options.serializedBody !== undefined && options.serializedBody !== '';
|
|
125
|
+
|
|
126
|
+
return hasSerializedBody ? options.serializedBody : null;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// not all clients implement a serializedBody property (i.e., client-axios)
|
|
130
|
+
return options.body !== '' ? options.body : null;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// plain/text body
|
|
134
|
+
if (hasBody) {
|
|
135
|
+
return options.body;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// no body was provided
|
|
139
|
+
return undefined;
|
|
140
|
+
}
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
export {
|
|
4
|
+
deleteApiConversationMemoryConversationSummaries,
|
|
5
|
+
deleteApiConversationMemoryIdentifiers,
|
|
6
|
+
deleteApiConversationMemoryObservations,
|
|
7
|
+
deleteApiConversationMemoryProfiles,
|
|
8
|
+
deleteApiConversationMemoryReset,
|
|
9
|
+
deleteApiConversationalIntelligenceOperator,
|
|
10
|
+
deleteApiConversationsDelete,
|
|
11
|
+
deleteApiLeadGen,
|
|
12
|
+
deleteApiLinkShortener,
|
|
13
|
+
deleteApiLiveNumbers,
|
|
14
|
+
deleteApiTemplate,
|
|
15
|
+
getApiCampaign,
|
|
16
|
+
getApiConversationMemoryConversationSummaries,
|
|
17
|
+
getApiConversationMemoryIdentifiers,
|
|
18
|
+
getApiConversationMemoryObservations,
|
|
19
|
+
getApiConversationMemoryProfiles,
|
|
20
|
+
getApiConversationMemoryTraitGroups,
|
|
21
|
+
getApiConversationMemoryTraits,
|
|
22
|
+
getApiConversationalIntelligenceOperator,
|
|
23
|
+
getApiCountryConfigs,
|
|
24
|
+
getApiIntelligenceConfiguration,
|
|
25
|
+
getApiInternalNav,
|
|
26
|
+
getApiIsvLogo,
|
|
27
|
+
getApiLeadGen,
|
|
28
|
+
getApiLinkShortener,
|
|
29
|
+
getApiLiveNumbers,
|
|
30
|
+
getApiPhoneLogsByPhoneNumber,
|
|
31
|
+
getApiRecentlyActiveNumbers,
|
|
32
|
+
getApiSession,
|
|
33
|
+
getApiSupportedRegions,
|
|
34
|
+
patchApiConversationMemoryConversationSummaries,
|
|
35
|
+
patchApiConversationMemoryIdentifiers,
|
|
36
|
+
patchApiConversationMemoryObservations,
|
|
37
|
+
patchApiConversationMemoryProfiles,
|
|
38
|
+
patchApiConversationMemoryTraitGroups,
|
|
39
|
+
patchApiLeadGen,
|
|
40
|
+
patchApiLinkShortener,
|
|
41
|
+
postApiAlgoliaSecuredKey,
|
|
42
|
+
postApiConversationMemoryConversationSummaries,
|
|
43
|
+
postApiConversationMemoryIdentifiers,
|
|
44
|
+
postApiConversationMemoryObservations,
|
|
45
|
+
postApiConversationMemoryProfiles,
|
|
46
|
+
postApiConversationMemoryProfilesLookup,
|
|
47
|
+
postApiConversationMemoryRecall,
|
|
48
|
+
postApiConversationMemoryTraitGroups,
|
|
49
|
+
postApiConversationalIntelligenceOperator,
|
|
50
|
+
postApiConversationsSave,
|
|
51
|
+
postApiConversationsShare,
|
|
52
|
+
postApiCreateExternalFlexConnection,
|
|
53
|
+
postApiEnhancePrompt,
|
|
54
|
+
postApiGenerateTags,
|
|
55
|
+
postApiIncrementViewCount,
|
|
56
|
+
postApiIntelligenceConfiguration,
|
|
57
|
+
postApiLeadGen,
|
|
58
|
+
postApiLinkShortener,
|
|
59
|
+
postApiOutboundCall,
|
|
60
|
+
postApiOutboundCommunicationText,
|
|
61
|
+
postApiSegmentIdentify,
|
|
62
|
+
postApiSegmentProfile,
|
|
63
|
+
postApiTags,
|
|
64
|
+
postApiTelemetry,
|
|
65
|
+
postApiTemplateAutogen,
|
|
66
|
+
postApiVerifyCheck,
|
|
67
|
+
postApiVerifySend,
|
|
68
|
+
putApiConversationalIntelligenceOperator,
|
|
69
|
+
putApiIntelligenceConfiguration,
|
|
70
|
+
type Options,
|
|
71
|
+
} from './sdk.gen';
|
|
72
|
+
export type {
|
|
73
|
+
ClientOptions,
|
|
74
|
+
DeleteApiConversationMemoryConversationSummariesData,
|
|
75
|
+
DeleteApiConversationMemoryConversationSummariesErrors,
|
|
76
|
+
DeleteApiConversationMemoryConversationSummariesResponses,
|
|
77
|
+
DeleteApiConversationMemoryIdentifiersData,
|
|
78
|
+
DeleteApiConversationMemoryIdentifiersErrors,
|
|
79
|
+
DeleteApiConversationMemoryIdentifiersResponses,
|
|
80
|
+
DeleteApiConversationMemoryObservationsData,
|
|
81
|
+
DeleteApiConversationMemoryObservationsErrors,
|
|
82
|
+
DeleteApiConversationMemoryObservationsResponses,
|
|
83
|
+
DeleteApiConversationMemoryProfilesData,
|
|
84
|
+
DeleteApiConversationMemoryProfilesErrors,
|
|
85
|
+
DeleteApiConversationMemoryProfilesResponses,
|
|
86
|
+
DeleteApiConversationMemoryResetData,
|
|
87
|
+
DeleteApiConversationMemoryResetErrors,
|
|
88
|
+
DeleteApiConversationMemoryResetResponses,
|
|
89
|
+
DeleteApiConversationalIntelligenceOperatorData,
|
|
90
|
+
DeleteApiConversationalIntelligenceOperatorErrors,
|
|
91
|
+
DeleteApiConversationalIntelligenceOperatorResponses,
|
|
92
|
+
DeleteApiConversationsDeleteData,
|
|
93
|
+
DeleteApiConversationsDeleteErrors,
|
|
94
|
+
DeleteApiConversationsDeleteResponses,
|
|
95
|
+
DeleteApiLeadGenData,
|
|
96
|
+
DeleteApiLeadGenErrors,
|
|
97
|
+
DeleteApiLeadGenResponses,
|
|
98
|
+
DeleteApiLinkShortenerData,
|
|
99
|
+
DeleteApiLinkShortenerErrors,
|
|
100
|
+
DeleteApiLinkShortenerResponses,
|
|
101
|
+
DeleteApiLiveNumbersData,
|
|
102
|
+
DeleteApiLiveNumbersErrors,
|
|
103
|
+
DeleteApiLiveNumbersResponses,
|
|
104
|
+
DeleteApiTemplateData,
|
|
105
|
+
DeleteApiTemplateErrors,
|
|
106
|
+
DeleteApiTemplateResponses,
|
|
107
|
+
GetApiCampaignData,
|
|
108
|
+
GetApiCampaignErrors,
|
|
109
|
+
GetApiCampaignResponses,
|
|
110
|
+
GetApiConversationMemoryConversationSummariesData,
|
|
111
|
+
GetApiConversationMemoryConversationSummariesErrors,
|
|
112
|
+
GetApiConversationMemoryConversationSummariesResponses,
|
|
113
|
+
GetApiConversationMemoryIdentifiersData,
|
|
114
|
+
GetApiConversationMemoryIdentifiersErrors,
|
|
115
|
+
GetApiConversationMemoryIdentifiersResponses,
|
|
116
|
+
GetApiConversationMemoryObservationsData,
|
|
117
|
+
GetApiConversationMemoryObservationsErrors,
|
|
118
|
+
GetApiConversationMemoryObservationsResponses,
|
|
119
|
+
GetApiConversationMemoryProfilesData,
|
|
120
|
+
GetApiConversationMemoryProfilesErrors,
|
|
121
|
+
GetApiConversationMemoryProfilesResponses,
|
|
122
|
+
GetApiConversationMemoryTraitGroupsData,
|
|
123
|
+
GetApiConversationMemoryTraitGroupsErrors,
|
|
124
|
+
GetApiConversationMemoryTraitGroupsResponses,
|
|
125
|
+
GetApiConversationMemoryTraitsData,
|
|
126
|
+
GetApiConversationMemoryTraitsErrors,
|
|
127
|
+
GetApiConversationMemoryTraitsResponses,
|
|
128
|
+
GetApiConversationalIntelligenceOperatorData,
|
|
129
|
+
GetApiConversationalIntelligenceOperatorErrors,
|
|
130
|
+
GetApiConversationalIntelligenceOperatorResponses,
|
|
131
|
+
GetApiCountryConfigsData,
|
|
132
|
+
GetApiCountryConfigsErrors,
|
|
133
|
+
GetApiCountryConfigsResponses,
|
|
134
|
+
GetApiIntelligenceConfigurationData,
|
|
135
|
+
GetApiIntelligenceConfigurationErrors,
|
|
136
|
+
GetApiIntelligenceConfigurationResponses,
|
|
137
|
+
GetApiInternalNavData,
|
|
138
|
+
GetApiInternalNavErrors,
|
|
139
|
+
GetApiInternalNavResponses,
|
|
140
|
+
GetApiIsvLogoData,
|
|
141
|
+
GetApiIsvLogoErrors,
|
|
142
|
+
GetApiIsvLogoResponses,
|
|
143
|
+
GetApiLeadGenData,
|
|
144
|
+
GetApiLeadGenErrors,
|
|
145
|
+
GetApiLeadGenResponses,
|
|
146
|
+
GetApiLinkShortenerData,
|
|
147
|
+
GetApiLinkShortenerErrors,
|
|
148
|
+
GetApiLinkShortenerResponses,
|
|
149
|
+
GetApiLiveNumbersData,
|
|
150
|
+
GetApiLiveNumbersErrors,
|
|
151
|
+
GetApiLiveNumbersResponses,
|
|
152
|
+
GetApiPhoneLogsByPhoneNumberData,
|
|
153
|
+
GetApiPhoneLogsByPhoneNumberErrors,
|
|
154
|
+
GetApiPhoneLogsByPhoneNumberResponses,
|
|
155
|
+
GetApiRecentlyActiveNumbersData,
|
|
156
|
+
GetApiRecentlyActiveNumbersErrors,
|
|
157
|
+
GetApiRecentlyActiveNumbersResponses,
|
|
158
|
+
GetApiSessionData,
|
|
159
|
+
GetApiSessionErrors,
|
|
160
|
+
GetApiSessionResponses,
|
|
161
|
+
GetApiSupportedRegionsData,
|
|
162
|
+
GetApiSupportedRegionsErrors,
|
|
163
|
+
GetApiSupportedRegionsResponses,
|
|
164
|
+
PatchApiConversationMemoryConversationSummariesData,
|
|
165
|
+
PatchApiConversationMemoryConversationSummariesErrors,
|
|
166
|
+
PatchApiConversationMemoryConversationSummariesResponses,
|
|
167
|
+
PatchApiConversationMemoryIdentifiersData,
|
|
168
|
+
PatchApiConversationMemoryIdentifiersErrors,
|
|
169
|
+
PatchApiConversationMemoryIdentifiersResponses,
|
|
170
|
+
PatchApiConversationMemoryObservationsData,
|
|
171
|
+
PatchApiConversationMemoryObservationsErrors,
|
|
172
|
+
PatchApiConversationMemoryObservationsResponses,
|
|
173
|
+
PatchApiConversationMemoryProfilesData,
|
|
174
|
+
PatchApiConversationMemoryProfilesErrors,
|
|
175
|
+
PatchApiConversationMemoryProfilesResponses,
|
|
176
|
+
PatchApiConversationMemoryTraitGroupsData,
|
|
177
|
+
PatchApiConversationMemoryTraitGroupsErrors,
|
|
178
|
+
PatchApiConversationMemoryTraitGroupsResponses,
|
|
179
|
+
PatchApiLeadGenData,
|
|
180
|
+
PatchApiLeadGenErrors,
|
|
181
|
+
PatchApiLeadGenResponses,
|
|
182
|
+
PatchApiLinkShortenerData,
|
|
183
|
+
PatchApiLinkShortenerErrors,
|
|
184
|
+
PatchApiLinkShortenerResponses,
|
|
185
|
+
PostApiAlgoliaSecuredKeyData,
|
|
186
|
+
PostApiAlgoliaSecuredKeyErrors,
|
|
187
|
+
PostApiAlgoliaSecuredKeyResponses,
|
|
188
|
+
PostApiConversationMemoryConversationSummariesData,
|
|
189
|
+
PostApiConversationMemoryConversationSummariesErrors,
|
|
190
|
+
PostApiConversationMemoryConversationSummariesResponses,
|
|
191
|
+
PostApiConversationMemoryIdentifiersData,
|
|
192
|
+
PostApiConversationMemoryIdentifiersErrors,
|
|
193
|
+
PostApiConversationMemoryIdentifiersResponses,
|
|
194
|
+
PostApiConversationMemoryObservationsData,
|
|
195
|
+
PostApiConversationMemoryObservationsErrors,
|
|
196
|
+
PostApiConversationMemoryObservationsResponses,
|
|
197
|
+
PostApiConversationMemoryProfilesData,
|
|
198
|
+
PostApiConversationMemoryProfilesErrors,
|
|
199
|
+
PostApiConversationMemoryProfilesLookupData,
|
|
200
|
+
PostApiConversationMemoryProfilesLookupErrors,
|
|
201
|
+
PostApiConversationMemoryProfilesLookupResponses,
|
|
202
|
+
PostApiConversationMemoryProfilesResponses,
|
|
203
|
+
PostApiConversationMemoryRecallData,
|
|
204
|
+
PostApiConversationMemoryRecallErrors,
|
|
205
|
+
PostApiConversationMemoryRecallResponses,
|
|
206
|
+
PostApiConversationMemoryTraitGroupsData,
|
|
207
|
+
PostApiConversationMemoryTraitGroupsErrors,
|
|
208
|
+
PostApiConversationMemoryTraitGroupsResponses,
|
|
209
|
+
PostApiConversationalIntelligenceOperatorData,
|
|
210
|
+
PostApiConversationalIntelligenceOperatorErrors,
|
|
211
|
+
PostApiConversationalIntelligenceOperatorResponses,
|
|
212
|
+
PostApiConversationsSaveData,
|
|
213
|
+
PostApiConversationsSaveErrors,
|
|
214
|
+
PostApiConversationsSaveResponses,
|
|
215
|
+
PostApiConversationsShareData,
|
|
216
|
+
PostApiConversationsShareErrors,
|
|
217
|
+
PostApiConversationsShareResponses,
|
|
218
|
+
PostApiCreateExternalFlexConnectionData,
|
|
219
|
+
PostApiCreateExternalFlexConnectionErrors,
|
|
220
|
+
PostApiCreateExternalFlexConnectionResponses,
|
|
221
|
+
PostApiEnhancePromptData,
|
|
222
|
+
PostApiEnhancePromptErrors,
|
|
223
|
+
PostApiEnhancePromptResponses,
|
|
224
|
+
PostApiGenerateTagsData,
|
|
225
|
+
PostApiGenerateTagsErrors,
|
|
226
|
+
PostApiGenerateTagsResponses,
|
|
227
|
+
PostApiIncrementViewCountData,
|
|
228
|
+
PostApiIncrementViewCountErrors,
|
|
229
|
+
PostApiIncrementViewCountResponses,
|
|
230
|
+
PostApiIntelligenceConfigurationData,
|
|
231
|
+
PostApiIntelligenceConfigurationErrors,
|
|
232
|
+
PostApiIntelligenceConfigurationResponses,
|
|
233
|
+
PostApiLeadGenData,
|
|
234
|
+
PostApiLeadGenErrors,
|
|
235
|
+
PostApiLeadGenResponses,
|
|
236
|
+
PostApiLinkShortenerData,
|
|
237
|
+
PostApiLinkShortenerErrors,
|
|
238
|
+
PostApiLinkShortenerResponses,
|
|
239
|
+
PostApiOutboundCallData,
|
|
240
|
+
PostApiOutboundCallErrors,
|
|
241
|
+
PostApiOutboundCallResponses,
|
|
242
|
+
PostApiOutboundCommunicationTextData,
|
|
243
|
+
PostApiOutboundCommunicationTextErrors,
|
|
244
|
+
PostApiOutboundCommunicationTextResponses,
|
|
245
|
+
PostApiSegmentIdentifyData,
|
|
246
|
+
PostApiSegmentIdentifyErrors,
|
|
247
|
+
PostApiSegmentIdentifyResponses,
|
|
248
|
+
PostApiSegmentProfileData,
|
|
249
|
+
PostApiSegmentProfileErrors,
|
|
250
|
+
PostApiSegmentProfileResponses,
|
|
251
|
+
PostApiTagsData,
|
|
252
|
+
PostApiTagsErrors,
|
|
253
|
+
PostApiTagsResponses,
|
|
254
|
+
PostApiTelemetryData,
|
|
255
|
+
PostApiTelemetryErrors,
|
|
256
|
+
PostApiTelemetryResponses,
|
|
257
|
+
PostApiTemplateAutogenData,
|
|
258
|
+
PostApiTemplateAutogenErrors,
|
|
259
|
+
PostApiTemplateAutogenResponses,
|
|
260
|
+
PostApiVerifyCheckData,
|
|
261
|
+
PostApiVerifyCheckErrors,
|
|
262
|
+
PostApiVerifyCheckResponses,
|
|
263
|
+
PostApiVerifySendData,
|
|
264
|
+
PostApiVerifySendErrors,
|
|
265
|
+
PostApiVerifySendResponses,
|
|
266
|
+
PutApiConversationalIntelligenceOperatorData,
|
|
267
|
+
PutApiConversationalIntelligenceOperatorErrors,
|
|
268
|
+
PutApiConversationalIntelligenceOperatorResponses,
|
|
269
|
+
PutApiIntelligenceConfigurationData,
|
|
270
|
+
PutApiIntelligenceConfigurationErrors,
|
|
271
|
+
PutApiIntelligenceConfigurationResponses,
|
|
272
|
+
} from './types.gen';
|