@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230208.2 → 1.20230403.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 +19 -0
- package/api/adv-group-api.ts +17 -17
- package/api/chat-gptapi.ts +154 -0
- package/api/events-api.ts +87 -0
- package/api/groups-api.ts +17 -17
- package/api/prem-rate-types-api.ts +668 -0
- package/api/premium-invoice-payments-api.ts +124 -0
- package/api/premium-invoices-api.ts +336 -5
- package/api/premium-rate-distribution-types-api.ts +155 -0
- package/api/state-interest-api.ts +668 -0
- package/api/subscriber-plan-policies-api.ts +43 -91
- package/api/user-api.ts +394 -0
- package/api.ts +4 -0
- package/models/chat-message.ts +30 -0
- package/models/claim-batch-detail.ts +152 -140
- package/models/claim-batch.ts +1697 -479
- package/models/claim-detail.ts +137 -125
- package/models/claim-pre-batch-detail.ts +101 -95
- package/models/claim-pre-batch.ts +1703 -425
- package/models/claim.ts +1562 -338
- package/models/company-data.ts +433 -403
- package/models/cost-contain-zelis-ex-code.ts +12 -6
- package/models/enrollment-disenroll-group.ts +84 -0
- package/models/enrollment-disenroll.ts +28 -34
- package/models/groups.ts +18 -18
- package/models/idcard-request.ts +3 -3
- package/models/index.ts +15 -0
- package/models/mem-enrollment-plan.ts +9 -9
- package/models/mem-enrollment-rider.ts +10 -10
- package/models/member-beneficiary.ts +3 -3
- package/models/member-language.ts +38 -2
- package/models/member-medicare-resp.ts +50 -26
- package/models/members.ts +1 -1
- package/models/network-procedure-cluster.ts +15 -9
- package/models/plan-benefit-cluster.ts +12 -12
- package/models/plan-benefit-rate.ts +5 -5
- package/models/plan-benefits.ts +58 -52
- package/models/plan-type.ts +21 -21
- package/models/plans.ts +41 -41
- package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
- package/models/prem-invoice-group-summary.ts +114 -0
- package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-payment-ext.ts +102 -0
- package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-slim.ts +42 -0
- package/models/prem-rate-type-list-vbaresponse.ts +45 -0
- package/models/prem-rate-type-vbaresponse.ts +45 -0
- package/models/prem-rate-type.ts +72 -0
- package/models/prem-rate.ts +91 -85
- package/models/state-interest-list-vbaresponse.ts +45 -0
- package/models/state-interest-vbaresponse.ts +45 -0
- package/models/state-interest.ts +84 -0
- package/models/sub-enrollment-plan.ts +10 -10
- package/models/sub-enrollment-rider.ts +14 -14
- package/models/subscribers.ts +2 -2
- package/models/user-reset-password-request.ts +42 -0
- package/models/users.ts +8 -8
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -127,6 +127,7 @@ api/case-priorities-api.ts
|
|
|
127
127
|
api/case-reasons-api.ts
|
|
128
128
|
api/case-status-reasons-api.ts
|
|
129
129
|
api/case-statuses-api.ts
|
|
130
|
+
api/chat-gptapi.ts
|
|
130
131
|
api/check-batches-api.ts
|
|
131
132
|
api/check-details-api.ts
|
|
132
133
|
api/check-edit-details-api.ts
|
|
@@ -552,6 +553,7 @@ api/plan-types-api.ts
|
|
|
552
553
|
api/plans-api.ts
|
|
553
554
|
api/policy-forfeiture-ext-details-api.ts
|
|
554
555
|
api/policy-statuses-api.ts
|
|
556
|
+
api/prem-rate-types-api.ts
|
|
555
557
|
api/premium-claim-api.ts
|
|
556
558
|
api/premium-distributions-api.ts
|
|
557
559
|
api/premium-invoice-adjustments-api.ts
|
|
@@ -574,6 +576,7 @@ api/premium-payments-on-subscribers-api.ts
|
|
|
574
576
|
api/premium-rate-age-types-api.ts
|
|
575
577
|
api/premium-rate-basis-api.ts
|
|
576
578
|
api/premium-rate-categories-api.ts
|
|
579
|
+
api/premium-rate-distribution-types-api.ts
|
|
577
580
|
api/premium-rate-excludes-api.ts
|
|
578
581
|
api/premium-rate-members-api.ts
|
|
579
582
|
api/premium-rate-min-max-api.ts
|
|
@@ -707,6 +710,7 @@ api/send-to-api.ts
|
|
|
707
710
|
api/sex-codes-api.ts
|
|
708
711
|
api/signatures-api.ts
|
|
709
712
|
api/specialty-api.ts
|
|
713
|
+
api/state-interest-api.ts
|
|
710
714
|
api/state-procedure-code-taxes-api.ts
|
|
711
715
|
api/states-api.ts
|
|
712
716
|
api/subscriber-accumulators-api.ts
|
|
@@ -1124,6 +1128,7 @@ models/case-status-reason.ts
|
|
|
1124
1128
|
models/case-status-vbaresponse.ts
|
|
1125
1129
|
models/case-status.ts
|
|
1126
1130
|
models/change-subscriber-idrequest.ts
|
|
1131
|
+
models/chat-message.ts
|
|
1127
1132
|
models/check-batch-list-vbaresponse.ts
|
|
1128
1133
|
models/check-batch-vbaresponse.ts
|
|
1129
1134
|
models/check-batch.ts
|
|
@@ -1652,6 +1657,7 @@ models/electronic-statement.ts
|
|
|
1652
1657
|
models/eligibility-status-list-vbaresponse.ts
|
|
1653
1658
|
models/eligibility-status-vbaresponse.ts
|
|
1654
1659
|
models/eligibility-status.ts
|
|
1660
|
+
models/enrollment-disenroll-group.ts
|
|
1655
1661
|
models/enrollment-disenroll.ts
|
|
1656
1662
|
models/enrollment-pcpauto-assign.ts
|
|
1657
1663
|
models/enrollment-policy-forfeiture.ts
|
|
@@ -2375,7 +2381,11 @@ models/prem-invoice-adj-received.ts
|
|
|
2375
2381
|
models/prem-invoice-adjustment-list-vbaresponse.ts
|
|
2376
2382
|
models/prem-invoice-adjustment-vbaresponse.ts
|
|
2377
2383
|
models/prem-invoice-adjustment.ts
|
|
2384
|
+
models/prem-invoice-group-summary-vbaresponse.ts
|
|
2385
|
+
models/prem-invoice-group-summary.ts
|
|
2378
2386
|
models/prem-invoice-list-vbaresponse.ts
|
|
2387
|
+
models/prem-invoice-payment-ext-list-vbaresponse.ts
|
|
2388
|
+
models/prem-invoice-payment-ext.ts
|
|
2379
2389
|
models/prem-invoice-payment-list-vbaresponse.ts
|
|
2380
2390
|
models/prem-invoice-payment-vbaresponse.ts
|
|
2381
2391
|
models/prem-invoice-payment.ts
|
|
@@ -2388,6 +2398,8 @@ models/prem-invoice-self-admin-received-vbaresponse.ts
|
|
|
2388
2398
|
models/prem-invoice-self-admin-received.ts
|
|
2389
2399
|
models/prem-invoice-self-admin-vbaresponse.ts
|
|
2390
2400
|
models/prem-invoice-self-admin.ts
|
|
2401
|
+
models/prem-invoice-slim-list-vbaresponse.ts
|
|
2402
|
+
models/prem-invoice-slim.ts
|
|
2391
2403
|
models/prem-invoice-subscriber-detail-list-vbaresponse.ts
|
|
2392
2404
|
models/prem-invoice-subscriber-detail-vbaresponse.ts
|
|
2393
2405
|
models/prem-invoice-subscriber-detail.ts
|
|
@@ -2458,6 +2470,9 @@ models/prem-rate-payee-vbaresponse.ts
|
|
|
2458
2470
|
models/prem-rate-payee.ts
|
|
2459
2471
|
models/prem-rate-plan-config.ts
|
|
2460
2472
|
models/prem-rate-rate.ts
|
|
2473
|
+
models/prem-rate-type-list-vbaresponse.ts
|
|
2474
|
+
models/prem-rate-type-vbaresponse.ts
|
|
2475
|
+
models/prem-rate-type.ts
|
|
2461
2476
|
models/prem-rate-vbaresponse.ts
|
|
2462
2477
|
models/prem-rate-zip-list-vbaresponse.ts
|
|
2463
2478
|
models/prem-rate-zip-vbaresponse.ts
|
|
@@ -2810,6 +2825,9 @@ models/specialty-criteria.ts
|
|
|
2810
2825
|
models/specialty-list-vbaresponse.ts
|
|
2811
2826
|
models/specialty-vbaresponse.ts
|
|
2812
2827
|
models/specialty.ts
|
|
2828
|
+
models/state-interest-list-vbaresponse.ts
|
|
2829
|
+
models/state-interest-vbaresponse.ts
|
|
2830
|
+
models/state-interest.ts
|
|
2813
2831
|
models/state-list-vbaresponse.ts
|
|
2814
2832
|
models/state-procedure-code-tax-list-vbaresponse.ts
|
|
2815
2833
|
models/state-procedure-code-tax-vbaresponse.ts
|
|
@@ -2963,6 +2981,7 @@ models/user-log-type.ts
|
|
|
2963
2981
|
models/user-note-access-list-vbaresponse.ts
|
|
2964
2982
|
models/user-note-access-vbaresponse.ts
|
|
2965
2983
|
models/user-note-access.ts
|
|
2984
|
+
models/user-reset-password-request.ts
|
|
2966
2985
|
models/users-list-vbaresponse.ts
|
|
2967
2986
|
models/users-vbaresponse.ts
|
|
2968
2987
|
models/users.ts
|
package/api/adv-group-api.ts
CHANGED
|
@@ -21,7 +21,7 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import {
|
|
24
|
+
import { EnrollmentDisenrollGroup } from '../models';
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { EnrollmentReenroll } from '../models';
|
|
27
27
|
// @ts-ignore
|
|
@@ -159,17 +159,17 @@ export const AdvGroupApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
159
159
|
* @summary Group Disenroll
|
|
160
160
|
* @param {string} vbasoftwareDatabase Target database
|
|
161
161
|
* @param {string} groupID Group ID
|
|
162
|
-
* @param {
|
|
162
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
163
163
|
* @param {*} [options] Override http request option.
|
|
164
164
|
* @throws {RequiredError}
|
|
165
165
|
*/
|
|
166
|
-
groupDisenroll: async (vbasoftwareDatabase: string, groupID: string,
|
|
166
|
+
groupDisenroll: async (vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
167
167
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
168
168
|
assertParamExists('groupDisenroll', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
169
169
|
// verify required parameter 'groupID' is not null or undefined
|
|
170
170
|
assertParamExists('groupDisenroll', 'groupID', groupID)
|
|
171
|
-
// verify required parameter '
|
|
172
|
-
assertParamExists('groupDisenroll', '
|
|
171
|
+
// verify required parameter 'enrollmentDisenrollGroup' is not null or undefined
|
|
172
|
+
assertParamExists('groupDisenroll', 'enrollmentDisenrollGroup', enrollmentDisenrollGroup)
|
|
173
173
|
const localVarPath = `/groups/{groupID}/disenroll`
|
|
174
174
|
.replace(`{${"groupID"}}`, encodeURIComponent(String(groupID)));
|
|
175
175
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -201,7 +201,7 @@ export const AdvGroupApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
201
201
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
202
202
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
203
203
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
204
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
204
|
+
localVarRequestOptions.data = serializeDataIfNeeded(enrollmentDisenrollGroup, localVarRequestOptions, configuration)
|
|
205
205
|
|
|
206
206
|
return {
|
|
207
207
|
url: toPathString(localVarUrlObj),
|
|
@@ -363,12 +363,12 @@ export const AdvGroupApiFp = function(configuration?: Configuration) {
|
|
|
363
363
|
* @summary Group Disenroll
|
|
364
364
|
* @param {string} vbasoftwareDatabase Target database
|
|
365
365
|
* @param {string} groupID Group ID
|
|
366
|
-
* @param {
|
|
366
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
367
367
|
* @param {*} [options] Override http request option.
|
|
368
368
|
* @throws {RequiredError}
|
|
369
369
|
*/
|
|
370
|
-
async groupDisenroll(vbasoftwareDatabase: string, groupID: string,
|
|
371
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.groupDisenroll(vbasoftwareDatabase, groupID,
|
|
370
|
+
async groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAProcessVBAResponse>> {
|
|
371
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenrollGroup, options);
|
|
372
372
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
373
373
|
},
|
|
374
374
|
/**
|
|
@@ -439,12 +439,12 @@ export const AdvGroupApiFactory = function (configuration?: Configuration, baseP
|
|
|
439
439
|
* @summary Group Disenroll
|
|
440
440
|
* @param {string} vbasoftwareDatabase Target database
|
|
441
441
|
* @param {string} groupID Group ID
|
|
442
|
-
* @param {
|
|
442
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
443
443
|
* @param {*} [options] Override http request option.
|
|
444
444
|
* @throws {RequiredError}
|
|
445
445
|
*/
|
|
446
|
-
groupDisenroll(vbasoftwareDatabase: string, groupID: string,
|
|
447
|
-
return localVarFp.groupDisenroll(vbasoftwareDatabase, groupID,
|
|
446
|
+
groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: any): AxiosPromise<VBAProcessVBAResponse> {
|
|
447
|
+
return localVarFp.groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenrollGroup, options).then((request) => request(axios, basePath));
|
|
448
448
|
},
|
|
449
449
|
/**
|
|
450
450
|
* Re-enrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
@@ -511,12 +511,12 @@ export interface AdvGroupApiInterface {
|
|
|
511
511
|
* @summary Group Disenroll
|
|
512
512
|
* @param {string} vbasoftwareDatabase Target database
|
|
513
513
|
* @param {string} groupID Group ID
|
|
514
|
-
* @param {
|
|
514
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
515
515
|
* @param {*} [options] Override http request option.
|
|
516
516
|
* @throws {RequiredError}
|
|
517
517
|
* @memberof AdvGroupApiInterface
|
|
518
518
|
*/
|
|
519
|
-
groupDisenroll(vbasoftwareDatabase: string, groupID: string,
|
|
519
|
+
groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: AxiosRequestConfig): AxiosPromise<VBAProcessVBAResponse>;
|
|
520
520
|
|
|
521
521
|
/**
|
|
522
522
|
* Re-enrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
@@ -587,13 +587,13 @@ export class AdvGroupApi extends BaseAPI implements AdvGroupApiInterface {
|
|
|
587
587
|
* @summary Group Disenroll
|
|
588
588
|
* @param {string} vbasoftwareDatabase Target database
|
|
589
589
|
* @param {string} groupID Group ID
|
|
590
|
-
* @param {
|
|
590
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
591
591
|
* @param {*} [options] Override http request option.
|
|
592
592
|
* @throws {RequiredError}
|
|
593
593
|
* @memberof AdvGroupApi
|
|
594
594
|
*/
|
|
595
|
-
public groupDisenroll(vbasoftwareDatabase: string, groupID: string,
|
|
596
|
-
return AdvGroupApiFp(this.configuration).groupDisenroll(vbasoftwareDatabase, groupID,
|
|
595
|
+
public groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: AxiosRequestConfig) {
|
|
596
|
+
return AdvGroupApiFp(this.configuration).groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenrollGroup, options).then((request) => request(this.axios, this.basePath));
|
|
597
597
|
}
|
|
598
598
|
|
|
599
599
|
/**
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
17
|
+
import { Configuration } from '../configuration';
|
|
18
|
+
// Some imports not used depending on template conditions
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { ChatMessage } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
import { StringVBAResponse } from '../models';
|
|
27
|
+
/**
|
|
28
|
+
* ChatGPTApi - axios parameter creator
|
|
29
|
+
* @export
|
|
30
|
+
*/
|
|
31
|
+
export const ChatGPTApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
|
+
return {
|
|
33
|
+
/**
|
|
34
|
+
* An interactive client for ChatGPT
|
|
35
|
+
* @summary Talk with ChatGPT
|
|
36
|
+
* @param {ChatMessage} [chatMessage]
|
|
37
|
+
* @param {*} [options] Override http request option.
|
|
38
|
+
* @throws {RequiredError}
|
|
39
|
+
*/
|
|
40
|
+
chatRequest: async (chatMessage?: ChatMessage, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41
|
+
const localVarPath = `/chat`;
|
|
42
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
43
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
44
|
+
let baseOptions;
|
|
45
|
+
if (configuration) {
|
|
46
|
+
baseOptions = configuration.baseOptions;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
50
|
+
const localVarHeaderParameter = {} as any;
|
|
51
|
+
const localVarQueryParameter = {} as any;
|
|
52
|
+
|
|
53
|
+
// authentication apiKeyAuth required
|
|
54
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
55
|
+
|
|
56
|
+
// authentication bearerAuth required
|
|
57
|
+
// http bearer authentication required
|
|
58
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
63
|
+
|
|
64
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
65
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
66
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
67
|
+
localVarRequestOptions.data = serializeDataIfNeeded(chatMessage, localVarRequestOptions, configuration)
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
url: toPathString(localVarUrlObj),
|
|
71
|
+
options: localVarRequestOptions,
|
|
72
|
+
};
|
|
73
|
+
},
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* ChatGPTApi - functional programming interface
|
|
79
|
+
* @export
|
|
80
|
+
*/
|
|
81
|
+
export const ChatGPTApiFp = function(configuration?: Configuration) {
|
|
82
|
+
const localVarAxiosParamCreator = ChatGPTApiAxiosParamCreator(configuration)
|
|
83
|
+
return {
|
|
84
|
+
/**
|
|
85
|
+
* An interactive client for ChatGPT
|
|
86
|
+
* @summary Talk with ChatGPT
|
|
87
|
+
* @param {ChatMessage} [chatMessage]
|
|
88
|
+
* @param {*} [options] Override http request option.
|
|
89
|
+
* @throws {RequiredError}
|
|
90
|
+
*/
|
|
91
|
+
async chatRequest(chatMessage?: ChatMessage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringVBAResponse>> {
|
|
92
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.chatRequest(chatMessage, options);
|
|
93
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
94
|
+
},
|
|
95
|
+
}
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* ChatGPTApi - factory interface
|
|
100
|
+
* @export
|
|
101
|
+
*/
|
|
102
|
+
export const ChatGPTApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
103
|
+
const localVarFp = ChatGPTApiFp(configuration)
|
|
104
|
+
return {
|
|
105
|
+
/**
|
|
106
|
+
* An interactive client for ChatGPT
|
|
107
|
+
* @summary Talk with ChatGPT
|
|
108
|
+
* @param {ChatMessage} [chatMessage]
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @throws {RequiredError}
|
|
111
|
+
*/
|
|
112
|
+
chatRequest(chatMessage?: ChatMessage, options?: any): AxiosPromise<StringVBAResponse> {
|
|
113
|
+
return localVarFp.chatRequest(chatMessage, options).then((request) => request(axios, basePath));
|
|
114
|
+
},
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* ChatGPTApi - interface
|
|
120
|
+
* @export
|
|
121
|
+
* @interface ChatGPTApi
|
|
122
|
+
*/
|
|
123
|
+
export interface ChatGPTApiInterface {
|
|
124
|
+
/**
|
|
125
|
+
* An interactive client for ChatGPT
|
|
126
|
+
* @summary Talk with ChatGPT
|
|
127
|
+
* @param {ChatMessage} [chatMessage]
|
|
128
|
+
* @param {*} [options] Override http request option.
|
|
129
|
+
* @throws {RequiredError}
|
|
130
|
+
* @memberof ChatGPTApiInterface
|
|
131
|
+
*/
|
|
132
|
+
chatRequest(chatMessage?: ChatMessage, options?: AxiosRequestConfig): AxiosPromise<StringVBAResponse>;
|
|
133
|
+
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* ChatGPTApi - object-oriented interface
|
|
138
|
+
* @export
|
|
139
|
+
* @class ChatGPTApi
|
|
140
|
+
* @extends {BaseAPI}
|
|
141
|
+
*/
|
|
142
|
+
export class ChatGPTApi extends BaseAPI implements ChatGPTApiInterface {
|
|
143
|
+
/**
|
|
144
|
+
* An interactive client for ChatGPT
|
|
145
|
+
* @summary Talk with ChatGPT
|
|
146
|
+
* @param {ChatMessage} [chatMessage]
|
|
147
|
+
* @param {*} [options] Override http request option.
|
|
148
|
+
* @throws {RequiredError}
|
|
149
|
+
* @memberof ChatGPTApi
|
|
150
|
+
*/
|
|
151
|
+
public chatRequest(chatMessage?: ChatMessage, options?: AxiosRequestConfig) {
|
|
152
|
+
return ChatGPTApiFp(this.configuration).chatRequest(chatMessage, options).then((request) => request(this.axios, this.basePath));
|
|
153
|
+
}
|
|
154
|
+
}
|
package/api/events-api.ts
CHANGED
|
@@ -499,6 +499,50 @@ export const EventsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
499
499
|
|
|
500
500
|
|
|
501
501
|
|
|
502
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
503
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
504
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
505
|
+
|
|
506
|
+
return {
|
|
507
|
+
url: toPathString(localVarUrlObj),
|
|
508
|
+
options: localVarRequestOptions,
|
|
509
|
+
};
|
|
510
|
+
},
|
|
511
|
+
/**
|
|
512
|
+
* List Report Args
|
|
513
|
+
* @summary List Report Args
|
|
514
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
515
|
+
* @param {*} [options] Override http request option.
|
|
516
|
+
* @throws {RequiredError}
|
|
517
|
+
*/
|
|
518
|
+
listReportArgs: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
519
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
520
|
+
assertParamExists('listReportArgs', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
521
|
+
const localVarPath = `/report-args`;
|
|
522
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
523
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
524
|
+
let baseOptions;
|
|
525
|
+
if (configuration) {
|
|
526
|
+
baseOptions = configuration.baseOptions;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
530
|
+
const localVarHeaderParameter = {} as any;
|
|
531
|
+
const localVarQueryParameter = {} as any;
|
|
532
|
+
|
|
533
|
+
// authentication apiKeyAuth required
|
|
534
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
535
|
+
|
|
536
|
+
// authentication bearerAuth required
|
|
537
|
+
// http bearer authentication required
|
|
538
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
539
|
+
|
|
540
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
541
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
|
|
502
546
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
503
547
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
504
548
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1113,6 +1157,17 @@ export const EventsApiFp = function(configuration?: Configuration) {
|
|
|
1113
1157
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPriorities(vbasoftwareDatabase, options);
|
|
1114
1158
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1115
1159
|
},
|
|
1160
|
+
/**
|
|
1161
|
+
* List Report Args
|
|
1162
|
+
* @summary List Report Args
|
|
1163
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1164
|
+
* @param {*} [options] Override http request option.
|
|
1165
|
+
* @throws {RequiredError}
|
|
1166
|
+
*/
|
|
1167
|
+
async listReportArgs(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
1168
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReportArgs(vbasoftwareDatabase, options);
|
|
1169
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1170
|
+
},
|
|
1116
1171
|
/**
|
|
1117
1172
|
* List Schedule Actions
|
|
1118
1173
|
* @summary List Schedule Actions
|
|
@@ -1347,6 +1402,16 @@ export const EventsApiFactory = function (configuration?: Configuration, basePat
|
|
|
1347
1402
|
listPriorities(vbasoftwareDatabase: string, options?: any): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
1348
1403
|
return localVarFp.listPriorities(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
1349
1404
|
},
|
|
1405
|
+
/**
|
|
1406
|
+
* List Report Args
|
|
1407
|
+
* @summary List Report Args
|
|
1408
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1409
|
+
* @param {*} [options] Override http request option.
|
|
1410
|
+
* @throws {RequiredError}
|
|
1411
|
+
*/
|
|
1412
|
+
listReportArgs(vbasoftwareDatabase: string, options?: any): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
1413
|
+
return localVarFp.listReportArgs(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
1414
|
+
},
|
|
1350
1415
|
/**
|
|
1351
1416
|
* List Schedule Actions
|
|
1352
1417
|
* @summary List Schedule Actions
|
|
@@ -1570,6 +1635,16 @@ export interface EventsApiInterface {
|
|
|
1570
1635
|
*/
|
|
1571
1636
|
listPriorities(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
1572
1637
|
|
|
1638
|
+
/**
|
|
1639
|
+
* List Report Args
|
|
1640
|
+
* @summary List Report Args
|
|
1641
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1642
|
+
* @param {*} [options] Override http request option.
|
|
1643
|
+
* @throws {RequiredError}
|
|
1644
|
+
* @memberof EventsApiInterface
|
|
1645
|
+
*/
|
|
1646
|
+
listReportArgs(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
1647
|
+
|
|
1573
1648
|
/**
|
|
1574
1649
|
* List Schedule Actions
|
|
1575
1650
|
* @summary List Schedule Actions
|
|
@@ -1813,6 +1888,18 @@ export class EventsApi extends BaseAPI implements EventsApiInterface {
|
|
|
1813
1888
|
return EventsApiFp(this.configuration).listPriorities(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
1814
1889
|
}
|
|
1815
1890
|
|
|
1891
|
+
/**
|
|
1892
|
+
* List Report Args
|
|
1893
|
+
* @summary List Report Args
|
|
1894
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1895
|
+
* @param {*} [options] Override http request option.
|
|
1896
|
+
* @throws {RequiredError}
|
|
1897
|
+
* @memberof EventsApi
|
|
1898
|
+
*/
|
|
1899
|
+
public listReportArgs(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
|
|
1900
|
+
return EventsApiFp(this.configuration).listReportArgs(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1816
1903
|
/**
|
|
1817
1904
|
* List Schedule Actions
|
|
1818
1905
|
* @summary List Schedule Actions
|
package/api/groups-api.ts
CHANGED
|
@@ -21,7 +21,7 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import {
|
|
24
|
+
import { EnrollmentDisenrollGroup } from '../models';
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { EnrollmentReenroll } from '../models';
|
|
27
27
|
// @ts-ignore
|
|
@@ -191,17 +191,17 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
191
191
|
* @summary Group Disenroll
|
|
192
192
|
* @param {string} vbasoftwareDatabase Target database
|
|
193
193
|
* @param {string} groupID Group ID
|
|
194
|
-
* @param {
|
|
194
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
195
195
|
* @param {*} [options] Override http request option.
|
|
196
196
|
* @throws {RequiredError}
|
|
197
197
|
*/
|
|
198
|
-
groupDisenroll: async (vbasoftwareDatabase: string, groupID: string,
|
|
198
|
+
groupDisenroll: async (vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
199
199
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
200
200
|
assertParamExists('groupDisenroll', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
201
201
|
// verify required parameter 'groupID' is not null or undefined
|
|
202
202
|
assertParamExists('groupDisenroll', 'groupID', groupID)
|
|
203
|
-
// verify required parameter '
|
|
204
|
-
assertParamExists('groupDisenroll', '
|
|
203
|
+
// verify required parameter 'enrollmentDisenrollGroup' is not null or undefined
|
|
204
|
+
assertParamExists('groupDisenroll', 'enrollmentDisenrollGroup', enrollmentDisenrollGroup)
|
|
205
205
|
const localVarPath = `/groups/{groupID}/disenroll`
|
|
206
206
|
.replace(`{${"groupID"}}`, encodeURIComponent(String(groupID)));
|
|
207
207
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -233,7 +233,7 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
233
233
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
234
234
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
235
235
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
236
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
236
|
+
localVarRequestOptions.data = serializeDataIfNeeded(enrollmentDisenrollGroup, localVarRequestOptions, configuration)
|
|
237
237
|
|
|
238
238
|
return {
|
|
239
239
|
url: toPathString(localVarUrlObj),
|
|
@@ -503,12 +503,12 @@ export const GroupsApiFp = function(configuration?: Configuration) {
|
|
|
503
503
|
* @summary Group Disenroll
|
|
504
504
|
* @param {string} vbasoftwareDatabase Target database
|
|
505
505
|
* @param {string} groupID Group ID
|
|
506
|
-
* @param {
|
|
506
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
507
507
|
* @param {*} [options] Override http request option.
|
|
508
508
|
* @throws {RequiredError}
|
|
509
509
|
*/
|
|
510
|
-
async groupDisenroll(vbasoftwareDatabase: string, groupID: string,
|
|
511
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.groupDisenroll(vbasoftwareDatabase, groupID,
|
|
510
|
+
async groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAProcessVBAResponse>> {
|
|
511
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenrollGroup, options);
|
|
512
512
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
513
513
|
},
|
|
514
514
|
/**
|
|
@@ -610,12 +610,12 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
|
|
|
610
610
|
* @summary Group Disenroll
|
|
611
611
|
* @param {string} vbasoftwareDatabase Target database
|
|
612
612
|
* @param {string} groupID Group ID
|
|
613
|
-
* @param {
|
|
613
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
614
614
|
* @param {*} [options] Override http request option.
|
|
615
615
|
* @throws {RequiredError}
|
|
616
616
|
*/
|
|
617
|
-
groupDisenroll(vbasoftwareDatabase: string, groupID: string,
|
|
618
|
-
return localVarFp.groupDisenroll(vbasoftwareDatabase, groupID,
|
|
617
|
+
groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: any): AxiosPromise<VBAProcessVBAResponse> {
|
|
618
|
+
return localVarFp.groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenrollGroup, options).then((request) => request(axios, basePath));
|
|
619
619
|
},
|
|
620
620
|
/**
|
|
621
621
|
* Re-enrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
@@ -711,12 +711,12 @@ export interface GroupsApiInterface {
|
|
|
711
711
|
* @summary Group Disenroll
|
|
712
712
|
* @param {string} vbasoftwareDatabase Target database
|
|
713
713
|
* @param {string} groupID Group ID
|
|
714
|
-
* @param {
|
|
714
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
715
715
|
* @param {*} [options] Override http request option.
|
|
716
716
|
* @throws {RequiredError}
|
|
717
717
|
* @memberof GroupsApiInterface
|
|
718
718
|
*/
|
|
719
|
-
groupDisenroll(vbasoftwareDatabase: string, groupID: string,
|
|
719
|
+
groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: AxiosRequestConfig): AxiosPromise<VBAProcessVBAResponse>;
|
|
720
720
|
|
|
721
721
|
/**
|
|
722
722
|
* Re-enrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
@@ -818,13 +818,13 @@ export class GroupsApi extends BaseAPI implements GroupsApiInterface {
|
|
|
818
818
|
* @summary Group Disenroll
|
|
819
819
|
* @param {string} vbasoftwareDatabase Target database
|
|
820
820
|
* @param {string} groupID Group ID
|
|
821
|
-
* @param {
|
|
821
|
+
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
822
822
|
* @param {*} [options] Override http request option.
|
|
823
823
|
* @throws {RequiredError}
|
|
824
824
|
* @memberof GroupsApi
|
|
825
825
|
*/
|
|
826
|
-
public groupDisenroll(vbasoftwareDatabase: string, groupID: string,
|
|
827
|
-
return GroupsApiFp(this.configuration).groupDisenroll(vbasoftwareDatabase, groupID,
|
|
826
|
+
public groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: AxiosRequestConfig) {
|
|
827
|
+
return GroupsApiFp(this.configuration).groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenrollGroup, options).then((request) => request(this.axios, this.basePath));
|
|
828
828
|
}
|
|
829
829
|
|
|
830
830
|
/**
|