@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230928.1 → 1.20230930.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/api.ts CHANGED
@@ -255,6 +255,7 @@ export * from './api/contact-assignments-api';
255
255
  export * from './api/contact-categories-api';
256
256
  export * from './api/contact-emails-api';
257
257
  export * from './api/contact-mappings-api';
258
+ export * from './api/contact-phone-api';
258
259
  export * from './api/contact-statuses-api';
259
260
  export * from './api/contacts-api';
260
261
  export * from './api/context4-health-cost-containment-case-index-api';
@@ -457,6 +458,7 @@ export * from './api/idcard-request-statuses-api';
457
458
  export * from './api/idcode-types-api';
458
459
  export * from './api/idcode-values-api';
459
460
  export * from './api/idtypes-api';
461
+ export * from './api/ipwhitelists-api';
460
462
  export * from './api/insurance-carrier-types-api';
461
463
  export * from './api/insurance-carriers-api';
462
464
  export * from './api/insurance-priorities-api';
@@ -21,73 +21,73 @@
21
21
  */
22
22
  export interface ClaimQueue {
23
23
  /**
24
- *
24
+ * Unique identifer for each claim queue entry. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
25
25
  * @type {number}
26
26
  * @memberof ClaimQueue
27
27
  */
28
28
  'claimQueue_Key': number;
29
29
  /**
30
- *
30
+ * Date when the record was first added to the system.
31
31
  * @type {string}
32
32
  * @memberof ClaimQueue
33
33
  */
34
34
  'entry_Date'?: string;
35
35
  /**
36
- *
36
+ * User that first added the record to the system.
37
37
  * @type {string}
38
38
  * @memberof ClaimQueue
39
39
  */
40
40
  'entry_User'?: string | null;
41
41
  /**
42
- *
42
+ * The date this queue was created.
43
43
  * @type {string}
44
44
  * @memberof ClaimQueue
45
45
  */
46
46
  'queue_Date'?: string | null;
47
47
  /**
48
- *
48
+ * This notes the end adjudication time of the last claim in this queue.
49
49
  * @type {string}
50
50
  * @memberof ClaimQueue
51
51
  */
52
52
  'queue_End'?: string | null;
53
53
  /**
54
- *
54
+ * A priority identifying when a claim is picked up from the processor queue.
55
55
  * @type {number}
56
56
  * @memberof ClaimQueue
57
57
  */
58
58
  'queue_Priority'?: number | null;
59
59
  /**
60
- *
60
+ * This notes the time the first claim in this queue is picked up.
61
61
  * @type {string}
62
62
  * @memberof ClaimQueue
63
63
  */
64
64
  'queue_Start'?: string | null;
65
65
  /**
66
- *
66
+ * The status of the queue: QUEUED - the claims are actively being worked, or COMPLETE - all claims have completed their processing.
67
67
  * @type {string}
68
68
  * @memberof ClaimQueue
69
69
  */
70
70
  'queue_Status'?: string | null;
71
71
  /**
72
- *
72
+ * The type of queue being created: CHECK - adjudicate the claims or PROCESS - process the claims.
73
73
  * @type {string}
74
74
  * @memberof ClaimQueue
75
75
  */
76
76
  'queue_Type'?: string | null;
77
77
  /**
78
- *
78
+ * The user who created this queue.
79
79
  * @type {string}
80
80
  * @memberof ClaimQueue
81
81
  */
82
82
  'queue_User'?: string | null;
83
83
  /**
84
- *
84
+ * Date when the record was last updated in the system.
85
85
  * @type {string}
86
86
  * @memberof ClaimQueue
87
87
  */
88
88
  'update_Date'?: string;
89
89
  /**
90
- *
90
+ * User that last updated the record in the system.
91
91
  * @type {string}
92
92
  * @memberof ClaimQueue
93
93
  */
@@ -2348,6 +2348,12 @@ export interface CompanyData {
2348
2348
  * @memberof CompanyData
2349
2349
  */
2350
2350
  'vbapI_Client_Code'?: string | null;
2351
+ /**
2352
+ * Indicates if the client has IP Whitelisting enabled for accessing APIs. If enabled, IP Addresses will be added to the IPWhitelist table. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2353
+ * @type {boolean}
2354
+ * @memberof CompanyData
2355
+ */
2356
+ 'vbapI_IP_Whitelist': boolean;
2351
2357
  /**
2352
2358
  * Timer for kicking off VBA Report to see if an Event is ready to be Processed
2353
2359
  * @type {number}
@@ -0,0 +1,45 @@
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 { ContactPhone } from './contact-phone';
17
+ import { Debug } from './debug';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface ContactPhoneListVBAResponse
24
+ */
25
+ export interface ContactPhoneListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<ContactPhone>}
29
+ * @memberof ContactPhoneListVBAResponse
30
+ */
31
+ 'data'?: Array<ContactPhone> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof ContactPhoneListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof ContactPhoneListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,45 @@
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 { ContactPhone } from './contact-phone';
17
+ import { Debug } from './debug';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface ContactPhoneVBAResponse
24
+ */
25
+ export interface ContactPhoneVBAResponse {
26
+ /**
27
+ *
28
+ * @type {ContactPhone}
29
+ * @memberof ContactPhoneVBAResponse
30
+ */
31
+ 'data'?: ContactPhone;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof ContactPhoneVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof ContactPhoneVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,78 @@
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 ContactPhone
21
+ */
22
+ export interface ContactPhone {
23
+ /**
24
+ * ID of the contact phone number. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
25
+ * @type {number}
26
+ * @memberof ContactPhone
27
+ */
28
+ 'contactPhone_Key': number;
29
+ /**
30
+ * ID of the contact. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
31
+ * @type {number}
32
+ * @memberof ContactPhone
33
+ */
34
+ 'contact_Key': number;
35
+ /**
36
+ * Date record was first added to the system
37
+ * @type {string}
38
+ * @memberof ContactPhone
39
+ */
40
+ 'entry_Date'?: string;
41
+ /**
42
+ * User that first added the record to the system
43
+ * @type {string}
44
+ * @memberof ContactPhone
45
+ */
46
+ 'entry_User'?: string | null;
47
+ /**
48
+ * Country code of the contact\'s phone number.
49
+ * @type {string}
50
+ * @memberof ContactPhone
51
+ */
52
+ 'phone_Country_Code'?: string | null;
53
+ /**
54
+ * Phone number of the contact.
55
+ * @type {string}
56
+ * @memberof ContactPhone
57
+ */
58
+ 'phone_Number'?: string | null;
59
+ /**
60
+ * Identifies the type of phone number.
61
+ * @type {string}
62
+ * @memberof ContactPhone
63
+ */
64
+ 'phone_Type': string;
65
+ /**
66
+ * Date the record was last updated in the system
67
+ * @type {string}
68
+ * @memberof ContactPhone
69
+ */
70
+ 'update_Date'?: string;
71
+ /**
72
+ * User that last updated the record in the system
73
+ * @type {string}
74
+ * @memberof ContactPhone
75
+ */
76
+ 'update_User'?: string | null;
77
+ }
78
+
@@ -32,6 +32,12 @@ export interface CopyGroupDivision {
32
32
  * @memberof CopyGroupDivision
33
33
  */
34
34
  'sourceDivisionID'?: string | null;
35
+ /**
36
+ * The Destination Group ID
37
+ * @type {string}
38
+ * @memberof CopyGroupDivision
39
+ */
40
+ 'destinationGroupID'?: string | null;
35
41
  /**
36
42
  * Name of the new divion
37
43
  * @type {string}
package/models/index.ts CHANGED
@@ -689,6 +689,9 @@ export * from './contact-list-vbaresponse';
689
689
  export * from './contact-mapping';
690
690
  export * from './contact-mapping-list-vbaresponse';
691
691
  export * from './contact-mapping-vbaresponse';
692
+ export * from './contact-phone';
693
+ export * from './contact-phone-list-vbaresponse';
694
+ export * from './contact-phone-vbaresponse';
692
695
  export * from './contact-status';
693
696
  export * from './contact-status-list-vbaresponse';
694
697
  export * from './contact-status-vbaresponse';
@@ -1260,6 +1263,9 @@ export * from './idcode-value-vbaresponse';
1260
1263
  export * from './idtype';
1261
1264
  export * from './idtype-list-vbaresponse';
1262
1265
  export * from './idtype-vbaresponse';
1266
+ export * from './ipwhitelist';
1267
+ export * from './ipwhitelist-list-vbaresponse';
1268
+ export * from './ipwhitelist-vbaresponse';
1263
1269
  export * from './irs1094-c';
1264
1270
  export * from './irs1094-clist-vbaresponse';
1265
1271
  export * from './irs1094-cvbaresponse';
@@ -0,0 +1,45 @@
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 { Debug } from './debug';
17
+ import { IPWhitelist } from './ipwhitelist';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface IPWhitelistListVBAResponse
24
+ */
25
+ export interface IPWhitelistListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<IPWhitelist>}
29
+ * @memberof IPWhitelistListVBAResponse
30
+ */
31
+ 'data'?: Array<IPWhitelist> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof IPWhitelistListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof IPWhitelistListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,45 @@
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 { Debug } from './debug';
17
+ import { IPWhitelist } from './ipwhitelist';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface IPWhitelistVBAResponse
24
+ */
25
+ export interface IPWhitelistVBAResponse {
26
+ /**
27
+ *
28
+ * @type {IPWhitelist}
29
+ * @memberof IPWhitelistVBAResponse
30
+ */
31
+ 'data'?: IPWhitelist;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof IPWhitelistVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof IPWhitelistVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,66 @@
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 IPWhitelist
21
+ */
22
+ export interface IPWhitelist {
23
+ /**
24
+ * Identity key for the record. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
25
+ * @type {number}
26
+ * @memberof IPWhitelist
27
+ */
28
+ 'ipWhitelist_Key': number;
29
+ /**
30
+ * User-defined description for the record to help identify the reason for usage.
31
+ * @type {string}
32
+ * @memberof IPWhitelist
33
+ */
34
+ 'description': string;
35
+ /**
36
+ * Date when the record was first added to the system.
37
+ * @type {string}
38
+ * @memberof IPWhitelist
39
+ */
40
+ 'entry_Date'?: string;
41
+ /**
42
+ * User that first added the record to the system.
43
+ * @type {string}
44
+ * @memberof IPWhitelist
45
+ */
46
+ 'entry_User'?: string | null;
47
+ /**
48
+ * IP Address that will be whitelisted for accessing the APIs. Supports IPv4 or IPv6 values. This value must be unique.
49
+ * @type {string}
50
+ * @memberof IPWhitelist
51
+ */
52
+ 'iP_Address': string;
53
+ /**
54
+ * Date when the record was last updated in the system.
55
+ * @type {string}
56
+ * @memberof IPWhitelist
57
+ */
58
+ 'update_Date'?: string;
59
+ /**
60
+ * User that last updated the record in the system.
61
+ * @type {string}
62
+ * @memberof IPWhitelist
63
+ */
64
+ 'update_User'?: string | null;
65
+ }
66
+
@@ -26,6 +26,12 @@ export interface PremInvoice {
26
26
  * @memberof PremInvoice
27
27
  */
28
28
  'invoice_Key': number;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PremInvoice
33
+ */
34
+ 'additional_Invoice_Level'?: string | null;
29
35
  /**
30
36
  * Address of the group or individual the Invoice is for
31
37
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20230928.1",
3
+ "version": "1.20230930.1",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {