@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250627.1 → 1.20250808.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/.openapi-generator/FILES +22 -2
- package/api/accounting-api.ts +100 -0
- package/api/adv-accounting-api.ts +100 -0
- package/api/adv-benefits-api.ts +102 -0
- package/api/adv-billing-api.ts +120 -0
- package/api/adv-claim-api.ts +126 -17
- package/api/claim-queue-details-api.ts +106 -0
- package/api/plan-benefits-api.ts +100 -0
- package/api/premium-distributions-api.ts +120 -0
- package/api/state-surcharge-basis-api.ts +158 -0
- package/api/vbareporting-api.ts +15 -15
- package/api/vbareports-api.ts +5 -5
- package/api/vbassist-api.ts +134 -26
- package/api/visium-code-ex-code-api.ts +685 -0
- package/api.ts +2 -0
- package/docs/AccountingApi.md +57 -0
- package/docs/AdvAccountingApi.md +57 -0
- package/docs/AdvBenefitsApi.md +57 -0
- package/docs/AdvBillingApi.md +65 -0
- package/docs/AdvClaimApi.md +64 -5
- package/docs/BillingRateModifyConfig.md +2 -2
- package/docs/ChatFeedbackRequest.md +27 -0
- package/docs/ChatRequest.md +25 -0
- package/docs/ClaimQueueDetailsApi.md +59 -0
- package/docs/ClaimQueueProcessTrack.md +4 -0
- package/docs/CompanyData.md +8 -0
- package/docs/CostContainVisiumExCode.md +32 -0
- package/docs/CostContainVisiumExCodeListVBAResponse.md +24 -0
- package/docs/CostContainVisiumExCodeVBAResponse.md +24 -0
- package/docs/Credit.md +22 -0
- package/docs/CriteriaDetail.md +10 -10
- package/docs/{ChatMessage.md → Debit.md} +7 -5
- package/docs/EmailReportDTO.md +1 -1
- package/docs/EnrollmentDisenroll.md +1 -1
- package/docs/EnrollmentDisenrollGroup.md +1 -1
- package/docs/FaxReportDTO.md +1 -1
- package/docs/IPWhitelist.md +1 -1
- package/docs/Members.md +1 -1
- package/docs/MessageThread.md +2 -2
- package/docs/Messages.md +7 -7
- package/docs/PlanBenefitCopy.md +54 -0
- package/docs/PlanBenefitsApi.md +57 -0
- package/docs/PremInvoiceAdjustment.md +24 -24
- package/docs/PremInvoiceApplyPayment.md +4 -4
- package/docs/PremiumDistributionsApi.md +65 -0
- package/docs/ReinsContract.md +1 -1
- package/docs/ReportSeriesStep.md +4 -0
- package/docs/SelectedField.md +4 -0
- package/docs/StateSurcharge.md +4 -0
- package/docs/StateSurchargeBasisApi.md +60 -0
- package/docs/UserAuthenticationResponse.md +1 -1
- package/docs/UserChangeTempPasswordResponse.md +1 -1
- package/docs/VBAFullClaim.md +4 -0
- package/docs/VBAFullClaimBatch.md +4 -0
- package/docs/VBAProblemDetails.md +4 -4
- package/docs/VBAProcessPaymentFile.md +1 -1
- package/docs/VBAReportingApi.md +5 -3
- package/docs/VBAReportsApi.md +2 -1
- package/docs/VBAUpdateRecon.md +24 -0
- package/docs/VBAUserStatus.md +1 -1
- package/docs/VBAssistApi.md +67 -7
- package/docs/VisiumCodeExCodeApi.md +354 -0
- package/models/billing-rate-modify-config.ts +2 -2
- package/models/chat-feedback-request.ts +48 -0
- package/models/chat-request.ts +42 -0
- package/models/claim-queue-process-track.ts +12 -0
- package/models/company-data.ts +24 -0
- package/models/cost-contain-visium-ex-code-list-vbaresponse.ts +51 -0
- package/models/cost-contain-visium-ex-code-vbaresponse.ts +51 -0
- package/models/cost-contain-visium-ex-code.ts +66 -0
- package/models/credit.ts +36 -0
- package/models/criteria-detail.ts +10 -10
- package/models/{chat-message.ts → debit.ts} +12 -6
- package/models/email-report-dto.ts +1 -1
- package/models/enrollment-disenroll-group.ts +1 -1
- package/models/enrollment-disenroll.ts +1 -1
- package/models/fax-report-dto.ts +1 -1
- package/models/index.ts +9 -1
- package/models/ipwhitelist.ts +1 -1
- package/models/members.ts +1 -1
- package/models/message-thread.ts +2 -2
- package/models/messages.ts +7 -7
- package/models/plan-benefit-copy.ts +132 -0
- package/models/prem-invoice-adjustment.ts +24 -24
- package/models/prem-invoice-apply-payment.ts +4 -4
- package/models/reins-contract.ts +1 -1
- package/models/report-series-step.ts +12 -0
- package/models/selected-field.ts +12 -0
- package/models/state-surcharge.ts +12 -0
- package/models/user-authentication-response.ts +1 -1
- package/models/user-change-temp-password-response.ts +1 -1
- package/models/vbafull-claim-batch.ts +12 -0
- package/models/vbafull-claim.ts +12 -0
- package/models/vbaproblem-details.ts +4 -4
- package/models/vbaprocess-payment-file.ts +1 -1
- package/models/vbaupdate-recon.ts +48 -0
- package/models/vbauser-status.ts +1 -1
- package/package.json +1 -1
package/api/vbassist-api.ts
CHANGED
|
@@ -22,7 +22,9 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
22
22
|
// @ts-ignore
|
|
23
23
|
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
|
|
24
24
|
// @ts-ignore
|
|
25
|
-
import type {
|
|
25
|
+
import type { ChatFeedbackRequest } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import type { ChatRequest } from '../models';
|
|
26
28
|
// @ts-ignore
|
|
27
29
|
import type { StringVBAResponse } from '../models';
|
|
28
30
|
/**
|
|
@@ -32,14 +34,17 @@ import type { StringVBAResponse } from '../models';
|
|
|
32
34
|
export const VBAssistApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
33
35
|
return {
|
|
34
36
|
/**
|
|
35
|
-
*
|
|
36
|
-
* @summary
|
|
37
|
-
* @param {
|
|
37
|
+
* Records user feedback about a specific conversation with VBAssist, including a numerical rating (1-5) and textual comments. Requires conversation and agent identifiers.
|
|
38
|
+
* @summary Submits user feedback about a previous chat interaction with the VBAssist AI.
|
|
39
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
40
|
+
* @param {ChatFeedbackRequest} [chatFeedbackRequest] The feedback details including rating, comments, and conversation identifiers.
|
|
38
41
|
* @param {*} [options] Override http request option.
|
|
39
42
|
* @throws {RequiredError}
|
|
40
43
|
*/
|
|
41
|
-
|
|
42
|
-
|
|
44
|
+
chatFeedback: async (vbasoftwareDatabase: string, chatFeedbackRequest?: ChatFeedbackRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
45
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
46
|
+
assertParamExists('chatFeedback', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
47
|
+
const localVarPath = `/chat/feedback`;
|
|
43
48
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
44
49
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
45
50
|
let baseOptions;
|
|
@@ -62,10 +67,60 @@ export const VBAssistApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
62
67
|
|
|
63
68
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
64
69
|
|
|
70
|
+
if (vbasoftwareDatabase != null) {
|
|
71
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
72
|
+
}
|
|
65
73
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
66
74
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
67
75
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
68
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
76
|
+
localVarRequestOptions.data = serializeDataIfNeeded(chatFeedbackRequest, localVarRequestOptions, configuration)
|
|
77
|
+
|
|
78
|
+
return {
|
|
79
|
+
url: toPathString(localVarUrlObj),
|
|
80
|
+
options: localVarRequestOptions,
|
|
81
|
+
};
|
|
82
|
+
},
|
|
83
|
+
/**
|
|
84
|
+
* Sends a user message to the VBAssist AI service and returns the generated response. Supports conversation tracking through agent_id and conversation_id parameters.
|
|
85
|
+
* @summary Processes a chat message from a user and returns a response from the VBAssist AI.
|
|
86
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
87
|
+
* @param {ChatRequest} [chatRequest] The request object containing the user\'s message and optional conversation tracking information.
|
|
88
|
+
* @param {*} [options] Override http request option.
|
|
89
|
+
* @throws {RequiredError}
|
|
90
|
+
*/
|
|
91
|
+
chatRequest: async (vbasoftwareDatabase: string, chatRequest?: ChatRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
92
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
93
|
+
assertParamExists('chatRequest', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
94
|
+
const localVarPath = `/chat/inquiry`;
|
|
95
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
96
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
97
|
+
let baseOptions;
|
|
98
|
+
if (configuration) {
|
|
99
|
+
baseOptions = configuration.baseOptions;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
103
|
+
const localVarHeaderParameter = {} as any;
|
|
104
|
+
const localVarQueryParameter = {} as any;
|
|
105
|
+
|
|
106
|
+
// authentication apiKeyAuth required
|
|
107
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
108
|
+
|
|
109
|
+
// authentication bearerAuth required
|
|
110
|
+
// http bearer authentication required
|
|
111
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
116
|
+
|
|
117
|
+
if (vbasoftwareDatabase != null) {
|
|
118
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
119
|
+
}
|
|
120
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
121
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
122
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
123
|
+
localVarRequestOptions.data = serializeDataIfNeeded(chatRequest, localVarRequestOptions, configuration)
|
|
69
124
|
|
|
70
125
|
return {
|
|
71
126
|
url: toPathString(localVarUrlObj),
|
|
@@ -83,14 +138,29 @@ export const VBAssistApiFp = function(configuration?: Configuration) {
|
|
|
83
138
|
const localVarAxiosParamCreator = VBAssistApiAxiosParamCreator(configuration)
|
|
84
139
|
return {
|
|
85
140
|
/**
|
|
86
|
-
*
|
|
87
|
-
* @summary
|
|
88
|
-
* @param {
|
|
141
|
+
* Records user feedback about a specific conversation with VBAssist, including a numerical rating (1-5) and textual comments. Requires conversation and agent identifiers.
|
|
142
|
+
* @summary Submits user feedback about a previous chat interaction with the VBAssist AI.
|
|
143
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
144
|
+
* @param {ChatFeedbackRequest} [chatFeedbackRequest] The feedback details including rating, comments, and conversation identifiers.
|
|
145
|
+
* @param {*} [options] Override http request option.
|
|
146
|
+
* @throws {RequiredError}
|
|
147
|
+
*/
|
|
148
|
+
async chatFeedback(vbasoftwareDatabase: string, chatFeedbackRequest?: ChatFeedbackRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringVBAResponse>> {
|
|
149
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.chatFeedback(vbasoftwareDatabase, chatFeedbackRequest, options);
|
|
150
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
151
|
+
const localVarOperationServerBasePath = operationServerMap['VBAssistApi.chatFeedback']?.[localVarOperationServerIndex]?.url;
|
|
152
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
153
|
+
},
|
|
154
|
+
/**
|
|
155
|
+
* Sends a user message to the VBAssist AI service and returns the generated response. Supports conversation tracking through agent_id and conversation_id parameters.
|
|
156
|
+
* @summary Processes a chat message from a user and returns a response from the VBAssist AI.
|
|
157
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
158
|
+
* @param {ChatRequest} [chatRequest] The request object containing the user\'s message and optional conversation tracking information.
|
|
89
159
|
* @param {*} [options] Override http request option.
|
|
90
160
|
* @throws {RequiredError}
|
|
91
161
|
*/
|
|
92
|
-
async chatRequest(
|
|
93
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.chatRequest(
|
|
162
|
+
async chatRequest(vbasoftwareDatabase: string, chatRequest?: ChatRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringVBAResponse>> {
|
|
163
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.chatRequest(vbasoftwareDatabase, chatRequest, options);
|
|
94
164
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
95
165
|
const localVarOperationServerBasePath = operationServerMap['VBAssistApi.chatRequest']?.[localVarOperationServerIndex]?.url;
|
|
96
166
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -106,14 +176,26 @@ export const VBAssistApiFactory = function (configuration?: Configuration, baseP
|
|
|
106
176
|
const localVarFp = VBAssistApiFp(configuration)
|
|
107
177
|
return {
|
|
108
178
|
/**
|
|
109
|
-
*
|
|
110
|
-
* @summary
|
|
111
|
-
* @param {
|
|
179
|
+
* Records user feedback about a specific conversation with VBAssist, including a numerical rating (1-5) and textual comments. Requires conversation and agent identifiers.
|
|
180
|
+
* @summary Submits user feedback about a previous chat interaction with the VBAssist AI.
|
|
181
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
182
|
+
* @param {ChatFeedbackRequest} [chatFeedbackRequest] The feedback details including rating, comments, and conversation identifiers.
|
|
112
183
|
* @param {*} [options] Override http request option.
|
|
113
184
|
* @throws {RequiredError}
|
|
114
185
|
*/
|
|
115
|
-
|
|
116
|
-
return localVarFp.
|
|
186
|
+
chatFeedback(vbasoftwareDatabase: string, chatFeedbackRequest?: ChatFeedbackRequest, options?: RawAxiosRequestConfig): AxiosPromise<StringVBAResponse> {
|
|
187
|
+
return localVarFp.chatFeedback(vbasoftwareDatabase, chatFeedbackRequest, options).then((request) => request(axios, basePath));
|
|
188
|
+
},
|
|
189
|
+
/**
|
|
190
|
+
* Sends a user message to the VBAssist AI service and returns the generated response. Supports conversation tracking through agent_id and conversation_id parameters.
|
|
191
|
+
* @summary Processes a chat message from a user and returns a response from the VBAssist AI.
|
|
192
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
193
|
+
* @param {ChatRequest} [chatRequest] The request object containing the user\'s message and optional conversation tracking information.
|
|
194
|
+
* @param {*} [options] Override http request option.
|
|
195
|
+
* @throws {RequiredError}
|
|
196
|
+
*/
|
|
197
|
+
chatRequest(vbasoftwareDatabase: string, chatRequest?: ChatRequest, options?: RawAxiosRequestConfig): AxiosPromise<StringVBAResponse> {
|
|
198
|
+
return localVarFp.chatRequest(vbasoftwareDatabase, chatRequest, options).then((request) => request(axios, basePath));
|
|
117
199
|
},
|
|
118
200
|
};
|
|
119
201
|
};
|
|
@@ -125,14 +207,26 @@ export const VBAssistApiFactory = function (configuration?: Configuration, baseP
|
|
|
125
207
|
*/
|
|
126
208
|
export interface VBAssistApiInterface {
|
|
127
209
|
/**
|
|
128
|
-
*
|
|
129
|
-
* @summary
|
|
130
|
-
* @param {
|
|
210
|
+
* Records user feedback about a specific conversation with VBAssist, including a numerical rating (1-5) and textual comments. Requires conversation and agent identifiers.
|
|
211
|
+
* @summary Submits user feedback about a previous chat interaction with the VBAssist AI.
|
|
212
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
213
|
+
* @param {ChatFeedbackRequest} [chatFeedbackRequest] The feedback details including rating, comments, and conversation identifiers.
|
|
214
|
+
* @param {*} [options] Override http request option.
|
|
215
|
+
* @throws {RequiredError}
|
|
216
|
+
* @memberof VBAssistApiInterface
|
|
217
|
+
*/
|
|
218
|
+
chatFeedback(vbasoftwareDatabase: string, chatFeedbackRequest?: ChatFeedbackRequest, options?: RawAxiosRequestConfig): AxiosPromise<StringVBAResponse>;
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* Sends a user message to the VBAssist AI service and returns the generated response. Supports conversation tracking through agent_id and conversation_id parameters.
|
|
222
|
+
* @summary Processes a chat message from a user and returns a response from the VBAssist AI.
|
|
223
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
224
|
+
* @param {ChatRequest} [chatRequest] The request object containing the user\'s message and optional conversation tracking information.
|
|
131
225
|
* @param {*} [options] Override http request option.
|
|
132
226
|
* @throws {RequiredError}
|
|
133
227
|
* @memberof VBAssistApiInterface
|
|
134
228
|
*/
|
|
135
|
-
chatRequest(
|
|
229
|
+
chatRequest(vbasoftwareDatabase: string, chatRequest?: ChatRequest, options?: RawAxiosRequestConfig): AxiosPromise<StringVBAResponse>;
|
|
136
230
|
|
|
137
231
|
}
|
|
138
232
|
|
|
@@ -144,15 +238,29 @@ export interface VBAssistApiInterface {
|
|
|
144
238
|
*/
|
|
145
239
|
export class VBAssistApi extends BaseAPI implements VBAssistApiInterface {
|
|
146
240
|
/**
|
|
147
|
-
*
|
|
148
|
-
* @summary
|
|
149
|
-
* @param {
|
|
241
|
+
* Records user feedback about a specific conversation with VBAssist, including a numerical rating (1-5) and textual comments. Requires conversation and agent identifiers.
|
|
242
|
+
* @summary Submits user feedback about a previous chat interaction with the VBAssist AI.
|
|
243
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
244
|
+
* @param {ChatFeedbackRequest} [chatFeedbackRequest] The feedback details including rating, comments, and conversation identifiers.
|
|
245
|
+
* @param {*} [options] Override http request option.
|
|
246
|
+
* @throws {RequiredError}
|
|
247
|
+
* @memberof VBAssistApi
|
|
248
|
+
*/
|
|
249
|
+
public chatFeedback(vbasoftwareDatabase: string, chatFeedbackRequest?: ChatFeedbackRequest, options?: RawAxiosRequestConfig) {
|
|
250
|
+
return VBAssistApiFp(this.configuration).chatFeedback(vbasoftwareDatabase, chatFeedbackRequest, options).then((request) => request(this.axios, this.basePath));
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* Sends a user message to the VBAssist AI service and returns the generated response. Supports conversation tracking through agent_id and conversation_id parameters.
|
|
255
|
+
* @summary Processes a chat message from a user and returns a response from the VBAssist AI.
|
|
256
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
257
|
+
* @param {ChatRequest} [chatRequest] The request object containing the user\'s message and optional conversation tracking information.
|
|
150
258
|
* @param {*} [options] Override http request option.
|
|
151
259
|
* @throws {RequiredError}
|
|
152
260
|
* @memberof VBAssistApi
|
|
153
261
|
*/
|
|
154
|
-
public chatRequest(
|
|
155
|
-
return VBAssistApiFp(this.configuration).chatRequest(
|
|
262
|
+
public chatRequest(vbasoftwareDatabase: string, chatRequest?: ChatRequest, options?: RawAxiosRequestConfig) {
|
|
263
|
+
return VBAssistApiFp(this.configuration).chatRequest(vbasoftwareDatabase, chatRequest, options).then((request) => request(this.axios, this.basePath));
|
|
156
264
|
}
|
|
157
265
|
}
|
|
158
266
|
|