@rasadov/lumoar-sdk 1.0.4 → 1.0.5

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/dist/sdk.d.ts CHANGED
@@ -1,9 +1,10 @@
1
- import { HealthApi, AuthApi, CompanyApi, ControlsApi, EvidenceApi, PaymentsApi, PoliciesApi, RolesApi, UserApi } from './api';
1
+ import { HealthApi, AuthApi, CompanyApi, ControlsApi, AuditLogsApi, EvidenceApi, PaymentsApi, PoliciesApi, RolesApi, UserApi } from './api';
2
2
  export declare class ApiSDK {
3
3
  private helthApi;
4
4
  private authApi;
5
5
  private companyApi;
6
6
  private controlsApi;
7
+ private auditLogsApi;
7
8
  private evidenceApi;
8
9
  private paymentsApi;
9
10
  private policiesApi;
@@ -20,6 +21,7 @@ export declare class ApiSDK {
20
21
  authApi: AuthApi;
21
22
  companyApi: CompanyApi;
22
23
  controlsApi: ControlsApi;
24
+ auditLogsApi: AuditLogsApi;
23
25
  evidenceApi: EvidenceApi;
24
26
  paymentsApi: PaymentsApi;
25
27
  policiesApi: PoliciesApi;
package/dist/sdk.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import axios from 'axios';
2
- import { HealthApi, AuthApi, CompanyApi, ControlsApi, EvidenceApi, PaymentsApi, PoliciesApi, RolesApi, UserApi } from './api';
2
+ import { HealthApi, AuthApi, CompanyApi, ControlsApi, AuditLogsApi, EvidenceApi, PaymentsApi, PoliciesApi, RolesApi, UserApi } from './api';
3
3
  import { Configuration } from './configuration';
4
4
  export class ApiSDK {
5
5
  constructor(basePath) {
@@ -20,6 +20,7 @@ export class ApiSDK {
20
20
  this.authApi = new AuthApi(config, undefined, this.axiosInstance);
21
21
  this.companyApi = new CompanyApi(config, undefined, this.axiosInstance);
22
22
  this.controlsApi = new ControlsApi(config, undefined, this.axiosInstance);
23
+ this.auditLogsApi = new AuditLogsApi(config, undefined, this.axiosInstance);
23
24
  this.evidenceApi = new EvidenceApi(config, undefined, this.axiosInstance);
24
25
  this.paymentsApi = new PaymentsApi(config, undefined, this.axiosInstance);
25
26
  this.policiesApi = new PoliciesApi(config, undefined, this.axiosInstance);
@@ -63,6 +64,7 @@ export class ApiSDK {
63
64
  authApi: this.authApi,
64
65
  companyApi: this.companyApi,
65
66
  controlsApi: this.controlsApi,
67
+ auditLogsApi: this.auditLogsApi,
66
68
  evidenceApi: this.evidenceApi,
67
69
  paymentsApi: this.paymentsApi,
68
70
  policiesApi: this.policiesApi,
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "openapi-generator-cli": "^1.0.0"
5
5
  },
6
6
  "name": "@rasadov/lumoar-sdk",
7
- "version": "1.0.4",
7
+ "version": "1.0.5",
8
8
  "description": "Lumoar API SDK",
9
9
  "main": "dist/index.js",
10
10
  "directories": {
package/sdk.ts CHANGED
@@ -1,9 +1,10 @@
1
1
  import axios, { AxiosInstance, AxiosResponse } from 'axios';
2
2
  import {
3
- HealthApi,
3
+ HealthApi,
4
4
  AuthApi,
5
5
  CompanyApi,
6
6
  ControlsApi,
7
+ AuditLogsApi,
7
8
  EvidenceApi,
8
9
  PaymentsApi,
9
10
  PoliciesApi,
@@ -17,6 +18,7 @@ export class ApiSDK {
17
18
  private authApi: AuthApi;
18
19
  private companyApi: CompanyApi;
19
20
  private controlsApi: ControlsApi;
21
+ private auditLogsApi: AuditLogsApi;
20
22
  private evidenceApi: EvidenceApi;
21
23
  private paymentsApi: PaymentsApi;
22
24
  private policiesApi: PoliciesApi;
@@ -43,6 +45,7 @@ export class ApiSDK {
43
45
  this.authApi = new AuthApi(config, undefined, this.axiosInstance);
44
46
  this.companyApi = new CompanyApi(config, undefined, this.axiosInstance);
45
47
  this.controlsApi = new ControlsApi(config, undefined, this.axiosInstance);
48
+ this.auditLogsApi = new AuditLogsApi(config, undefined, this.axiosInstance);
46
49
  this.evidenceApi = new EvidenceApi(config, undefined, this.axiosInstance);
47
50
  this.paymentsApi = new PaymentsApi(config, undefined, this.axiosInstance);
48
51
  this.policiesApi = new PoliciesApi(config, undefined, this.axiosInstance);
@@ -88,6 +91,7 @@ export class ApiSDK {
88
91
  authApi: this.authApi,
89
92
  companyApi: this.companyApi,
90
93
  controlsApi: this.controlsApi,
94
+ auditLogsApi: this.auditLogsApi,
91
95
  evidenceApi: this.evidenceApi,
92
96
  paymentsApi: this.paymentsApi,
93
97
  policiesApi: this.policiesApi,