@digital8/security-registers-backend-ts-sdk 0.0.727 → 0.0.728
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/.openapi-generator/FILES +4 -3
- package/README.md +2 -2
- package/dist/apis/GeneralApi.d.ts +14 -3
- package/dist/apis/GeneralApi.js +56 -1
- package/dist/models/IncidentVideoListResource.d.ts +63 -0
- package/dist/models/{RecentVideoListResource.js → IncidentVideoListResource.js} +13 -13
- package/dist/models/IncidentVideoListResourceArrayResponse.d.ts +33 -0
- package/dist/models/IncidentVideoListResourceArrayResponse.js +50 -0
- package/dist/models/PaginatedIncidentVideoListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedIncidentVideoListResourceResponse.js +57 -0
- package/dist/models/StoreUserRequest.d.ts +50 -0
- package/dist/models/StoreUserRequest.js +61 -0
- package/dist/models/index.d.ts +4 -3
- package/dist/models/index.js +4 -3
- package/package.json +1 -1
- package/src/apis/GeneralApi.ts +53 -6
- package/src/models/{RecentVideoListResource.ts → IncidentVideoListResource.ts} +16 -16
- package/src/models/IncidentVideoListResourceArrayResponse.ts +73 -0
- package/src/models/PaginatedIncidentVideoListResourceResponse.ts +90 -0
- package/src/models/StoreUserRequest.ts +92 -0
- package/src/models/index.ts +4 -3
- package/dist/models/PaginatedRecentVideoListResourceResponse.d.ts +0 -40
- package/dist/models/PaginatedRecentVideoListResourceResponse.js +0 -57
- package/dist/models/RecentVideoListResource.d.ts +0 -63
- package/dist/models/RecentVideoListResourceArrayResponse.d.ts +0 -33
- package/dist/models/RecentVideoListResourceArrayResponse.js +0 -50
- package/src/models/PaginatedRecentVideoListResourceResponse.ts +0 -90
- package/src/models/RecentVideoListResourceArrayResponse.ts +0 -73
package/dist/models/index.js
CHANGED
|
@@ -64,6 +64,8 @@ __exportStar(require("./IncidentResourceArrayResponse"), exports);
|
|
|
64
64
|
__exportStar(require("./IncidentSchemaType"), exports);
|
|
65
65
|
__exportStar(require("./IncidentVersionResource"), exports);
|
|
66
66
|
__exportStar(require("./IncidentVersionResourceArrayResponse"), exports);
|
|
67
|
+
__exportStar(require("./IncidentVideoListResource"), exports);
|
|
68
|
+
__exportStar(require("./IncidentVideoListResourceArrayResponse"), exports);
|
|
67
69
|
__exportStar(require("./IncidentVideoResource"), exports);
|
|
68
70
|
__exportStar(require("./IncidentVideoResourceArrayResponse"), exports);
|
|
69
71
|
__exportStar(require("./IncidentVideoSignedUrlResource"), exports);
|
|
@@ -121,10 +123,10 @@ __exportStar(require("./NotificationType"), exports);
|
|
|
121
123
|
__exportStar(require("./NotificationTypeResource"), exports);
|
|
122
124
|
__exportStar(require("./NotificationTypeResourceArrayResponse"), exports);
|
|
123
125
|
__exportStar(require("./PaginatedIncidentListResourceResponse"), exports);
|
|
126
|
+
__exportStar(require("./PaginatedIncidentVideoListResourceResponse"), exports);
|
|
124
127
|
__exportStar(require("./PaginatedLicenceCheckLogResourceResponse"), exports);
|
|
125
128
|
__exportStar(require("./PaginatedLicenceListResourceResponse"), exports);
|
|
126
129
|
__exportStar(require("./PaginatedLicenceResourceResponse"), exports);
|
|
127
|
-
__exportStar(require("./PaginatedRecentVideoListResourceResponse"), exports);
|
|
128
130
|
__exportStar(require("./PaginatedRegisterGroupedByRosterResourceResponse"), exports);
|
|
129
131
|
__exportStar(require("./PaginatedRegisterListResourceResponse"), exports);
|
|
130
132
|
__exportStar(require("./PaginatedRegisterResourceResponse"), exports);
|
|
@@ -140,8 +142,6 @@ __exportStar(require("./PdfExportKind"), exports);
|
|
|
140
142
|
__exportStar(require("./PdfExportResource"), exports);
|
|
141
143
|
__exportStar(require("./PdfExportResourceArrayResponse"), exports);
|
|
142
144
|
__exportStar(require("./PdfExportStatus"), exports);
|
|
143
|
-
__exportStar(require("./RecentVideoListResource"), exports);
|
|
144
|
-
__exportStar(require("./RecentVideoListResourceArrayResponse"), exports);
|
|
145
145
|
__exportStar(require("./RecordSource"), exports);
|
|
146
146
|
__exportStar(require("./RegisterGroupedByRosterResource"), exports);
|
|
147
147
|
__exportStar(require("./RegisterGroupedByRosterResourceArrayResponse"), exports);
|
|
@@ -182,6 +182,7 @@ __exportStar(require("./SecurityCompanyResource"), exports);
|
|
|
182
182
|
__exportStar(require("./SecurityCompanyResourceArrayResponse"), exports);
|
|
183
183
|
__exportStar(require("./SettingsLicenceVerificationFallbackUpdateRequest"), exports);
|
|
184
184
|
__exportStar(require("./SignOffStatus"), exports);
|
|
185
|
+
__exportStar(require("./StoreUserRequest"), exports);
|
|
185
186
|
__exportStar(require("./UserAuthTokenResource"), exports);
|
|
186
187
|
__exportStar(require("./UserAuthTokenResourceArrayResponse"), exports);
|
|
187
188
|
__exportStar(require("./UserLiteResource"), exports);
|
package/package.json
CHANGED
package/src/apis/GeneralApi.ts
CHANGED
|
@@ -67,9 +67,9 @@ import type {
|
|
|
67
67
|
NotificationPreferencesStoreRequest,
|
|
68
68
|
NotificationTypeResourceArrayResponse,
|
|
69
69
|
PaginatedIncidentListResourceResponse,
|
|
70
|
+
PaginatedIncidentVideoListResourceResponse,
|
|
70
71
|
PaginatedLicenceCheckLogResourceResponse,
|
|
71
72
|
PaginatedLicenceListResourceResponse,
|
|
72
|
-
PaginatedRecentVideoListResourceResponse,
|
|
73
73
|
PaginatedRegisterGroupedByRosterResourceResponse,
|
|
74
74
|
PaginatedRosterListResourceResponse,
|
|
75
75
|
PaginatedRosterWithRegistersResourceResponse,
|
|
@@ -100,6 +100,7 @@ import type {
|
|
|
100
100
|
SecurityCompanyLiteResourceArrayResponse,
|
|
101
101
|
SecurityCompanyResource,
|
|
102
102
|
SettingsLicenceVerificationFallbackUpdateRequest,
|
|
103
|
+
StoreUserRequest,
|
|
103
104
|
UserAuthTokenResource,
|
|
104
105
|
UserLiteResourceArrayResponse,
|
|
105
106
|
UserResource,
|
|
@@ -232,12 +233,12 @@ import {
|
|
|
232
233
|
NotificationTypeResourceArrayResponseToJSON,
|
|
233
234
|
PaginatedIncidentListResourceResponseFromJSON,
|
|
234
235
|
PaginatedIncidentListResourceResponseToJSON,
|
|
236
|
+
PaginatedIncidentVideoListResourceResponseFromJSON,
|
|
237
|
+
PaginatedIncidentVideoListResourceResponseToJSON,
|
|
235
238
|
PaginatedLicenceCheckLogResourceResponseFromJSON,
|
|
236
239
|
PaginatedLicenceCheckLogResourceResponseToJSON,
|
|
237
240
|
PaginatedLicenceListResourceResponseFromJSON,
|
|
238
241
|
PaginatedLicenceListResourceResponseToJSON,
|
|
239
|
-
PaginatedRecentVideoListResourceResponseFromJSON,
|
|
240
|
-
PaginatedRecentVideoListResourceResponseToJSON,
|
|
241
242
|
PaginatedRegisterGroupedByRosterResourceResponseFromJSON,
|
|
242
243
|
PaginatedRegisterGroupedByRosterResourceResponseToJSON,
|
|
243
244
|
PaginatedRosterListResourceResponseFromJSON,
|
|
@@ -298,6 +299,8 @@ import {
|
|
|
298
299
|
SecurityCompanyResourceToJSON,
|
|
299
300
|
SettingsLicenceVerificationFallbackUpdateRequestFromJSON,
|
|
300
301
|
SettingsLicenceVerificationFallbackUpdateRequestToJSON,
|
|
302
|
+
StoreUserRequestFromJSON,
|
|
303
|
+
StoreUserRequestToJSON,
|
|
301
304
|
UserAuthTokenResourceFromJSON,
|
|
302
305
|
UserAuthTokenResourceToJSON,
|
|
303
306
|
UserLiteResourceArrayResponseFromJSON,
|
|
@@ -670,6 +673,10 @@ export interface SettingsLicenceVerificationFallbackUpdateOperationRequest {
|
|
|
670
673
|
settingsLicenceVerificationFallbackUpdateRequest?: SettingsLicenceVerificationFallbackUpdateRequest;
|
|
671
674
|
}
|
|
672
675
|
|
|
676
|
+
export interface StoreUserOperationRequest {
|
|
677
|
+
storeUserRequest?: StoreUserRequest;
|
|
678
|
+
}
|
|
679
|
+
|
|
673
680
|
export interface UsersAttachSecurityCompaniesOperationRequest {
|
|
674
681
|
user: number;
|
|
675
682
|
usersAttachSecurityCompaniesRequest?: UsersAttachSecurityCompaniesRequest;
|
|
@@ -1372,7 +1379,7 @@ export class GeneralApi extends runtime.BaseAPI {
|
|
|
1372
1379
|
/**
|
|
1373
1380
|
* Auto-generated: incidentVideos.recent
|
|
1374
1381
|
*/
|
|
1375
|
-
async incidentVideosRecentRaw(requestParameters: IncidentVideosRecentOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
1382
|
+
async incidentVideosRecentRaw(requestParameters: IncidentVideosRecentOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedIncidentVideoListResourceResponse>> {
|
|
1376
1383
|
const queryParameters: any = {};
|
|
1377
1384
|
|
|
1378
1385
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
@@ -1398,13 +1405,13 @@ export class GeneralApi extends runtime.BaseAPI {
|
|
|
1398
1405
|
body: IncidentVideosRecentRequestToJSON(requestParameters['incidentVideosRecentRequest']),
|
|
1399
1406
|
}, initOverrides);
|
|
1400
1407
|
|
|
1401
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
1408
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => PaginatedIncidentVideoListResourceResponseFromJSON(jsonValue));
|
|
1402
1409
|
}
|
|
1403
1410
|
|
|
1404
1411
|
/**
|
|
1405
1412
|
* Auto-generated: incidentVideos.recent
|
|
1406
1413
|
*/
|
|
1407
|
-
async incidentVideosRecent(requestParameters: IncidentVideosRecentOperationRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
1414
|
+
async incidentVideosRecent(requestParameters: IncidentVideosRecentOperationRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedIncidentVideoListResourceResponse> {
|
|
1408
1415
|
const response = await this.incidentVideosRecentRaw(requestParameters, initOverrides);
|
|
1409
1416
|
return await response.value();
|
|
1410
1417
|
}
|
|
@@ -4296,6 +4303,46 @@ export class GeneralApi extends runtime.BaseAPI {
|
|
|
4296
4303
|
return await response.value();
|
|
4297
4304
|
}
|
|
4298
4305
|
|
|
4306
|
+
/**
|
|
4307
|
+
* Auto-generated: storeUser
|
|
4308
|
+
*/
|
|
4309
|
+
async storeUserRaw(requestParameters: StoreUserOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UserResource>> {
|
|
4310
|
+
const queryParameters: any = {};
|
|
4311
|
+
|
|
4312
|
+
const headerParameters: runtime.HTTPHeaders = {};
|
|
4313
|
+
|
|
4314
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
4315
|
+
|
|
4316
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
4317
|
+
const token = this.configuration.accessToken;
|
|
4318
|
+
const tokenString = await token("bearerAuth", []);
|
|
4319
|
+
|
|
4320
|
+
if (tokenString) {
|
|
4321
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
4322
|
+
}
|
|
4323
|
+
}
|
|
4324
|
+
|
|
4325
|
+
let urlPath = `/api/auth/register`;
|
|
4326
|
+
|
|
4327
|
+
const response = await this.request({
|
|
4328
|
+
path: urlPath,
|
|
4329
|
+
method: 'POST',
|
|
4330
|
+
headers: headerParameters,
|
|
4331
|
+
query: queryParameters,
|
|
4332
|
+
body: StoreUserRequestToJSON(requestParameters['storeUserRequest']),
|
|
4333
|
+
}, initOverrides);
|
|
4334
|
+
|
|
4335
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => UserResourceFromJSON(jsonValue));
|
|
4336
|
+
}
|
|
4337
|
+
|
|
4338
|
+
/**
|
|
4339
|
+
* Auto-generated: storeUser
|
|
4340
|
+
*/
|
|
4341
|
+
async storeUser(requestParameters: StoreUserOperationRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserResource> {
|
|
4342
|
+
const response = await this.storeUserRaw(requestParameters, initOverrides);
|
|
4343
|
+
return await response.value();
|
|
4344
|
+
}
|
|
4345
|
+
|
|
4299
4346
|
/**
|
|
4300
4347
|
* Auto-generated: users.attachSecurityCompanies
|
|
4301
4348
|
*/
|
|
@@ -24,62 +24,62 @@ import {
|
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @export
|
|
27
|
-
* @interface
|
|
27
|
+
* @interface IncidentVideoListResource
|
|
28
28
|
*/
|
|
29
|
-
export interface
|
|
29
|
+
export interface IncidentVideoListResource {
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @type {number}
|
|
33
|
-
* @memberof
|
|
33
|
+
* @memberof IncidentVideoListResource
|
|
34
34
|
*/
|
|
35
35
|
id?: number | null;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
38
|
* @type {number}
|
|
39
|
-
* @memberof
|
|
39
|
+
* @memberof IncidentVideoListResource
|
|
40
40
|
*/
|
|
41
41
|
incidentId?: number | null;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
44
|
* @type {VenueLiteResource}
|
|
45
|
-
* @memberof
|
|
45
|
+
* @memberof IncidentVideoListResource
|
|
46
46
|
*/
|
|
47
47
|
venue: VenueLiteResource | null;
|
|
48
48
|
/**
|
|
49
49
|
*
|
|
50
50
|
* @type {string}
|
|
51
|
-
* @memberof
|
|
51
|
+
* @memberof IncidentVideoListResource
|
|
52
52
|
*/
|
|
53
53
|
originalFilename: string;
|
|
54
54
|
/**
|
|
55
55
|
*
|
|
56
56
|
* @type {number}
|
|
57
|
-
* @memberof
|
|
57
|
+
* @memberof IncidentVideoListResource
|
|
58
58
|
*/
|
|
59
59
|
sizeBytes: number;
|
|
60
60
|
/**
|
|
61
61
|
*
|
|
62
62
|
* @type {Date}
|
|
63
|
-
* @memberof
|
|
63
|
+
* @memberof IncidentVideoListResource
|
|
64
64
|
*/
|
|
65
65
|
createdAt?: Date | null;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
/**
|
|
69
|
-
* Check if a given object implements the
|
|
69
|
+
* Check if a given object implements the IncidentVideoListResource interface.
|
|
70
70
|
*/
|
|
71
|
-
export function
|
|
71
|
+
export function instanceOfIncidentVideoListResource(value: object): value is IncidentVideoListResource {
|
|
72
72
|
if (!('venue' in value) || value['venue'] === undefined) return false;
|
|
73
73
|
if (!('originalFilename' in value) || value['originalFilename'] === undefined) return false;
|
|
74
74
|
if (!('sizeBytes' in value) || value['sizeBytes'] === undefined) return false;
|
|
75
75
|
return true;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
export function
|
|
79
|
-
return
|
|
78
|
+
export function IncidentVideoListResourceFromJSON(json: any): IncidentVideoListResource {
|
|
79
|
+
return IncidentVideoListResourceFromJSONTyped(json, false);
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
export function
|
|
82
|
+
export function IncidentVideoListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): IncidentVideoListResource {
|
|
83
83
|
if (json == null) {
|
|
84
84
|
return json;
|
|
85
85
|
}
|
|
@@ -94,11 +94,11 @@ export function RecentVideoListResourceFromJSONTyped(json: any, ignoreDiscrimina
|
|
|
94
94
|
};
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
export function
|
|
98
|
-
return
|
|
97
|
+
export function IncidentVideoListResourceToJSON(json: any): IncidentVideoListResource {
|
|
98
|
+
return IncidentVideoListResourceToJSONTyped(json, false);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
export function
|
|
101
|
+
export function IncidentVideoListResourceToJSONTyped(value?: IncidentVideoListResource | null, ignoreDiscriminator: boolean = false): any {
|
|
102
102
|
if (value == null) {
|
|
103
103
|
return value;
|
|
104
104
|
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Security Registers API
|
|
5
|
+
* API for the Security Registers compliance platform: guard rosters, sign-on/off registers, incidents, and licence verification.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
import type { IncidentVideoListResource } from './IncidentVideoListResource';
|
|
17
|
+
import {
|
|
18
|
+
IncidentVideoListResourceFromJSON,
|
|
19
|
+
IncidentVideoListResourceFromJSONTyped,
|
|
20
|
+
IncidentVideoListResourceToJSON,
|
|
21
|
+
IncidentVideoListResourceToJSONTyped,
|
|
22
|
+
} from './IncidentVideoListResource';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface IncidentVideoListResourceArrayResponse
|
|
28
|
+
*/
|
|
29
|
+
export interface IncidentVideoListResourceArrayResponse {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Array<IncidentVideoListResource>}
|
|
33
|
+
* @memberof IncidentVideoListResourceArrayResponse
|
|
34
|
+
*/
|
|
35
|
+
data?: Array<IncidentVideoListResource>;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the IncidentVideoListResourceArrayResponse interface.
|
|
40
|
+
*/
|
|
41
|
+
export function instanceOfIncidentVideoListResourceArrayResponse(value: object): value is IncidentVideoListResourceArrayResponse {
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function IncidentVideoListResourceArrayResponseFromJSON(json: any): IncidentVideoListResourceArrayResponse {
|
|
46
|
+
return IncidentVideoListResourceArrayResponseFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function IncidentVideoListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IncidentVideoListResourceArrayResponse {
|
|
50
|
+
if (json == null) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(IncidentVideoListResourceFromJSON)),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export function IncidentVideoListResourceArrayResponseToJSON(json: any): IncidentVideoListResourceArrayResponse {
|
|
60
|
+
return IncidentVideoListResourceArrayResponseToJSONTyped(json, false);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function IncidentVideoListResourceArrayResponseToJSONTyped(value?: IncidentVideoListResourceArrayResponse | null, ignoreDiscriminator: boolean = false): any {
|
|
64
|
+
if (value == null) {
|
|
65
|
+
return value;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
return {
|
|
69
|
+
|
|
70
|
+
'data': value['data'] == null ? undefined : ((value['data'] as Array<any>).map(IncidentVideoListResourceToJSON)),
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Security Registers API
|
|
5
|
+
* API for the Security Registers compliance platform: guard rosters, sign-on/off registers, incidents, and licence verification.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
import type { PagingMetadata } from './PagingMetadata';
|
|
17
|
+
import {
|
|
18
|
+
PagingMetadataFromJSON,
|
|
19
|
+
PagingMetadataFromJSONTyped,
|
|
20
|
+
PagingMetadataToJSON,
|
|
21
|
+
PagingMetadataToJSONTyped,
|
|
22
|
+
} from './PagingMetadata';
|
|
23
|
+
import type { IncidentVideoListResource } from './IncidentVideoListResource';
|
|
24
|
+
import {
|
|
25
|
+
IncidentVideoListResourceFromJSON,
|
|
26
|
+
IncidentVideoListResourceFromJSONTyped,
|
|
27
|
+
IncidentVideoListResourceToJSON,
|
|
28
|
+
IncidentVideoListResourceToJSONTyped,
|
|
29
|
+
} from './IncidentVideoListResource';
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @export
|
|
34
|
+
* @interface PaginatedIncidentVideoListResourceResponse
|
|
35
|
+
*/
|
|
36
|
+
export interface PaginatedIncidentVideoListResourceResponse {
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {Array<IncidentVideoListResource>}
|
|
40
|
+
* @memberof PaginatedIncidentVideoListResourceResponse
|
|
41
|
+
*/
|
|
42
|
+
data: Array<IncidentVideoListResource>;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {PagingMetadata}
|
|
46
|
+
* @memberof PaginatedIncidentVideoListResourceResponse
|
|
47
|
+
*/
|
|
48
|
+
meta: PagingMetadata;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Check if a given object implements the PaginatedIncidentVideoListResourceResponse interface.
|
|
53
|
+
*/
|
|
54
|
+
export function instanceOfPaginatedIncidentVideoListResourceResponse(value: object): value is PaginatedIncidentVideoListResourceResponse {
|
|
55
|
+
if (!('data' in value) || value['data'] === undefined) return false;
|
|
56
|
+
if (!('meta' in value) || value['meta'] === undefined) return false;
|
|
57
|
+
return true;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function PaginatedIncidentVideoListResourceResponseFromJSON(json: any): PaginatedIncidentVideoListResourceResponse {
|
|
61
|
+
return PaginatedIncidentVideoListResourceResponseFromJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function PaginatedIncidentVideoListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedIncidentVideoListResourceResponse {
|
|
65
|
+
if (json == null) {
|
|
66
|
+
return json;
|
|
67
|
+
}
|
|
68
|
+
return {
|
|
69
|
+
|
|
70
|
+
'data': ((json['data'] as Array<any>).map(IncidentVideoListResourceFromJSON)),
|
|
71
|
+
'meta': PagingMetadataFromJSON(json['meta']),
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function PaginatedIncidentVideoListResourceResponseToJSON(json: any): PaginatedIncidentVideoListResourceResponse {
|
|
76
|
+
return PaginatedIncidentVideoListResourceResponseToJSONTyped(json, false);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export function PaginatedIncidentVideoListResourceResponseToJSONTyped(value?: PaginatedIncidentVideoListResourceResponse | null, ignoreDiscriminator: boolean = false): any {
|
|
80
|
+
if (value == null) {
|
|
81
|
+
return value;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return {
|
|
85
|
+
|
|
86
|
+
'data': ((value['data'] as Array<any>).map(IncidentVideoListResourceToJSON)),
|
|
87
|
+
'meta': PagingMetadataToJSON(value['meta']),
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Security Registers API
|
|
5
|
+
* API for the Security Registers compliance platform: guard rosters, sign-on/off registers, incidents, and licence verification.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface StoreUserRequest
|
|
20
|
+
*/
|
|
21
|
+
export interface StoreUserRequest {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof StoreUserRequest
|
|
26
|
+
*/
|
|
27
|
+
firstName: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof StoreUserRequest
|
|
32
|
+
*/
|
|
33
|
+
lastName: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof StoreUserRequest
|
|
38
|
+
*/
|
|
39
|
+
email: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof StoreUserRequest
|
|
44
|
+
*/
|
|
45
|
+
mobile?: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Check if a given object implements the StoreUserRequest interface.
|
|
50
|
+
*/
|
|
51
|
+
export function instanceOfStoreUserRequest(value: object): value is StoreUserRequest {
|
|
52
|
+
if (!('firstName' in value) || value['firstName'] === undefined) return false;
|
|
53
|
+
if (!('lastName' in value) || value['lastName'] === undefined) return false;
|
|
54
|
+
if (!('email' in value) || value['email'] === undefined) return false;
|
|
55
|
+
return true;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function StoreUserRequestFromJSON(json: any): StoreUserRequest {
|
|
59
|
+
return StoreUserRequestFromJSONTyped(json, false);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function StoreUserRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreUserRequest {
|
|
63
|
+
if (json == null) {
|
|
64
|
+
return json;
|
|
65
|
+
}
|
|
66
|
+
return {
|
|
67
|
+
|
|
68
|
+
'firstName': json['first_name'],
|
|
69
|
+
'lastName': json['last_name'],
|
|
70
|
+
'email': json['email'],
|
|
71
|
+
'mobile': json['mobile'] == null ? undefined : json['mobile'],
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function StoreUserRequestToJSON(json: any): StoreUserRequest {
|
|
76
|
+
return StoreUserRequestToJSONTyped(json, false);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export function StoreUserRequestToJSONTyped(value?: StoreUserRequest | null, ignoreDiscriminator: boolean = false): any {
|
|
80
|
+
if (value == null) {
|
|
81
|
+
return value;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return {
|
|
85
|
+
|
|
86
|
+
'first_name': value['firstName'],
|
|
87
|
+
'last_name': value['lastName'],
|
|
88
|
+
'email': value['email'],
|
|
89
|
+
'mobile': value['mobile'],
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -48,6 +48,8 @@ export * from './IncidentResourceArrayResponse';
|
|
|
48
48
|
export * from './IncidentSchemaType';
|
|
49
49
|
export * from './IncidentVersionResource';
|
|
50
50
|
export * from './IncidentVersionResourceArrayResponse';
|
|
51
|
+
export * from './IncidentVideoListResource';
|
|
52
|
+
export * from './IncidentVideoListResourceArrayResponse';
|
|
51
53
|
export * from './IncidentVideoResource';
|
|
52
54
|
export * from './IncidentVideoResourceArrayResponse';
|
|
53
55
|
export * from './IncidentVideoSignedUrlResource';
|
|
@@ -105,10 +107,10 @@ export * from './NotificationType';
|
|
|
105
107
|
export * from './NotificationTypeResource';
|
|
106
108
|
export * from './NotificationTypeResourceArrayResponse';
|
|
107
109
|
export * from './PaginatedIncidentListResourceResponse';
|
|
110
|
+
export * from './PaginatedIncidentVideoListResourceResponse';
|
|
108
111
|
export * from './PaginatedLicenceCheckLogResourceResponse';
|
|
109
112
|
export * from './PaginatedLicenceListResourceResponse';
|
|
110
113
|
export * from './PaginatedLicenceResourceResponse';
|
|
111
|
-
export * from './PaginatedRecentVideoListResourceResponse';
|
|
112
114
|
export * from './PaginatedRegisterGroupedByRosterResourceResponse';
|
|
113
115
|
export * from './PaginatedRegisterListResourceResponse';
|
|
114
116
|
export * from './PaginatedRegisterResourceResponse';
|
|
@@ -124,8 +126,6 @@ export * from './PdfExportKind';
|
|
|
124
126
|
export * from './PdfExportResource';
|
|
125
127
|
export * from './PdfExportResourceArrayResponse';
|
|
126
128
|
export * from './PdfExportStatus';
|
|
127
|
-
export * from './RecentVideoListResource';
|
|
128
|
-
export * from './RecentVideoListResourceArrayResponse';
|
|
129
129
|
export * from './RecordSource';
|
|
130
130
|
export * from './RegisterGroupedByRosterResource';
|
|
131
131
|
export * from './RegisterGroupedByRosterResourceArrayResponse';
|
|
@@ -166,6 +166,7 @@ export * from './SecurityCompanyResource';
|
|
|
166
166
|
export * from './SecurityCompanyResourceArrayResponse';
|
|
167
167
|
export * from './SettingsLicenceVerificationFallbackUpdateRequest';
|
|
168
168
|
export * from './SignOffStatus';
|
|
169
|
+
export * from './StoreUserRequest';
|
|
169
170
|
export * from './UserAuthTokenResource';
|
|
170
171
|
export * from './UserAuthTokenResourceArrayResponse';
|
|
171
172
|
export * from './UserLiteResource';
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Security Registers API
|
|
3
|
-
* API for the Security Registers compliance platform: guard rosters, sign-on/off registers, incidents, and licence verification.
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
import type { PagingMetadata } from './PagingMetadata';
|
|
13
|
-
import type { RecentVideoListResource } from './RecentVideoListResource';
|
|
14
|
-
/**
|
|
15
|
-
*
|
|
16
|
-
* @export
|
|
17
|
-
* @interface PaginatedRecentVideoListResourceResponse
|
|
18
|
-
*/
|
|
19
|
-
export interface PaginatedRecentVideoListResourceResponse {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {Array<RecentVideoListResource>}
|
|
23
|
-
* @memberof PaginatedRecentVideoListResourceResponse
|
|
24
|
-
*/
|
|
25
|
-
data: Array<RecentVideoListResource>;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {PagingMetadata}
|
|
29
|
-
* @memberof PaginatedRecentVideoListResourceResponse
|
|
30
|
-
*/
|
|
31
|
-
meta: PagingMetadata;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Check if a given object implements the PaginatedRecentVideoListResourceResponse interface.
|
|
35
|
-
*/
|
|
36
|
-
export declare function instanceOfPaginatedRecentVideoListResourceResponse(value: object): value is PaginatedRecentVideoListResourceResponse;
|
|
37
|
-
export declare function PaginatedRecentVideoListResourceResponseFromJSON(json: any): PaginatedRecentVideoListResourceResponse;
|
|
38
|
-
export declare function PaginatedRecentVideoListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedRecentVideoListResourceResponse;
|
|
39
|
-
export declare function PaginatedRecentVideoListResourceResponseToJSON(json: any): PaginatedRecentVideoListResourceResponse;
|
|
40
|
-
export declare function PaginatedRecentVideoListResourceResponseToJSONTyped(value?: PaginatedRecentVideoListResourceResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Security Registers API
|
|
6
|
-
* API for the Security Registers compliance platform: guard rosters, sign-on/off registers, incidents, and licence verification.
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.instanceOfPaginatedRecentVideoListResourceResponse = instanceOfPaginatedRecentVideoListResourceResponse;
|
|
17
|
-
exports.PaginatedRecentVideoListResourceResponseFromJSON = PaginatedRecentVideoListResourceResponseFromJSON;
|
|
18
|
-
exports.PaginatedRecentVideoListResourceResponseFromJSONTyped = PaginatedRecentVideoListResourceResponseFromJSONTyped;
|
|
19
|
-
exports.PaginatedRecentVideoListResourceResponseToJSON = PaginatedRecentVideoListResourceResponseToJSON;
|
|
20
|
-
exports.PaginatedRecentVideoListResourceResponseToJSONTyped = PaginatedRecentVideoListResourceResponseToJSONTyped;
|
|
21
|
-
var PagingMetadata_1 = require("./PagingMetadata");
|
|
22
|
-
var RecentVideoListResource_1 = require("./RecentVideoListResource");
|
|
23
|
-
/**
|
|
24
|
-
* Check if a given object implements the PaginatedRecentVideoListResourceResponse interface.
|
|
25
|
-
*/
|
|
26
|
-
function instanceOfPaginatedRecentVideoListResourceResponse(value) {
|
|
27
|
-
if (!('data' in value) || value['data'] === undefined)
|
|
28
|
-
return false;
|
|
29
|
-
if (!('meta' in value) || value['meta'] === undefined)
|
|
30
|
-
return false;
|
|
31
|
-
return true;
|
|
32
|
-
}
|
|
33
|
-
function PaginatedRecentVideoListResourceResponseFromJSON(json) {
|
|
34
|
-
return PaginatedRecentVideoListResourceResponseFromJSONTyped(json, false);
|
|
35
|
-
}
|
|
36
|
-
function PaginatedRecentVideoListResourceResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
-
if (json == null) {
|
|
38
|
-
return json;
|
|
39
|
-
}
|
|
40
|
-
return {
|
|
41
|
-
'data': (json['data'].map(RecentVideoListResource_1.RecentVideoListResourceFromJSON)),
|
|
42
|
-
'meta': (0, PagingMetadata_1.PagingMetadataFromJSON)(json['meta']),
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
function PaginatedRecentVideoListResourceResponseToJSON(json) {
|
|
46
|
-
return PaginatedRecentVideoListResourceResponseToJSONTyped(json, false);
|
|
47
|
-
}
|
|
48
|
-
function PaginatedRecentVideoListResourceResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
50
|
-
if (value == null) {
|
|
51
|
-
return value;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
'data': (value['data'].map(RecentVideoListResource_1.RecentVideoListResourceToJSON)),
|
|
55
|
-
'meta': (0, PagingMetadata_1.PagingMetadataToJSON)(value['meta']),
|
|
56
|
-
};
|
|
57
|
-
}
|