@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230518.1 → 1.20230616.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 (54) hide show
  1. package/.openapi-generator/FILES +29 -1
  2. package/api/claim-batch-logs-api.ts +668 -0
  3. package/api/claim-batch-references-api.ts +764 -0
  4. package/api/claim-batches-api.ts +17 -8
  5. package/api/error-category-api.ts +668 -0
  6. package/api/error-category-types-api.ts +725 -0
  7. package/api/error-severity-api.ts +668 -0
  8. package/api/error-type-api.ts +668 -0
  9. package/api/{fee-schedule-anesthesia-api.ts → fee-schedule-anesthesias-api.ts} +94 -133
  10. package/api/fee-schedule-details-api.ts +68 -107
  11. package/api/fee-schedule-modifier-discounts-api.ts +68 -107
  12. package/api/fee-schedule-modifier-excludes-api.ts +68 -107
  13. package/api/fee-schedule-procedure-group-adjustments-api.ts +68 -107
  14. package/api/fee-schedule-provider-type-discounts-api.ts +68 -107
  15. package/api/funding-request-claims-api.ts +8 -26
  16. package/api/member-account-plans-api.ts +10 -10
  17. package/api/payor-accounts-api.ts +105 -0
  18. package/api/reinsurance-contract-transactions-api.ts +97 -0
  19. package/api/user-api.ts +98 -0
  20. package/api.ts +7 -1
  21. package/models/claim-batch-log-list-vbaresponse.ts +45 -0
  22. package/models/claim-batch-log-vbaresponse.ts +45 -0
  23. package/models/claim-batch-log.ts +96 -0
  24. package/models/claim-batch-reference-list-vbaresponse.ts +45 -0
  25. package/models/claim-batch-reference-vbaresponse.ts +45 -0
  26. package/models/claim-batch-reference.ts +84 -0
  27. package/models/company-data.ts +24 -0
  28. package/models/error-category-list-vbaresponse.ts +45 -0
  29. package/models/error-category-type-list-vbaresponse.ts +45 -0
  30. package/models/error-category-type-vbaresponse.ts +45 -0
  31. package/models/error-category-type.ts +78 -0
  32. package/models/error-category-vbaresponse.ts +45 -0
  33. package/models/error-category.ts +60 -0
  34. package/models/error-severity-list-vbaresponse.ts +45 -0
  35. package/models/error-severity-vbaresponse.ts +45 -0
  36. package/models/error-severity.ts +60 -0
  37. package/models/error-type-list-vbaresponse.ts +45 -0
  38. package/models/error-type-vbaresponse.ts +45 -0
  39. package/models/error-type.ts +60 -0
  40. package/models/fee-sched-anesthesia.ts +25 -1
  41. package/models/fee-sched-detail.ts +28 -4
  42. package/models/fee-sched-modifier-discount.ts +27 -3
  43. package/models/fee-sched-modifier-exclude.ts +25 -1
  44. package/models/fee-sched-procedure-group-adjust.ts +30 -6
  45. package/models/fee-sched-provider-type-discount.ts +27 -3
  46. package/models/idcode-value.ts +25 -1
  47. package/models/index.ts +22 -0
  48. package/models/prem-payment-file-format.ts +14 -8
  49. package/models/sub-enrollment-plan.ts +6 -0
  50. package/models/vbafunding-account-claim-info-list-vbaresponse.ts +45 -0
  51. package/models/vbafunding-account-claim-info.ts +276 -0
  52. package/models/vbareins-contract-transaction-summary-list-vbaresponse.ts +45 -0
  53. package/models/vbareins-contract-transaction-summary.ts +108 -0
  54. package/package.json +1 -1
@@ -0,0 +1,108 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface VBAReinsContractTransactionSummary
21
+ */
22
+ export interface VBAReinsContractTransactionSummary {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof VBAReinsContractTransactionSummary
27
+ */
28
+ 'reinsContractTrans_Key'?: number;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof VBAReinsContractTransactionSummary
33
+ */
34
+ 'reinsContract_Key'?: number;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof VBAReinsContractTransactionSummary
39
+ */
40
+ 'description'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof VBAReinsContractTransactionSummary
45
+ */
46
+ 'subscriber_ID'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof VBAReinsContractTransactionSummary
51
+ */
52
+ 'member_Seq'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof VBAReinsContractTransactionSummary
57
+ */
58
+ 'transaction_Type'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof VBAReinsContractTransactionSummary
63
+ */
64
+ 'transaction_Status'?: string | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof VBAReinsContractTransactionSummary
69
+ */
70
+ 'transaction_Claim_Number'?: string | null;
71
+ /**
72
+ *
73
+ * @type {number}
74
+ * @memberof VBAReinsContractTransactionSummary
75
+ */
76
+ 'transaction_Amount'?: number | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof VBAReinsContractTransactionSummary
81
+ */
82
+ 'transaction_Date'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof VBAReinsContractTransactionSummary
87
+ */
88
+ 'submitted_Date'?: string | null;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof VBAReinsContractTransactionSummary
93
+ */
94
+ 'first_Name'?: string | null;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof VBAReinsContractTransactionSummary
99
+ */
100
+ 'last_Name'?: string | null;
101
+ /**
102
+ *
103
+ * @type {boolean}
104
+ * @memberof VBAReinsContractTransactionSummary
105
+ */
106
+ 'initial_Transaction'?: boolean;
107
+ }
108
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20230518.1",
3
+ "version": "1.20230616.1",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {