@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230826.1 → 1.20230830.2

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
@@ -203,6 +203,7 @@ export * from './api/claim-queue-schedule-notify-user-groups-api';
203
203
  export * from './api/claim-queue-schedule-notify-users-api';
204
204
  export * from './api/claim-queue-schedules-api';
205
205
  export * from './api/claim-queue-statuses-api';
206
+ export * from './api/claim-queue-types-api';
206
207
  export * from './api/claim-queues-api';
207
208
  export * from './api/claim-rule-dependents-api';
208
209
  export * from './api/claim-rule-procedures-api';
@@ -715,6 +716,7 @@ export * from './api/report-tracking-received-statuses-api';
715
716
  export * from './api/report-tracking-sent-statuses-api';
716
717
  export * from './api/report-tracking-sent-to-api';
717
718
  export * from './api/report-tracking-statuses-api';
719
+ export * from './api/reviewed-status-api';
718
720
  export * from './api/rounding-precision-api';
719
721
  export * from './api/rounding-types-api';
720
722
  export * from './api/search-config-api';
package/models/index.ts CHANGED
@@ -2022,6 +2022,9 @@ export * from './report-track-status';
2022
2022
  export * from './report-track-status-list-vbaresponse';
2023
2023
  export * from './report-track-status-vbaresponse';
2024
2024
  export * from './report-track-vbaresponse';
2025
+ export * from './reviewed-status';
2026
+ export * from './reviewed-status-list-vbaresponse';
2027
+ export * from './reviewed-status-vbaresponse';
2025
2028
  export * from './search-config';
2026
2029
  export * from './search-config-list-vbaresponse';
2027
2030
  export * from './search-config-vbaresponse';
@@ -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 { ReviewedStatus } from './reviewed-status';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface ReviewedStatusListVBAResponse
24
+ */
25
+ export interface ReviewedStatusListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<ReviewedStatus>}
29
+ * @memberof ReviewedStatusListVBAResponse
30
+ */
31
+ 'data'?: Array<ReviewedStatus> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof ReviewedStatusListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof ReviewedStatusListVBAResponse
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 { ReviewedStatus } from './reviewed-status';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface ReviewedStatusVBAResponse
24
+ */
25
+ export interface ReviewedStatusVBAResponse {
26
+ /**
27
+ *
28
+ * @type {ReviewedStatus}
29
+ * @memberof ReviewedStatusVBAResponse
30
+ */
31
+ 'data'?: ReviewedStatus;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof ReviewedStatusVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof ReviewedStatusVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,60 @@
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 ReviewedStatus
21
+ */
22
+ export interface ReviewedStatus {
23
+ /**
24
+ * Identifier for the claim review status
25
+ * @type {string}
26
+ * @memberof ReviewedStatus
27
+ */
28
+ 'reviewed_Status': string;
29
+ /**
30
+ * Description for the claim review status
31
+ * @type {string}
32
+ * @memberof ReviewedStatus
33
+ */
34
+ 'description'?: string | null;
35
+ /**
36
+ * Date record was first added to the system
37
+ * @type {string}
38
+ * @memberof ReviewedStatus
39
+ */
40
+ 'entry_Date'?: string;
41
+ /**
42
+ * User that first added the record to the system
43
+ * @type {string}
44
+ * @memberof ReviewedStatus
45
+ */
46
+ 'entry_User'?: string | null;
47
+ /**
48
+ * Date the record was last updated in the system
49
+ * @type {string}
50
+ * @memberof ReviewedStatus
51
+ */
52
+ 'update_Date'?: string;
53
+ /**
54
+ * User that last updated the record in the system
55
+ * @type {string}
56
+ * @memberof ReviewedStatus
57
+ */
58
+ 'update_User'?: string | null;
59
+ }
60
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20230826.1",
3
+ "version": "1.20230830.2",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {