@domu-ai/kiban-sdk 1.192.1 → 1.192.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domu-ai/kiban-sdk",
3
- "version": "1.192.1",
3
+ "version": "1.192.3",
4
4
  "description": "Generated TypeScript SDKs for Kiban public, internal, and dashboard APIs.",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./index.js",
@@ -337,58 +337,6 @@ export type PublicClientsNubankOffersCustomerIdGet503 = {
337
337
  code?: string;
338
338
  details?: unknown | null;
339
339
  };
340
- export type PublicClientsAloricaNotesPostParams = {
341
- /**
342
- * @minLength 1
343
- */
344
- campaignId: string;
345
- };
346
- export type PublicClientsAloricaNotesPostBodyResult = typeof PublicClientsAloricaNotesPostBodyResult[keyof typeof PublicClientsAloricaNotesPostBodyResult];
347
- export declare const PublicClientsAloricaNotesPostBodyResult: {
348
- readonly PAYMENT: "PAYMENT";
349
- readonly PROMISE: "PROMISE";
350
- readonly PAYOFF_QUOTE_REQUEST: "PAYOFF_QUOTE_REQUEST";
351
- readonly ACCOUNT_INQUIRY: "ACCOUNT_INQUIRY";
352
- readonly ACCOUNT_UNLOCK: "ACCOUNT_UNLOCK";
353
- readonly GENERAL: "GENERAL";
354
- };
355
- export type PublicClientsAloricaNotesPostBody = {
356
- /** @minLength 1 */
357
- phoneNumber: string;
358
- result: PublicClientsAloricaNotesPostBodyResult;
359
- /** @minLength 1 */
360
- note: string;
361
- };
362
- export type PublicClientsAloricaNotesPost200ReturnMessage = typeof PublicClientsAloricaNotesPost200ReturnMessage[keyof typeof PublicClientsAloricaNotesPost200ReturnMessage];
363
- export declare const PublicClientsAloricaNotesPost200ReturnMessage: {
364
- readonly OK: "OK";
365
- readonly INVALID_ACCOUNT_NUMBER: "INVALID_ACCOUNT_NUMBER";
366
- readonly INVALID_RESULT_TYPE: "INVALID_RESULT_TYPE";
367
- readonly INTERNAL: "INTERNAL";
368
- };
369
- export type PublicClientsAloricaNotesPost200 = {
370
- returnMessage: PublicClientsAloricaNotesPost200ReturnMessage;
371
- };
372
- export type PublicClientsAloricaNotesPost400 = {
373
- message: string;
374
- code?: string;
375
- details?: unknown | null;
376
- };
377
- export type PublicClientsAloricaNotesPost401 = {
378
- message: string;
379
- code?: string;
380
- details?: unknown | null;
381
- };
382
- export type PublicClientsAloricaNotesPost404 = {
383
- message: string;
384
- code?: string;
385
- details?: unknown | null;
386
- };
387
- export type PublicClientsAloricaNotesPost500 = {
388
- message: string;
389
- code?: string;
390
- details?: unknown | null;
391
- };
392
340
  export type PublicClientsOliphantLookupPostParams = {
393
341
  /**
394
342
  * @minLength 1
@@ -1166,65 +1114,6 @@ export declare function usePublicClientsNubankOffersCustomerIdGet<TData = Awaite
1166
1114
  }, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
1167
1115
  queryKey: DataTag<QueryKey, TData, TError>;
1168
1116
  };
1169
- /**
1170
- * Creates a call result note in SST Loan Services for Domu.AI integration.
1171
- * @summary Create note in SST
1172
- */
1173
- export type publicClientsAloricaNotesPostResponse200 = {
1174
- data: PublicClientsAloricaNotesPost200;
1175
- status: 200;
1176
- };
1177
- export type publicClientsAloricaNotesPostResponse400 = {
1178
- data: PublicClientsAloricaNotesPost400;
1179
- status: 400;
1180
- };
1181
- export type publicClientsAloricaNotesPostResponse401 = {
1182
- data: PublicClientsAloricaNotesPost401;
1183
- status: 401;
1184
- };
1185
- export type publicClientsAloricaNotesPostResponse404 = {
1186
- data: PublicClientsAloricaNotesPost404;
1187
- status: 404;
1188
- };
1189
- export type publicClientsAloricaNotesPostResponse500 = {
1190
- data: PublicClientsAloricaNotesPost500;
1191
- status: 500;
1192
- };
1193
- export type publicClientsAloricaNotesPostResponseSuccess = (publicClientsAloricaNotesPostResponse200) & {
1194
- headers: Headers;
1195
- };
1196
- export type publicClientsAloricaNotesPostResponseError = (publicClientsAloricaNotesPostResponse400 | publicClientsAloricaNotesPostResponse401 | publicClientsAloricaNotesPostResponse404 | publicClientsAloricaNotesPostResponse500) & {
1197
- headers: Headers;
1198
- };
1199
- export type publicClientsAloricaNotesPostResponse = (publicClientsAloricaNotesPostResponseSuccess | publicClientsAloricaNotesPostResponseError);
1200
- export declare const getPublicClientsAloricaNotesPostUrl: (params: PublicClientsAloricaNotesPostParams) => string;
1201
- export declare const publicClientsAloricaNotesPost: (publicClientsAloricaNotesPostBody: PublicClientsAloricaNotesPostBody, params: PublicClientsAloricaNotesPostParams, options?: RequestInit) => Promise<publicClientsAloricaNotesPostResponse>;
1202
- export declare const getPublicClientsAloricaNotesPostMutationOptions: <TError = PublicClientsAloricaNotesPost400 | PublicClientsAloricaNotesPost401 | PublicClientsAloricaNotesPost404 | PublicClientsAloricaNotesPost500, TContext = unknown>(options?: {
1203
- mutation?: UseMutationOptions<Awaited<ReturnType<typeof publicClientsAloricaNotesPost>>, TError, {
1204
- data: PublicClientsAloricaNotesPostBody;
1205
- params: PublicClientsAloricaNotesPostParams;
1206
- }, TContext>;
1207
- request?: SecondParameter<typeof customFetcher>;
1208
- }) => UseMutationOptions<Awaited<ReturnType<typeof publicClientsAloricaNotesPost>>, TError, {
1209
- data: PublicClientsAloricaNotesPostBody;
1210
- params: PublicClientsAloricaNotesPostParams;
1211
- }, TContext>;
1212
- export type PublicClientsAloricaNotesPostMutationResult = NonNullable<Awaited<ReturnType<typeof publicClientsAloricaNotesPost>>>;
1213
- export type PublicClientsAloricaNotesPostMutationBody = PublicClientsAloricaNotesPostBody;
1214
- export type PublicClientsAloricaNotesPostMutationError = PublicClientsAloricaNotesPost400 | PublicClientsAloricaNotesPost401 | PublicClientsAloricaNotesPost404 | PublicClientsAloricaNotesPost500;
1215
- /**
1216
- * @summary Create note in SST
1217
- */
1218
- export declare const usePublicClientsAloricaNotesPost: <TError = PublicClientsAloricaNotesPost400 | PublicClientsAloricaNotesPost401 | PublicClientsAloricaNotesPost404 | PublicClientsAloricaNotesPost500, TContext = unknown>(options?: {
1219
- mutation?: UseMutationOptions<Awaited<ReturnType<typeof publicClientsAloricaNotesPost>>, TError, {
1220
- data: PublicClientsAloricaNotesPostBody;
1221
- params: PublicClientsAloricaNotesPostParams;
1222
- }, TContext>;
1223
- request?: SecondParameter<typeof customFetcher>;
1224
- }, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof publicClientsAloricaNotesPost>>, TError, {
1225
- data: PublicClientsAloricaNotesPostBody;
1226
- params: PublicClientsAloricaNotesPostParams;
1227
- }, TContext>;
1228
1117
  /**
1229
1118
  * Looks up an account by referenceNumber via the Oliphant agent lookup API.
1230
1119
  * @summary Look up account in Oliphant
package/public/client.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.usePublicContactsIdPut = exports.getPublicContactsIdPutMutationOptions = exports.publicContactsIdPut = exports.getPublicContactsIdPutUrl = exports.getPublicContactsIdGetQueryOptions = exports.getPublicContactsIdGetQueryKey = exports.publicContactsIdGet = exports.getPublicContactsIdGetUrl = exports.usePublicClientsOliphantLookupPost = exports.getPublicClientsOliphantLookupPostMutationOptions = exports.publicClientsOliphantLookupPost = exports.getPublicClientsOliphantLookupPostUrl = exports.usePublicClientsAloricaNotesPost = exports.getPublicClientsAloricaNotesPostMutationOptions = exports.publicClientsAloricaNotesPost = exports.getPublicClientsAloricaNotesPostUrl = exports.getPublicClientsNubankOffersCustomerIdGetQueryOptions = exports.getPublicClientsNubankOffersCustomerIdGetQueryKey = exports.publicClientsNubankOffersCustomerIdGet = exports.getPublicClientsNubankOffersCustomerIdGetUrl = exports.getPublicClientsNubankDebtsCustomerIdGetQueryOptions = exports.getPublicClientsNubankDebtsCustomerIdGetQueryKey = exports.publicClientsNubankDebtsCustomerIdGet = exports.getPublicClientsNubankDebtsCustomerIdGetUrl = exports.usePublicClientsNubankInteractionsEndPost = exports.getPublicClientsNubankInteractionsEndPostMutationOptions = exports.publicClientsNubankInteractionsEndPost = exports.getPublicClientsNubankInteractionsEndPostUrl = exports.usePublicClientsNubankInteractionsStartPost = exports.getPublicClientsNubankInteractionsStartPostMutationOptions = exports.publicClientsNubankInteractionsStartPost = exports.getPublicClientsNubankInteractionsStartPostUrl = exports.usePublicCallsPost = exports.getPublicCallsPostMutationOptions = exports.publicCallsPost = exports.getPublicCallsPostUrl = exports.getPublicAuthMeGetQueryOptions = exports.getPublicAuthMeGetQueryKey = exports.publicAuthMeGet = exports.getPublicAuthMeGetUrl = exports.getPublicHealthGetQueryOptions = exports.getPublicHealthGetQueryKey = exports.publicHealthGet = exports.getPublicHealthGetUrl = exports.PublicClientsAloricaNotesPost200ReturnMessage = exports.PublicClientsAloricaNotesPostBodyResult = exports.PublicClientsNubankInteractionsEndPostBodyCountry = exports.PublicClientsNubankInteractionsStartPostBodyCountry = exports.PublicCallsPost202Status = exports.PublicHealthGet200Status = void 0;
4
- exports.usePublicPaymentsConnectorsSwervepayPost = exports.getPublicPaymentsConnectorsSwervepayPostMutationOptions = exports.publicPaymentsConnectorsSwervepayPost = exports.getPublicPaymentsConnectorsSwervepayPostUrl = exports.usePublicPaymentsConnectorsSpeedpayPost = exports.getPublicPaymentsConnectorsSpeedpayPostMutationOptions = exports.publicPaymentsConnectorsSpeedpayPost = exports.getPublicPaymentsConnectorsSpeedpayPostUrl = exports.usePublicPaymentsConnectorsRepayPost = exports.getPublicPaymentsConnectorsRepayPostMutationOptions = exports.publicPaymentsConnectorsRepayPost = exports.getPublicPaymentsConnectorsRepayPostUrl = exports.usePublicPaymentsConnectorsPayrazrPost = exports.getPublicPaymentsConnectorsPayrazrPostMutationOptions = exports.publicPaymentsConnectorsPayrazrPost = exports.getPublicPaymentsConnectorsPayrazrPostUrl = exports.usePublicPaymentsConnectorsPaynearmePost = exports.getPublicPaymentsConnectorsPaynearmePostMutationOptions = exports.publicPaymentsConnectorsPaynearmePost = exports.getPublicPaymentsConnectorsPaynearmePostUrl = exports.usePublicPaymentsConnectorsPayliancePost = exports.getPublicPaymentsConnectorsPayliancePostMutationOptions = exports.publicPaymentsConnectorsPayliancePost = exports.getPublicPaymentsConnectorsPayliancePostUrl = exports.usePublicPaymentsConnectorsOliphantPaymentPost = exports.getPublicPaymentsConnectorsOliphantPaymentPostMutationOptions = exports.publicPaymentsConnectorsOliphantPaymentPost = exports.getPublicPaymentsConnectorsOliphantPaymentPostUrl = exports.usePublicPaymentsConnectorsMonerisPost = exports.getPublicPaymentsConnectorsMonerisPostMutationOptions = exports.publicPaymentsConnectorsMonerisPost = exports.getPublicPaymentsConnectorsMonerisPostUrl = void 0;
3
+ exports.publicPaymentsConnectorsOliphantPaymentPost = exports.getPublicPaymentsConnectorsOliphantPaymentPostUrl = exports.usePublicPaymentsConnectorsMonerisPost = exports.getPublicPaymentsConnectorsMonerisPostMutationOptions = exports.publicPaymentsConnectorsMonerisPost = exports.getPublicPaymentsConnectorsMonerisPostUrl = exports.usePublicContactsIdPut = exports.getPublicContactsIdPutMutationOptions = exports.publicContactsIdPut = exports.getPublicContactsIdPutUrl = exports.getPublicContactsIdGetQueryOptions = exports.getPublicContactsIdGetQueryKey = exports.publicContactsIdGet = exports.getPublicContactsIdGetUrl = exports.usePublicClientsOliphantLookupPost = exports.getPublicClientsOliphantLookupPostMutationOptions = exports.publicClientsOliphantLookupPost = exports.getPublicClientsOliphantLookupPostUrl = exports.getPublicClientsNubankOffersCustomerIdGetQueryOptions = exports.getPublicClientsNubankOffersCustomerIdGetQueryKey = exports.publicClientsNubankOffersCustomerIdGet = exports.getPublicClientsNubankOffersCustomerIdGetUrl = exports.getPublicClientsNubankDebtsCustomerIdGetQueryOptions = exports.getPublicClientsNubankDebtsCustomerIdGetQueryKey = exports.publicClientsNubankDebtsCustomerIdGet = exports.getPublicClientsNubankDebtsCustomerIdGetUrl = exports.usePublicClientsNubankInteractionsEndPost = exports.getPublicClientsNubankInteractionsEndPostMutationOptions = exports.publicClientsNubankInteractionsEndPost = exports.getPublicClientsNubankInteractionsEndPostUrl = exports.usePublicClientsNubankInteractionsStartPost = exports.getPublicClientsNubankInteractionsStartPostMutationOptions = exports.publicClientsNubankInteractionsStartPost = exports.getPublicClientsNubankInteractionsStartPostUrl = exports.usePublicCallsPost = exports.getPublicCallsPostMutationOptions = exports.publicCallsPost = exports.getPublicCallsPostUrl = exports.getPublicAuthMeGetQueryOptions = exports.getPublicAuthMeGetQueryKey = exports.publicAuthMeGet = exports.getPublicAuthMeGetUrl = exports.getPublicHealthGetQueryOptions = exports.getPublicHealthGetQueryKey = exports.publicHealthGet = exports.getPublicHealthGetUrl = exports.PublicClientsNubankInteractionsEndPostBodyCountry = exports.PublicClientsNubankInteractionsStartPostBodyCountry = exports.PublicCallsPost202Status = exports.PublicHealthGet200Status = void 0;
4
+ exports.usePublicPaymentsConnectorsSwervepayPost = exports.getPublicPaymentsConnectorsSwervepayPostMutationOptions = exports.publicPaymentsConnectorsSwervepayPost = exports.getPublicPaymentsConnectorsSwervepayPostUrl = exports.usePublicPaymentsConnectorsSpeedpayPost = exports.getPublicPaymentsConnectorsSpeedpayPostMutationOptions = exports.publicPaymentsConnectorsSpeedpayPost = exports.getPublicPaymentsConnectorsSpeedpayPostUrl = exports.usePublicPaymentsConnectorsRepayPost = exports.getPublicPaymentsConnectorsRepayPostMutationOptions = exports.publicPaymentsConnectorsRepayPost = exports.getPublicPaymentsConnectorsRepayPostUrl = exports.usePublicPaymentsConnectorsPayrazrPost = exports.getPublicPaymentsConnectorsPayrazrPostMutationOptions = exports.publicPaymentsConnectorsPayrazrPost = exports.getPublicPaymentsConnectorsPayrazrPostUrl = exports.usePublicPaymentsConnectorsPaynearmePost = exports.getPublicPaymentsConnectorsPaynearmePostMutationOptions = exports.publicPaymentsConnectorsPaynearmePost = exports.getPublicPaymentsConnectorsPaynearmePostUrl = exports.usePublicPaymentsConnectorsPayliancePost = exports.getPublicPaymentsConnectorsPayliancePostMutationOptions = exports.publicPaymentsConnectorsPayliancePost = exports.getPublicPaymentsConnectorsPayliancePostUrl = exports.usePublicPaymentsConnectorsOliphantPaymentPost = exports.getPublicPaymentsConnectorsOliphantPaymentPostMutationOptions = void 0;
5
5
  exports.usePublicHealthGet = usePublicHealthGet;
6
6
  exports.usePublicAuthMeGet = usePublicAuthMeGet;
7
7
  exports.usePublicClientsNubankDebtsCustomerIdGet = usePublicClientsNubankDebtsCustomerIdGet;
@@ -30,20 +30,6 @@ exports.PublicClientsNubankInteractionsEndPostBodyCountry = {
30
30
  BR: 'BR',
31
31
  CO: 'CO',
32
32
  };
33
- exports.PublicClientsAloricaNotesPostBodyResult = {
34
- PAYMENT: 'PAYMENT',
35
- PROMISE: 'PROMISE',
36
- PAYOFF_QUOTE_REQUEST: 'PAYOFF_QUOTE_REQUEST',
37
- ACCOUNT_INQUIRY: 'ACCOUNT_INQUIRY',
38
- ACCOUNT_UNLOCK: 'ACCOUNT_UNLOCK',
39
- GENERAL: 'GENERAL',
40
- };
41
- exports.PublicClientsAloricaNotesPost200ReturnMessage = {
42
- OK: 'OK',
43
- INVALID_ACCOUNT_NUMBER: 'INVALID_ACCOUNT_NUMBER',
44
- INVALID_RESULT_TYPE: 'INVALID_RESULT_TYPE',
45
- INTERNAL: 'INTERNAL',
46
- };
47
33
  ;
48
34
  const getPublicHealthGetUrl = () => {
49
35
  return `/v1/health`;
@@ -282,47 +268,6 @@ function usePublicClientsNubankOffersCustomerIdGet(customerId, options, queryCli
282
268
  const query = (0, react_query_1.useQuery)(queryOptions, queryClient);
283
269
  return { ...query, queryKey: queryOptions.queryKey };
284
270
  }
285
- const getPublicClientsAloricaNotesPostUrl = (params) => {
286
- const normalizedParams = new URLSearchParams();
287
- Object.entries(params || {}).forEach(([key, value]) => {
288
- if (value !== undefined) {
289
- normalizedParams.append(key, value === null ? 'null' : value.toString());
290
- }
291
- });
292
- const stringifiedParams = normalizedParams.toString();
293
- return stringifiedParams.length > 0 ? `/v1/clients/alorica/notes?${stringifiedParams}` : `/v1/clients/alorica/notes`;
294
- };
295
- exports.getPublicClientsAloricaNotesPostUrl = getPublicClientsAloricaNotesPostUrl;
296
- const publicClientsAloricaNotesPost = async (publicClientsAloricaNotesPostBody, params, options) => {
297
- return (0, fetcher_1.customFetcher)((0, exports.getPublicClientsAloricaNotesPostUrl)(params), {
298
- ...options,
299
- method: 'POST',
300
- headers: { 'Content-Type': 'application/json', ...options?.headers },
301
- body: JSON.stringify(publicClientsAloricaNotesPostBody)
302
- });
303
- };
304
- exports.publicClientsAloricaNotesPost = publicClientsAloricaNotesPost;
305
- const getPublicClientsAloricaNotesPostMutationOptions = (options) => {
306
- const mutationKey = ['publicClientsAloricaNotesPost'];
307
- const { mutation: mutationOptions, request: requestOptions } = options ?
308
- options.mutation && 'mutationKey' in options.mutation && options.mutation.mutationKey ?
309
- options
310
- : { ...options, mutation: { ...options.mutation, mutationKey } }
311
- : { mutation: { mutationKey, }, request: undefined };
312
- const mutationFn = (props) => {
313
- const { data, params } = props ?? {};
314
- return (0, exports.publicClientsAloricaNotesPost)(data, params, requestOptions);
315
- };
316
- return { mutationFn, ...mutationOptions };
317
- };
318
- exports.getPublicClientsAloricaNotesPostMutationOptions = getPublicClientsAloricaNotesPostMutationOptions;
319
- /**
320
- * @summary Create note in SST
321
- */
322
- const usePublicClientsAloricaNotesPost = (options, queryClient) => {
323
- return (0, react_query_1.useMutation)((0, exports.getPublicClientsAloricaNotesPostMutationOptions)(options), queryClient);
324
- };
325
- exports.usePublicClientsAloricaNotesPost = usePublicClientsAloricaNotesPost;
326
271
  const getPublicClientsOliphantLookupPostUrl = (params) => {
327
272
  const normalizedParams = new URLSearchParams();
328
273
  Object.entries(params || {}).forEach(([key, value]) => {
@@ -1058,37 +1058,6 @@ export declare const GetOffersResponse: zod.ZodObject<{
1058
1058
  statusCode?: string | undefined;
1059
1059
  };
1060
1060
  }>;
1061
- /**
1062
- * Creates a call result note in SST Loan Services for Domu.AI integration.
1063
- * @summary Create note in SST
1064
- */
1065
- export declare const CreateAloricaNoteQueryParams: zod.ZodObject<{
1066
- campaignId: zod.ZodString;
1067
- }, "strip", zod.ZodTypeAny, {
1068
- campaignId: string;
1069
- }, {
1070
- campaignId: string;
1071
- }>;
1072
- export declare const CreateAloricaNoteBody: zod.ZodObject<{
1073
- phoneNumber: zod.ZodString;
1074
- result: zod.ZodEnum<["PAYMENT", "PROMISE", "PAYOFF_QUOTE_REQUEST", "ACCOUNT_INQUIRY", "ACCOUNT_UNLOCK", "GENERAL"]>;
1075
- note: zod.ZodString;
1076
- }, "strip", zod.ZodTypeAny, {
1077
- phoneNumber: string;
1078
- result: "PAYMENT" | "PROMISE" | "PAYOFF_QUOTE_REQUEST" | "ACCOUNT_INQUIRY" | "ACCOUNT_UNLOCK" | "GENERAL";
1079
- note: string;
1080
- }, {
1081
- phoneNumber: string;
1082
- result: "PAYMENT" | "PROMISE" | "PAYOFF_QUOTE_REQUEST" | "ACCOUNT_INQUIRY" | "ACCOUNT_UNLOCK" | "GENERAL";
1083
- note: string;
1084
- }>;
1085
- export declare const CreateAloricaNoteResponse: zod.ZodObject<{
1086
- returnMessage: zod.ZodEnum<["OK", "INVALID_ACCOUNT_NUMBER", "INVALID_RESULT_TYPE", "INTERNAL"]>;
1087
- }, "strip", zod.ZodTypeAny, {
1088
- returnMessage: "OK" | "INVALID_ACCOUNT_NUMBER" | "INVALID_RESULT_TYPE" | "INTERNAL";
1089
- }, {
1090
- returnMessage: "OK" | "INVALID_ACCOUNT_NUMBER" | "INVALID_RESULT_TYPE" | "INTERNAL";
1091
- }>;
1092
1061
  /**
1093
1062
  * Looks up an account by referenceNumber via the Oliphant agent lookup API.
1094
1063
  * @summary Look up account in Oliphant
package/public/schemas.js CHANGED
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.ProcessSwervePayPaymentResponse = exports.ProcessSwervePayPaymentBody = exports.ProcessSpeedPayPaymentResponse = exports.ProcessSpeedPayPaymentBody = exports.ProcessRepayPaymentResponse = exports.ProcessRepayPaymentBody = exports.ProcessPayrazrPaymentResponse = exports.ProcessPayrazrPaymentBody = exports.ProcessPNMPaymentResponse = exports.ProcessPNMPaymentBody = exports.ProcessPayliancePaymentResponse = exports.ProcessPayliancePaymentBody = exports.ProcessOliphantPaymentResponse = exports.ProcessOliphantPaymentBody = exports.ProcessMonerisPaymentResponse = exports.ProcessMonerisPaymentBody = exports.UpdateContactResponse = exports.UpdateContactBody = exports.UpdateContactQueryParams = exports.UpdateContactParams = exports.GetContactResponse = exports.GetContactQueryParams = exports.GetContactParams = exports.AgentLookupResponse = exports.AgentLookupBody = exports.AgentLookupQueryParams = exports.CreateAloricaNoteResponse = exports.CreateAloricaNoteBody = exports.CreateAloricaNoteQueryParams = exports.GetOffersResponse = exports.GetOffersParams = exports.GetDebtsResponse = exports.GetDebtsQueryParams = exports.getDebtsQueryIncludeOffersDefault = exports.GetDebtsParams = exports.EndResponse = exports.EndBody = exports.endBodyCountryDefault = exports.StartBody = exports.startBodyCountryDefault = exports.startBodyTypeDefault = exports.startBodyPhoneNumberRegExp = exports.CreateCallBody = exports.createCallBodyExternalIdMax = exports.createCallBodyLastNameMax = exports.createCallBodyFirstNameMax = exports.MeResponse = exports.CheckResponse = void 0;
36
+ exports.ProcessSwervePayPaymentResponse = exports.ProcessSwervePayPaymentBody = exports.ProcessSpeedPayPaymentResponse = exports.ProcessSpeedPayPaymentBody = exports.ProcessRepayPaymentResponse = exports.ProcessRepayPaymentBody = exports.ProcessPayrazrPaymentResponse = exports.ProcessPayrazrPaymentBody = exports.ProcessPNMPaymentResponse = exports.ProcessPNMPaymentBody = exports.ProcessPayliancePaymentResponse = exports.ProcessPayliancePaymentBody = exports.ProcessOliphantPaymentResponse = exports.ProcessOliphantPaymentBody = exports.ProcessMonerisPaymentResponse = exports.ProcessMonerisPaymentBody = exports.UpdateContactResponse = exports.UpdateContactBody = exports.UpdateContactQueryParams = exports.UpdateContactParams = exports.GetContactResponse = exports.GetContactQueryParams = exports.GetContactParams = exports.AgentLookupResponse = exports.AgentLookupBody = exports.AgentLookupQueryParams = exports.GetOffersResponse = exports.GetOffersParams = exports.GetDebtsResponse = exports.GetDebtsQueryParams = exports.getDebtsQueryIncludeOffersDefault = exports.GetDebtsParams = exports.EndResponse = exports.EndBody = exports.endBodyCountryDefault = exports.StartBody = exports.startBodyCountryDefault = exports.startBodyTypeDefault = exports.startBodyPhoneNumberRegExp = exports.CreateCallBody = exports.createCallBodyExternalIdMax = exports.createCallBodyLastNameMax = exports.createCallBodyFirstNameMax = exports.MeResponse = exports.CheckResponse = void 0;
37
37
  /**
38
38
  * Generated by orval v8.2.0 🍺
39
39
  * Do not edit manually.
@@ -242,21 +242,6 @@ exports.GetOffersResponse = zod.object({
242
242
  "statusCode": zod.string().optional()
243
243
  })])
244
244
  });
245
- /**
246
- * Creates a call result note in SST Loan Services for Domu.AI integration.
247
- * @summary Create note in SST
248
- */
249
- exports.CreateAloricaNoteQueryParams = zod.object({
250
- "campaignId": zod.string().min(1)
251
- });
252
- exports.CreateAloricaNoteBody = zod.object({
253
- "phoneNumber": zod.string().min(1),
254
- "result": zod.enum(['PAYMENT', 'PROMISE', 'PAYOFF_QUOTE_REQUEST', 'ACCOUNT_INQUIRY', 'ACCOUNT_UNLOCK', 'GENERAL']),
255
- "note": zod.string().min(1)
256
- });
257
- exports.CreateAloricaNoteResponse = zod.object({
258
- "returnMessage": zod.enum(['OK', 'INVALID_ACCOUNT_NUMBER', 'INVALID_RESULT_TYPE', 'INTERNAL'])
259
- });
260
245
  /**
261
246
  * Looks up an account by referenceNumber via the Oliphant agent lookup API.
262
247
  * @summary Look up account in Oliphant