@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20240120.1 → 1.20240302.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 (42) hide show
  1. package/.openapi-generator/FILES +30 -0
  2. package/api/adv-workflow-api.ts +456 -0
  3. package/api/benefits-api.ts +122 -0
  4. package/api/client-config-api.ts +869 -0
  5. package/api/commission-rates-api.ts +8 -18
  6. package/api/group-ucpercent-criterias-api.ts +677 -0
  7. package/api/process-automation-api.ts +365 -0
  8. package/api/support-api.ts +532 -0
  9. package/api/user-api.ts +0 -96
  10. package/api/vbareports-api.ts +155 -0
  11. package/api.ts +6 -0
  12. package/models/auth.ts +29 -5
  13. package/models/callback-dto.ts +43 -0
  14. package/models/company-data.ts +14 -2
  15. package/models/database-connection.ts +36 -0
  16. package/models/email-report-dto.ts +103 -0
  17. package/models/fax-report-dto.ts +85 -0
  18. package/models/group-ucpercent-criteria-list-vbaresponse.ts +45 -0
  19. package/models/group-ucpercent-criteria-vbaresponse.ts +45 -0
  20. package/models/group-ucpercent-criteria.ts +84 -0
  21. package/models/groups.ts +6 -0
  22. package/models/index.ts +24 -0
  23. package/models/json-node-options.ts +30 -0
  24. package/models/json-node.ts +43 -0
  25. package/models/json-value.ts +44 -0
  26. package/models/report-series-step.ts +6 -0
  27. package/models/smsdto.ts +67 -0
  28. package/models/ssoconfig-list-vbaresponse.ts +45 -0
  29. package/models/ssoconfig-vbaresponse.ts +45 -0
  30. package/models/ssoconfig.ts +84 -0
  31. package/models/users.ts +13 -1
  32. package/models/vbaclient-environment-list-vbaresponse.ts +45 -0
  33. package/models/vbaclient-environment.ts +37 -0
  34. package/models/vbaclient-list-vbaresponse.ts +45 -0
  35. package/models/vbaclient-vbaresponse.ts +45 -0
  36. package/models/vbaclient.ts +55 -0
  37. package/models/vbareport-list-vbaresponse.ts +45 -0
  38. package/models/vbareport.ts +60 -0
  39. package/models/vbassologin-config.ts +42 -0
  40. package/models/workflow-claim.ts +60 -0
  41. package/models/workflow-processing.ts +49 -0
  42. package/package.json +1 -1
@@ -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 { VBAClient } from './vbaclient';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface VBAClientListVBAResponse
24
+ */
25
+ export interface VBAClientListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<VBAClient>}
29
+ * @memberof VBAClientListVBAResponse
30
+ */
31
+ 'data'?: Array<VBAClient> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof VBAClientListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof VBAClientListVBAResponse
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 { VBAClient } from './vbaclient';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface VBAClientVBAResponse
24
+ */
25
+ export interface VBAClientVBAResponse {
26
+ /**
27
+ *
28
+ * @type {VBAClient}
29
+ * @memberof VBAClientVBAResponse
30
+ */
31
+ 'data'?: VBAClient;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof VBAClientVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof VBAClientVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,55 @@
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 { DatabaseConnection } from './database-connection';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface VBAClient
22
+ */
23
+ export interface VBAClient {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof VBAClient
28
+ */
29
+ 'id'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof VBAClient
34
+ */
35
+ 'name'?: string | null;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof VBAClient
40
+ */
41
+ 'clientId'?: string | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof VBAClient
46
+ */
47
+ 'clientCode'?: string | null;
48
+ /**
49
+ *
50
+ * @type {Array<DatabaseConnection>}
51
+ * @memberof VBAClient
52
+ */
53
+ 'databaseConnections'?: Array<DatabaseConnection> | null;
54
+ }
55
+
@@ -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 { VBAProblemDetails } from './vbaproblem-details';
18
+ import { VBAReport } from './vbareport';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface VBAReportListVBAResponse
24
+ */
25
+ export interface VBAReportListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<VBAReport>}
29
+ * @memberof VBAReportListVBAResponse
30
+ */
31
+ 'data'?: Array<VBAReport> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof VBAReportListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof VBAReportListVBAResponse
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 VBAReport
21
+ */
22
+ export interface VBAReport {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof VBAReport
27
+ */
28
+ 'reportDefinition_Key'?: number;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof VBAReport
33
+ */
34
+ 'report_ID'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof VBAReport
39
+ */
40
+ 'report_Name'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof VBAReport
45
+ */
46
+ 'report_Category'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof VBAReport
51
+ */
52
+ 'report_Description'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof VBAReport
57
+ */
58
+ 'embed_Url'?: string | null;
59
+ }
60
+
@@ -0,0 +1,42 @@
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 VBASSOLoginConfig
21
+ */
22
+ export interface VBASSOLoginConfig {
23
+ /**
24
+ * Name of the SSO connection client.
25
+ * @type {string}
26
+ * @memberof VBASSOLoginConfig
27
+ */
28
+ 'name'?: string | null;
29
+ /**
30
+ * Description of this SSO connection.
31
+ * @type {string}
32
+ * @memberof VBASSOLoginConfig
33
+ */
34
+ 'description'?: string | null;
35
+ /**
36
+ * The URL used to login to the client\'s SSO instance
37
+ * @type {string}
38
+ * @memberof VBASSOLoginConfig
39
+ */
40
+ 'login_URL'?: string | null;
41
+ }
42
+
@@ -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 WorkflowClaim
21
+ */
22
+ export interface WorkflowClaim {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof WorkflowClaim
27
+ */
28
+ 'workflow_Key'?: number | null;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof WorkflowClaim
33
+ */
34
+ 'workflowTask_Key'?: number | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof WorkflowClaim
39
+ */
40
+ 'batch_Number'?: number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof WorkflowClaim
45
+ */
46
+ 'batch_Claim'?: number;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof WorkflowClaim
51
+ */
52
+ 'user_ID'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof WorkflowClaim
57
+ */
58
+ 'assign_User_ID'?: string | null;
59
+ }
60
+
@@ -0,0 +1,49 @@
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 { WorkflowClaim } from './workflow-claim';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface WorkflowProcessing
22
+ */
23
+ export interface WorkflowProcessing {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof WorkflowProcessing
28
+ */
29
+ 'current_User_ID'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof WorkflowProcessing
34
+ */
35
+ 'assign_User_ID'?: string | null;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof WorkflowProcessing
40
+ */
41
+ 'message'?: string | null;
42
+ /**
43
+ *
44
+ * @type {Array<WorkflowClaim>}
45
+ * @memberof WorkflowProcessing
46
+ */
47
+ 'workflowClaims'?: Array<WorkflowClaim> | null;
48
+ }
49
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20240120.1",
3
+ "version": "1.20240302.1",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {