@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230225.1 → 1.20230506.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.
Files changed (93) hide show
  1. package/.openapi-generator/FILES +39 -1
  2. package/api/adv-group-api.ts +17 -17
  3. package/api/capitation-plan-rates-api.ts +22 -13
  4. package/api/chat-gptapi.ts +154 -0
  5. package/api/commission-adjustments-api.ts +59 -107
  6. package/api/commission-rate-subscribers-api.ts +126 -0
  7. package/api/context4-health-cost-containment-option-pricing-api.ts +17 -8
  8. package/api/context4-health-cost-containment-options-api.ts +17 -8
  9. package/api/groups-api.ts +114 -17
  10. package/api/invoice-status-api.ts +155 -0
  11. package/api/invoice-types-api.ts +155 -0
  12. package/api/members-api.ts +323 -0
  13. package/api/plan-relationship-age-restrictions-api.ts +63 -148
  14. package/api/prem-rate-types-api.ts +668 -0
  15. package/api/premium-invoice-payments-api.ts +124 -0
  16. package/api/premium-invoice-subscribers-api.ts +123 -0
  17. package/api/premium-invoices-api.ts +336 -5
  18. package/api/premium-rate-distribution-types-api.ts +155 -0
  19. package/api/process-logging-api.ts +105 -0
  20. package/api/security-area-user-groups-api.ts +100 -0
  21. package/api/security-area-users-api.ts +98 -0
  22. package/api/state-interest-api.ts +668 -0
  23. package/api/subscriber-plan-policies-api.ts +43 -91
  24. package/api/subscriber-plan-policy-forfeitures-api.ts +581 -35
  25. package/api/ucnetwork-api.ts +710 -0
  26. package/api/user-api.ts +394 -0
  27. package/api.ts +7 -1
  28. package/models/auth-adjustment.ts +2 -2
  29. package/models/billing-cycle.ts +25 -1
  30. package/models/call-tracking.ts +25 -1
  31. package/models/chat-message.ts +30 -0
  32. package/models/check-batch.ts +27 -3
  33. package/models/claim-batch-detail.ts +7 -1
  34. package/models/claim-batch.ts +1082 -86
  35. package/models/claim-detail.ts +7 -1
  36. package/models/claim-pre-batch-detail.ts +1 -1
  37. package/models/claim-pre-batch.ts +1138 -82
  38. package/models/claim.ts +1116 -120
  39. package/models/commission-adjustment.ts +21 -15
  40. package/models/commission-rate.ts +90 -36
  41. package/models/company-data.ts +27 -3
  42. package/models/cost-contain-zelis-ex-code.ts +6 -0
  43. package/models/enrollment-disenroll-group.ts +84 -0
  44. package/models/enrollment-disenroll.ts +28 -34
  45. package/models/enrollment-pcpauto-assign-member-list-vbaresponse.ts +45 -0
  46. package/models/enrollment-pcpauto-assign-member.ts +96 -0
  47. package/models/enrollment-pcpauto-assign-provider-list-vbaresponse.ts +45 -0
  48. package/models/enrollment-pcpauto-assign-provider.ts +90 -0
  49. package/models/enrollment-pcpauto-assign.ts +3 -3
  50. package/models/index.ts +32 -0
  51. package/models/member-language.ts +2 -2
  52. package/models/member-medicare-resp.ts +50 -26
  53. package/models/members.ts +1 -1
  54. package/models/network-procedure-cluster.ts +15 -9
  55. package/models/payee.ts +29 -5
  56. package/models/plan-benefits.ts +1 -1
  57. package/models/plan-pre-ex.ts +54 -0
  58. package/models/plans.ts +6 -0
  59. package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
  60. package/models/prem-invoice-group-summary.ts +114 -0
  61. package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
  62. package/models/prem-invoice-payment-ext.ts +102 -0
  63. package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
  64. package/models/prem-invoice-slim.ts +42 -0
  65. package/models/prem-invoice.ts +27 -21
  66. package/models/prem-rate-type-list-vbaresponse.ts +45 -0
  67. package/models/prem-rate-type-vbaresponse.ts +45 -0
  68. package/models/prem-rate-type.ts +78 -0
  69. package/models/prem-rate.ts +12 -0
  70. package/models/state-interest-list-vbaresponse.ts +45 -0
  71. package/models/state-interest-vbaresponse.ts +45 -0
  72. package/models/state-interest.ts +156 -0
  73. package/models/state.ts +35 -5
  74. package/models/string-list-vbaresponse.ts +44 -0
  75. package/models/sub-enrollment-plan.ts +6 -0
  76. package/models/sub-payment-method.ts +16 -10
  77. package/models/subscriber-forfeiture-status.ts +25 -1
  78. package/models/subscribers.ts +6 -0
  79. package/models/ucnetwork-list-vbaresponse.ts +45 -0
  80. package/models/ucnetwork-vbaresponse.ts +45 -0
  81. package/models/ucnetwork.ts +90 -0
  82. package/models/user-reset-password-request.ts +42 -0
  83. package/models/vbacommission-rate-subscriber-list-vbaresponse.ts +45 -0
  84. package/models/vbacommission-rate-subscriber.ts +48 -0
  85. package/models/vbagroup-enrollment-summary-vbaresponse.ts +45 -0
  86. package/models/vbagroup-enrollment-summary.ts +48 -0
  87. package/models/vbamembers-disability-tax-summary-vbaresponse.ts +45 -0
  88. package/models/vbamembers-disability-tax-summary.ts +276 -0
  89. package/models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts +45 -0
  90. package/models/vbaprem-invoice-subscriber-history.ts +108 -0
  91. package/models/vbaprocess-log-list-vbaresponse.ts +45 -0
  92. package/package.json +1 -1
  93. package/api/subscriber-plan-forfeitures-api.ts +0 -731
@@ -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
@@ -437,6 +438,8 @@ api/insurance-types-api.ts
437
438
  api/interface-types-api.ts
438
439
  api/invoice-levels-api.ts
439
440
  api/invoice-reasons-api.ts
441
+ api/invoice-status-api.ts
442
+ api/invoice-types-api.ts
440
443
  api/issue-duration-values-api.ts
441
444
  api/job-execution-metadata-api.ts
442
445
  api/job-executions-api.ts
@@ -552,6 +555,7 @@ api/plan-types-api.ts
552
555
  api/plans-api.ts
553
556
  api/policy-forfeiture-ext-details-api.ts
554
557
  api/policy-statuses-api.ts
558
+ api/prem-rate-types-api.ts
555
559
  api/premium-claim-api.ts
556
560
  api/premium-distributions-api.ts
557
561
  api/premium-invoice-adjustments-api.ts
@@ -574,6 +578,7 @@ api/premium-payments-on-subscribers-api.ts
574
578
  api/premium-rate-age-types-api.ts
575
579
  api/premium-rate-basis-api.ts
576
580
  api/premium-rate-categories-api.ts
581
+ api/premium-rate-distribution-types-api.ts
577
582
  api/premium-rate-excludes-api.ts
578
583
  api/premium-rate-members-api.ts
579
584
  api/premium-rate-min-max-api.ts
@@ -707,6 +712,7 @@ api/send-to-api.ts
707
712
  api/sex-codes-api.ts
708
713
  api/signatures-api.ts
709
714
  api/specialty-api.ts
715
+ api/state-interest-api.ts
710
716
  api/state-procedure-code-taxes-api.ts
711
717
  api/states-api.ts
712
718
  api/subscriber-accumulators-api.ts
@@ -719,7 +725,6 @@ api/subscriber-flex-payments-api.ts
719
725
  api/subscriber-idcode-history-api.ts
720
726
  api/subscriber-idcodes-api.ts
721
727
  api/subscriber-payment-methods-api.ts
722
- api/subscriber-plan-forfeitures-api.ts
723
728
  api/subscriber-plan-policies-api.ts
724
729
  api/subscriber-plan-policy-forfeitures-api.ts
725
730
  api/subscriber-plan-policy-statuses-api.ts
@@ -746,6 +751,7 @@ api/tooth-procedures-api.ts
746
751
  api/tooth-quadrants-api.ts
747
752
  api/transplant-types-api.ts
748
753
  api/treatment-types-api.ts
754
+ api/ucnetwork-api.ts
749
755
  api/unassigned-commission-adjustments-api.ts
750
756
  api/unit-type-conversions-api.ts
751
757
  api/unit-types-api.ts
@@ -1124,6 +1130,7 @@ models/case-status-reason.ts
1124
1130
  models/case-status-vbaresponse.ts
1125
1131
  models/case-status.ts
1126
1132
  models/change-subscriber-idrequest.ts
1133
+ models/chat-message.ts
1127
1134
  models/check-batch-list-vbaresponse.ts
1128
1135
  models/check-batch-vbaresponse.ts
1129
1136
  models/check-batch.ts
@@ -1652,7 +1659,12 @@ models/electronic-statement.ts
1652
1659
  models/eligibility-status-list-vbaresponse.ts
1653
1660
  models/eligibility-status-vbaresponse.ts
1654
1661
  models/eligibility-status.ts
1662
+ models/enrollment-disenroll-group.ts
1655
1663
  models/enrollment-disenroll.ts
1664
+ models/enrollment-pcpauto-assign-member-list-vbaresponse.ts
1665
+ models/enrollment-pcpauto-assign-member.ts
1666
+ models/enrollment-pcpauto-assign-provider-list-vbaresponse.ts
1667
+ models/enrollment-pcpauto-assign-provider.ts
1656
1668
  models/enrollment-pcpauto-assign.ts
1657
1669
  models/enrollment-policy-forfeiture.ts
1658
1670
  models/enrollment-reenroll.ts
@@ -2375,7 +2387,11 @@ models/prem-invoice-adj-received.ts
2375
2387
  models/prem-invoice-adjustment-list-vbaresponse.ts
2376
2388
  models/prem-invoice-adjustment-vbaresponse.ts
2377
2389
  models/prem-invoice-adjustment.ts
2390
+ models/prem-invoice-group-summary-vbaresponse.ts
2391
+ models/prem-invoice-group-summary.ts
2378
2392
  models/prem-invoice-list-vbaresponse.ts
2393
+ models/prem-invoice-payment-ext-list-vbaresponse.ts
2394
+ models/prem-invoice-payment-ext.ts
2379
2395
  models/prem-invoice-payment-list-vbaresponse.ts
2380
2396
  models/prem-invoice-payment-vbaresponse.ts
2381
2397
  models/prem-invoice-payment.ts
@@ -2388,6 +2404,8 @@ models/prem-invoice-self-admin-received-vbaresponse.ts
2388
2404
  models/prem-invoice-self-admin-received.ts
2389
2405
  models/prem-invoice-self-admin-vbaresponse.ts
2390
2406
  models/prem-invoice-self-admin.ts
2407
+ models/prem-invoice-slim-list-vbaresponse.ts
2408
+ models/prem-invoice-slim.ts
2391
2409
  models/prem-invoice-subscriber-detail-list-vbaresponse.ts
2392
2410
  models/prem-invoice-subscriber-detail-vbaresponse.ts
2393
2411
  models/prem-invoice-subscriber-detail.ts
@@ -2458,6 +2476,9 @@ models/prem-rate-payee-vbaresponse.ts
2458
2476
  models/prem-rate-payee.ts
2459
2477
  models/prem-rate-plan-config.ts
2460
2478
  models/prem-rate-rate.ts
2479
+ models/prem-rate-type-list-vbaresponse.ts
2480
+ models/prem-rate-type-vbaresponse.ts
2481
+ models/prem-rate-type.ts
2461
2482
  models/prem-rate-vbaresponse.ts
2462
2483
  models/prem-rate-zip-list-vbaresponse.ts
2463
2484
  models/prem-rate-zip-vbaresponse.ts
@@ -2810,12 +2831,16 @@ models/specialty-criteria.ts
2810
2831
  models/specialty-list-vbaresponse.ts
2811
2832
  models/specialty-vbaresponse.ts
2812
2833
  models/specialty.ts
2834
+ models/state-interest-list-vbaresponse.ts
2835
+ models/state-interest-vbaresponse.ts
2836
+ models/state-interest.ts
2813
2837
  models/state-list-vbaresponse.ts
2814
2838
  models/state-procedure-code-tax-list-vbaresponse.ts
2815
2839
  models/state-procedure-code-tax-vbaresponse.ts
2816
2840
  models/state-procedure-code-tax.ts
2817
2841
  models/state-vbaresponse.ts
2818
2842
  models/state.ts
2843
+ models/string-list-vbaresponse.ts
2819
2844
  models/string-static-option-list-vbaresponse.ts
2820
2845
  models/string-static-option-vbaresponse.ts
2821
2846
  models/string-static-option.ts
@@ -2928,6 +2953,9 @@ models/tooth.ts
2928
2953
  models/treatment-type-list-vbaresponse.ts
2929
2954
  models/treatment-type-vbaresponse.ts
2930
2955
  models/treatment-type.ts
2956
+ models/ucnetwork-list-vbaresponse.ts
2957
+ models/ucnetwork-vbaresponse.ts
2958
+ models/ucnetwork.ts
2931
2959
  models/unit-conversion-list-vbaresponse.ts
2932
2960
  models/unit-conversion-vbaresponse.ts
2933
2961
  models/unit-conversion.ts
@@ -2963,11 +2991,14 @@ models/user-log-type.ts
2963
2991
  models/user-note-access-list-vbaresponse.ts
2964
2992
  models/user-note-access-vbaresponse.ts
2965
2993
  models/user-note-access.ts
2994
+ models/user-reset-password-request.ts
2966
2995
  models/users-list-vbaresponse.ts
2967
2996
  models/users-vbaresponse.ts
2968
2997
  models/users.ts
2969
2998
  models/vbaauth-vbaresponse.ts
2970
2999
  models/vbaauth.ts
3000
+ models/vbacommission-rate-subscriber-list-vbaresponse.ts
3001
+ models/vbacommission-rate-subscriber.ts
2971
3002
  models/vbagateway-subscription-detail-list-vbaresponse.ts
2972
3003
  models/vbagateway-subscription-detail-vbaresponse.ts
2973
3004
  models/vbagateway-subscription-detail.ts
@@ -2976,6 +3007,8 @@ models/vbagateway-subscription-vbaresponse.ts
2976
3007
  models/vbagateway-subscription.ts
2977
3008
  models/vbagroup-contract-list-vbaresponse.ts
2978
3009
  models/vbagroup-contract.ts
3010
+ models/vbagroup-enrollment-summary-vbaresponse.ts
3011
+ models/vbagroup-enrollment-summary.ts
2979
3012
  models/vbainterface-idcode-list-vbaresponse.ts
2980
3013
  models/vbainterface-idcode-vbaresponse.ts
2981
3014
  models/vbainterface-idcode.ts
@@ -2994,7 +3027,12 @@ models/vbainterface-vendor-list-vbaresponse.ts
2994
3027
  models/vbainterface-vendor-vbaresponse.ts
2995
3028
  models/vbainterface-vendor.ts
2996
3029
  models/vbainterface.ts
3030
+ models/vbamembers-disability-tax-summary-vbaresponse.ts
3031
+ models/vbamembers-disability-tax-summary.ts
3032
+ models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts
3033
+ models/vbaprem-invoice-subscriber-history.ts
2997
3034
  models/vbaproblem-details.ts
3035
+ models/vbaprocess-log-list-vbaresponse.ts
2998
3036
  models/vbaprocess-log-vbaresponse.ts
2999
3037
  models/vbaprocess-log.ts
3000
3038
  models/vbaprocess-parameter-vbaresponse.ts
@@ -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 { EnrollmentDisenroll } from '../models';
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 {EnrollmentDisenroll} enrollmentDisenroll
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, enrollmentDisenroll: EnrollmentDisenroll, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
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 'enrollmentDisenroll' is not null or undefined
172
- assertParamExists('groupDisenroll', 'enrollmentDisenroll', enrollmentDisenroll)
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(enrollmentDisenroll, localVarRequestOptions, configuration)
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 {EnrollmentDisenroll} enrollmentDisenroll
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, enrollmentDisenroll: EnrollmentDisenroll, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAProcessVBAResponse>> {
371
- const localVarAxiosArgs = await localVarAxiosParamCreator.groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenroll, options);
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 {EnrollmentDisenroll} enrollmentDisenroll
442
+ * @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
443
443
  * @param {*} [options] Override http request option.
444
444
  * @throws {RequiredError}
445
445
  */
446
- groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenroll: EnrollmentDisenroll, options?: any): AxiosPromise<VBAProcessVBAResponse> {
447
- return localVarFp.groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenroll, options).then((request) => request(axios, basePath));
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 {EnrollmentDisenroll} enrollmentDisenroll
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, enrollmentDisenroll: EnrollmentDisenroll, options?: AxiosRequestConfig): AxiosPromise<VBAProcessVBAResponse>;
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 {EnrollmentDisenroll} enrollmentDisenroll
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, enrollmentDisenroll: EnrollmentDisenroll, options?: AxiosRequestConfig) {
596
- return AdvGroupApiFp(this.configuration).groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenroll, options).then((request) => request(this.axios, this.basePath));
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
  /**
@@ -181,15 +181,16 @@ export const CapitationPlanRatesApiAxiosParamCreator = function (configuration?:
181
181
  };
182
182
  },
183
183
  /**
184
- * Lists all CapitationPlanRate
184
+ * Lists all CapitationPlanRate. Supply optinal query parameter planID to filter by a specific plan.
185
185
  * @summary List CapitationPlanRate
186
186
  * @param {string} vbasoftwareDatabase Target database
187
+ * @param {string} [planID] Plan ID
187
188
  * @param {number} [page] Page
188
189
  * @param {number} [pageSize] Page Size
189
190
  * @param {*} [options] Override http request option.
190
191
  * @throws {RequiredError}
191
192
  */
192
- listCapitationPlanRate: async (vbasoftwareDatabase: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
193
+ listCapitationPlanRate: async (vbasoftwareDatabase: string, planID?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
193
194
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
194
195
  assertParamExists('listCapitationPlanRate', 'vbasoftwareDatabase', vbasoftwareDatabase)
195
196
  const localVarPath = `/capitation-plan-rates`;
@@ -211,6 +212,10 @@ export const CapitationPlanRatesApiAxiosParamCreator = function (configuration?:
211
212
  // http bearer authentication required
212
213
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
213
214
 
215
+ if (planID !== undefined) {
216
+ localVarQueryParameter['planID'] = planID;
217
+ }
218
+
214
219
  if (page !== undefined) {
215
220
  localVarQueryParameter['page'] = page;
216
221
  }
@@ -385,16 +390,17 @@ export const CapitationPlanRatesApiFp = function(configuration?: Configuration)
385
390
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
386
391
  },
387
392
  /**
388
- * Lists all CapitationPlanRate
393
+ * Lists all CapitationPlanRate. Supply optinal query parameter planID to filter by a specific plan.
389
394
  * @summary List CapitationPlanRate
390
395
  * @param {string} vbasoftwareDatabase Target database
396
+ * @param {string} [planID] Plan ID
391
397
  * @param {number} [page] Page
392
398
  * @param {number} [pageSize] Page Size
393
399
  * @param {*} [options] Override http request option.
394
400
  * @throws {RequiredError}
395
401
  */
396
- async listCapitationPlanRate(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CapitationPlanRateListVBAResponse>> {
397
- const localVarAxiosArgs = await localVarAxiosParamCreator.listCapitationPlanRate(vbasoftwareDatabase, page, pageSize, options);
402
+ async listCapitationPlanRate(vbasoftwareDatabase: string, planID?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CapitationPlanRateListVBAResponse>> {
403
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listCapitationPlanRate(vbasoftwareDatabase, planID, page, pageSize, options);
398
404
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
399
405
  },
400
406
  /**
@@ -466,16 +472,17 @@ export const CapitationPlanRatesApiFactory = function (configuration?: Configura
466
472
  return localVarFp.getCapitationPlanRate(vbasoftwareDatabase, capitationPlanRateKey, options).then((request) => request(axios, basePath));
467
473
  },
468
474
  /**
469
- * Lists all CapitationPlanRate
475
+ * Lists all CapitationPlanRate. Supply optinal query parameter planID to filter by a specific plan.
470
476
  * @summary List CapitationPlanRate
471
477
  * @param {string} vbasoftwareDatabase Target database
478
+ * @param {string} [planID] Plan ID
472
479
  * @param {number} [page] Page
473
480
  * @param {number} [pageSize] Page Size
474
481
  * @param {*} [options] Override http request option.
475
482
  * @throws {RequiredError}
476
483
  */
477
- listCapitationPlanRate(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: any): AxiosPromise<CapitationPlanRateListVBAResponse> {
478
- return localVarFp.listCapitationPlanRate(vbasoftwareDatabase, page, pageSize, options).then((request) => request(axios, basePath));
484
+ listCapitationPlanRate(vbasoftwareDatabase: string, planID?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<CapitationPlanRateListVBAResponse> {
485
+ return localVarFp.listCapitationPlanRate(vbasoftwareDatabase, planID, page, pageSize, options).then((request) => request(axios, basePath));
479
486
  },
480
487
  /**
481
488
  * Create or Update multiple CapitationPlanRate at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
@@ -543,16 +550,17 @@ export interface CapitationPlanRatesApiInterface {
543
550
  getCapitationPlanRate(vbasoftwareDatabase: string, capitationPlanRateKey: number, options?: AxiosRequestConfig): AxiosPromise<CapitationPlanRateVBAResponse>;
544
551
 
545
552
  /**
546
- * Lists all CapitationPlanRate
553
+ * Lists all CapitationPlanRate. Supply optinal query parameter planID to filter by a specific plan.
547
554
  * @summary List CapitationPlanRate
548
555
  * @param {string} vbasoftwareDatabase Target database
556
+ * @param {string} [planID] Plan ID
549
557
  * @param {number} [page] Page
550
558
  * @param {number} [pageSize] Page Size
551
559
  * @param {*} [options] Override http request option.
552
560
  * @throws {RequiredError}
553
561
  * @memberof CapitationPlanRatesApiInterface
554
562
  */
555
- listCapitationPlanRate(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<CapitationPlanRateListVBAResponse>;
563
+ listCapitationPlanRate(vbasoftwareDatabase: string, planID?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<CapitationPlanRateListVBAResponse>;
556
564
 
557
565
  /**
558
566
  * Create or Update multiple CapitationPlanRate at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
@@ -626,17 +634,18 @@ export class CapitationPlanRatesApi extends BaseAPI implements CapitationPlanRat
626
634
  }
627
635
 
628
636
  /**
629
- * Lists all CapitationPlanRate
637
+ * Lists all CapitationPlanRate. Supply optinal query parameter planID to filter by a specific plan.
630
638
  * @summary List CapitationPlanRate
631
639
  * @param {string} vbasoftwareDatabase Target database
640
+ * @param {string} [planID] Plan ID
632
641
  * @param {number} [page] Page
633
642
  * @param {number} [pageSize] Page Size
634
643
  * @param {*} [options] Override http request option.
635
644
  * @throws {RequiredError}
636
645
  * @memberof CapitationPlanRatesApi
637
646
  */
638
- public listCapitationPlanRate(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
639
- return CapitationPlanRatesApiFp(this.configuration).listCapitationPlanRate(vbasoftwareDatabase, page, pageSize, options).then((request) => request(this.axios, this.basePath));
647
+ public listCapitationPlanRate(vbasoftwareDatabase: string, planID?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
648
+ return CapitationPlanRatesApiFp(this.configuration).listCapitationPlanRate(vbasoftwareDatabase, planID, page, pageSize, options).then((request) => request(this.axios, this.basePath));
640
649
  }
641
650
 
642
651
  /**
@@ -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
+ }