@digital8/security-registers-backend-ts-sdk 0.0.197 → 0.0.199
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 +3 -5
- package/README.md +2 -2
- package/dist/apis/GeneralApi.d.ts +35 -29
- package/dist/apis/GeneralApi.js +126 -118
- package/dist/models/AssetResource.d.ts +1 -1
- package/dist/models/AssetResource.js +1 -3
- package/dist/models/PdfExportResource.d.ts +50 -0
- package/dist/models/PdfExportResource.js +61 -0
- package/dist/models/PdfExportResourceArrayResponse.d.ts +33 -0
- package/dist/models/PdfExportResourceArrayResponse.js +50 -0
- package/dist/models/RegisterListResource.d.ts +1 -1
- package/dist/models/RegisterListResource.js +1 -3
- package/dist/models/RegisterResource.d.ts +2 -2
- package/dist/models/RegisterResource.js +3 -3
- package/dist/models/RegistersCreateRequest.d.ts +98 -0
- package/dist/models/RegistersCreateRequest.js +83 -0
- package/dist/models/RegistersUpdateRequest.d.ts +12 -0
- package/dist/models/RegistersUpdateRequest.js +4 -0
- package/dist/models/RosterListResource.d.ts +1 -1
- package/dist/models/RosterListResource.js +3 -4
- package/dist/models/RosterResource.d.ts +1 -1
- package/dist/models/RosterResource.js +3 -4
- package/dist/models/UpdateUserRequest.d.ts +6 -0
- package/dist/models/UpdateUserRequest.js +2 -0
- package/dist/models/UserLiteResource.d.ts +7 -0
- package/dist/models/UserLiteResource.js +5 -0
- package/dist/models/UserResource.d.ts +6 -0
- package/dist/models/UserResource.js +4 -0
- package/dist/models/UsersCreateWithRoleRequest.d.ts +6 -0
- package/dist/models/UsersCreateWithRoleRequest.js +2 -0
- package/dist/models/index.d.ts +3 -5
- package/dist/models/index.js +3 -5
- package/package.json +1 -1
- package/src/apis/GeneralApi.ts +130 -112
- package/src/models/AssetResource.ts +2 -3
- package/src/models/PdfExportResource.ts +92 -0
- package/src/models/PdfExportResourceArrayResponse.ts +73 -0
- package/src/models/RegisterListResource.ts +2 -3
- package/src/models/RegisterResource.ts +5 -5
- package/src/models/RegistersCreateRequest.ts +159 -0
- package/src/models/RegistersUpdateRequest.ts +16 -0
- package/src/models/RosterListResource.ts +3 -4
- package/src/models/RosterResource.ts +3 -4
- package/src/models/UpdateUserRequest.ts +8 -0
- package/src/models/UserLiteResource.ts +17 -0
- package/src/models/UserResource.ts +9 -0
- package/src/models/UsersCreateWithRoleRequest.ts +8 -0
- package/src/models/index.ts +3 -5
- package/dist/models/NotificationPreferenceResource.d.ts +0 -63
- package/dist/models/NotificationPreferenceResource.js +0 -67
- package/dist/models/NotificationPreferenceResourceArrayResponse.d.ts +0 -33
- package/dist/models/NotificationPreferenceResourceArrayResponse.js +0 -50
- package/dist/models/NotificationPreferencesStoreRequest.d.ts +0 -55
- package/dist/models/NotificationPreferencesStoreRequest.js +0 -68
- package/dist/models/NotificationTypeResource.d.ts +0 -38
- package/dist/models/NotificationTypeResource.js +0 -55
- package/dist/models/NotificationTypeResourceArrayResponse.d.ts +0 -33
- package/dist/models/NotificationTypeResourceArrayResponse.js +0 -50
- package/src/models/NotificationPreferenceResource.ts +0 -116
- package/src/models/NotificationPreferenceResourceArrayResponse.ts +0 -73
- package/src/models/NotificationPreferencesStoreRequest.ts +0 -97
- package/src/models/NotificationTypeResource.ts +0 -75
- package/src/models/NotificationTypeResourceArrayResponse.ts +0 -73
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* My API
|
|
5
|
-
* API documentation for my Laravel app
|
|
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 NotificationPreferencesStoreRequest
|
|
20
|
-
*/
|
|
21
|
-
export interface NotificationPreferencesStoreRequest {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof NotificationPreferencesStoreRequest
|
|
26
|
-
*/
|
|
27
|
-
notificationType: NotificationPreferencesStoreRequestNotificationTypeEnum;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {number}
|
|
31
|
-
* @memberof NotificationPreferencesStoreRequest
|
|
32
|
-
*/
|
|
33
|
-
venueId?: number;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {boolean}
|
|
37
|
-
* @memberof NotificationPreferencesStoreRequest
|
|
38
|
-
*/
|
|
39
|
-
enabled: boolean;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* @export
|
|
45
|
-
*/
|
|
46
|
-
export const NotificationPreferencesStoreRequestNotificationTypeEnum = {
|
|
47
|
-
IncidentAdded: 'incident_added',
|
|
48
|
-
NonSignOff: 'non_sign_off',
|
|
49
|
-
NonSignOn: 'non_sign_on',
|
|
50
|
-
SignOnRejected: 'sign_on_rejected',
|
|
51
|
-
LicenceUpdated: 'licence_updated'
|
|
52
|
-
} as const;
|
|
53
|
-
export type NotificationPreferencesStoreRequestNotificationTypeEnum = typeof NotificationPreferencesStoreRequestNotificationTypeEnum[keyof typeof NotificationPreferencesStoreRequestNotificationTypeEnum];
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* Check if a given object implements the NotificationPreferencesStoreRequest interface.
|
|
58
|
-
*/
|
|
59
|
-
export function instanceOfNotificationPreferencesStoreRequest(value: object): value is NotificationPreferencesStoreRequest {
|
|
60
|
-
if (!('notificationType' in value) || value['notificationType'] === undefined) return false;
|
|
61
|
-
if (!('enabled' in value) || value['enabled'] === undefined) return false;
|
|
62
|
-
return true;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export function NotificationPreferencesStoreRequestFromJSON(json: any): NotificationPreferencesStoreRequest {
|
|
66
|
-
return NotificationPreferencesStoreRequestFromJSONTyped(json, false);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
export function NotificationPreferencesStoreRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationPreferencesStoreRequest {
|
|
70
|
-
if (json == null) {
|
|
71
|
-
return json;
|
|
72
|
-
}
|
|
73
|
-
return {
|
|
74
|
-
|
|
75
|
-
'notificationType': json['notification_type'],
|
|
76
|
-
'venueId': json['venue_id'] == null ? undefined : json['venue_id'],
|
|
77
|
-
'enabled': json['enabled'],
|
|
78
|
-
};
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export function NotificationPreferencesStoreRequestToJSON(json: any): NotificationPreferencesStoreRequest {
|
|
82
|
-
return NotificationPreferencesStoreRequestToJSONTyped(json, false);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export function NotificationPreferencesStoreRequestToJSONTyped(value?: NotificationPreferencesStoreRequest | null, ignoreDiscriminator: boolean = false): any {
|
|
86
|
-
if (value == null) {
|
|
87
|
-
return value;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
return {
|
|
91
|
-
|
|
92
|
-
'notification_type': value['notificationType'],
|
|
93
|
-
'venue_id': value['venueId'],
|
|
94
|
-
'enabled': value['enabled'],
|
|
95
|
-
};
|
|
96
|
-
}
|
|
97
|
-
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* My API
|
|
5
|
-
* API documentation for my Laravel app
|
|
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 NotificationTypeResource
|
|
20
|
-
*/
|
|
21
|
-
export interface NotificationTypeResource {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof NotificationTypeResource
|
|
26
|
-
*/
|
|
27
|
-
value: string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof NotificationTypeResource
|
|
32
|
-
*/
|
|
33
|
-
label: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the NotificationTypeResource interface.
|
|
38
|
-
*/
|
|
39
|
-
export function instanceOfNotificationTypeResource(value: object): value is NotificationTypeResource {
|
|
40
|
-
if (!('value' in value) || value['value'] === undefined) return false;
|
|
41
|
-
if (!('label' in value) || value['label'] === undefined) return false;
|
|
42
|
-
return true;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export function NotificationTypeResourceFromJSON(json: any): NotificationTypeResource {
|
|
46
|
-
return NotificationTypeResourceFromJSONTyped(json, false);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export function NotificationTypeResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationTypeResource {
|
|
50
|
-
if (json == null) {
|
|
51
|
-
return json;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
|
|
55
|
-
'value': json['value'],
|
|
56
|
-
'label': json['label'],
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function NotificationTypeResourceToJSON(json: any): NotificationTypeResource {
|
|
61
|
-
return NotificationTypeResourceToJSONTyped(json, false);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export function NotificationTypeResourceToJSONTyped(value?: NotificationTypeResource | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
-
if (value == null) {
|
|
66
|
-
return value;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
return {
|
|
70
|
-
|
|
71
|
-
'value': value['value'],
|
|
72
|
-
'label': value['label'],
|
|
73
|
-
};
|
|
74
|
-
}
|
|
75
|
-
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* My API
|
|
5
|
-
* API documentation for my Laravel app
|
|
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 { NotificationTypeResource } from './NotificationTypeResource';
|
|
17
|
-
import {
|
|
18
|
-
NotificationTypeResourceFromJSON,
|
|
19
|
-
NotificationTypeResourceFromJSONTyped,
|
|
20
|
-
NotificationTypeResourceToJSON,
|
|
21
|
-
NotificationTypeResourceToJSONTyped,
|
|
22
|
-
} from './NotificationTypeResource';
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @export
|
|
27
|
-
* @interface NotificationTypeResourceArrayResponse
|
|
28
|
-
*/
|
|
29
|
-
export interface NotificationTypeResourceArrayResponse {
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {Array<NotificationTypeResource>}
|
|
33
|
-
* @memberof NotificationTypeResourceArrayResponse
|
|
34
|
-
*/
|
|
35
|
-
data?: Array<NotificationTypeResource>;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* Check if a given object implements the NotificationTypeResourceArrayResponse interface.
|
|
40
|
-
*/
|
|
41
|
-
export function instanceOfNotificationTypeResourceArrayResponse(value: object): value is NotificationTypeResourceArrayResponse {
|
|
42
|
-
return true;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export function NotificationTypeResourceArrayResponseFromJSON(json: any): NotificationTypeResourceArrayResponse {
|
|
46
|
-
return NotificationTypeResourceArrayResponseFromJSONTyped(json, false);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export function NotificationTypeResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationTypeResourceArrayResponse {
|
|
50
|
-
if (json == null) {
|
|
51
|
-
return json;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
|
|
55
|
-
'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(NotificationTypeResourceFromJSON)),
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
export function NotificationTypeResourceArrayResponseToJSON(json: any): NotificationTypeResourceArrayResponse {
|
|
60
|
-
return NotificationTypeResourceArrayResponseToJSONTyped(json, false);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export function NotificationTypeResourceArrayResponseToJSONTyped(value?: NotificationTypeResourceArrayResponse | 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(NotificationTypeResourceToJSON)),
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
|