@digital8/security-registers-backend-ts-sdk 0.0.314 → 0.0.315
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 +22 -0
- package/README.md +2 -2
- package/dist/apis/GeneralApi.d.ts +127 -1
- package/dist/apis/GeneralApi.js +693 -35
- package/dist/models/AssetFileForUploadResource.d.ts +4 -2
- package/dist/models/AuthChangePasswordRequest.d.ts +38 -0
- package/dist/models/AuthChangePasswordRequest.js +55 -0
- package/dist/models/AuthProfileUpdateRequest.d.ts +56 -0
- package/dist/models/AuthProfileUpdateRequest.js +57 -0
- package/dist/models/AuthRegisterGuardRequest.d.ts +70 -0
- package/dist/models/AuthRegisterGuardRequest.js +77 -0
- package/dist/models/AuthRegisterGuardRequestLicence.d.ts +98 -0
- package/dist/models/AuthRegisterGuardRequestLicence.js +95 -0
- package/dist/models/AuthRegisterGuardRequestProfileSignature.d.ts +50 -0
- package/dist/models/AuthRegisterGuardRequestProfileSignature.js +55 -0
- package/dist/models/BackAsset.d.ts +50 -0
- package/dist/models/BackAsset.js +55 -0
- package/dist/models/DevicesRegisterRequest.d.ts +76 -0
- package/dist/models/DevicesRegisterRequest.js +73 -0
- package/dist/models/FirstAidAsset.d.ts +50 -0
- package/dist/models/FirstAidAsset.js +55 -0
- package/dist/models/FrontAsset.d.ts +50 -0
- package/dist/models/FrontAsset.js +55 -0
- package/dist/models/IncidentFieldSchemaResource.d.ts +4 -2
- package/dist/models/IncidentImageResource.d.ts +1 -1
- package/dist/models/IncidentImageResource.js +3 -1
- package/dist/models/IncidentListResource.d.ts +107 -0
- package/dist/models/IncidentListResource.js +81 -0
- package/dist/models/IncidentListResourceArrayResponse.d.ts +33 -0
- package/dist/models/IncidentListResourceArrayResponse.js +50 -0
- package/dist/models/IncidentVideoUploadTokenResource.d.ts +4 -2
- package/dist/models/IncidentsExportPdfBulkRequest.d.ts +56 -0
- package/dist/models/IncidentsExportPdfBulkRequest.js +63 -0
- package/dist/models/IncidentsListRequest.d.ts +163 -0
- package/dist/models/IncidentsListRequest.js +103 -0
- package/dist/models/LicencesStoreRequest.d.ts +10 -104
- package/dist/models/LicencesStoreRequest.js +10 -40
- package/dist/models/LicencesStoreRequestBackAsset.d.ts +50 -0
- package/dist/models/LicencesStoreRequestBackAsset.js +55 -0
- package/dist/models/LicencesUpdateRequest.d.ts +9 -104
- package/dist/models/LicencesUpdateRequest.js +9 -40
- package/dist/models/MobileDeviceResource.d.ts +92 -0
- package/dist/models/MobileDeviceResource.js +86 -0
- package/dist/models/MobileDeviceResourceArrayResponse.d.ts +33 -0
- package/dist/models/MobileDeviceResourceArrayResponse.js +50 -0
- package/dist/models/MobileInitResource.d.ts +47 -0
- package/dist/models/MobileInitResource.js +62 -0
- package/dist/models/MobileInitResourceArrayResponse.d.ts +33 -0
- package/dist/models/MobileInitResourceArrayResponse.js +50 -0
- package/dist/models/PaginatedIncidentListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedIncidentListResourceResponse.js +57 -0
- package/dist/models/PdfExportQueuedResource.d.ts +44 -0
- package/dist/models/PdfExportQueuedResource.js +59 -0
- package/dist/models/PdfExportQueuedResourceArrayResponse.d.ts +33 -0
- package/dist/models/PdfExportQueuedResourceArrayResponse.js +50 -0
- package/dist/models/RegisterGroupedByRosterResource.d.ts +1 -1
- package/dist/models/RegisterGroupedByRosterResource.js +4 -3
- package/dist/models/RegisterListResource.d.ts +7 -8
- package/dist/models/RegisterListResource.js +11 -11
- package/dist/models/RegisterResource.d.ts +2 -2
- package/dist/models/RegisterResource.js +6 -10
- package/dist/models/RosterListResource.d.ts +1 -1
- package/dist/models/RosterListResource.js +3 -4
- package/dist/models/RosterLiteResource.d.ts +1 -1
- package/dist/models/RosterLiteResource.js +4 -3
- package/dist/models/RosterWithRegistersResource.d.ts +1 -1
- package/dist/models/RosterWithRegistersResource.js +3 -4
- package/dist/models/RsaAsset.d.ts +50 -0
- package/dist/models/RsaAsset.js +55 -0
- package/dist/models/UsersCreateWithRoleRequestLicencesInner.d.ts +12 -8
- package/dist/models/UsersCreateWithRoleRequestLicencesInner.js +12 -8
- package/dist/models/VenueLiteResource.d.ts +6 -0
- package/dist/models/VenueLiteResource.js +4 -0
- package/dist/models/index.d.ts +22 -0
- package/dist/models/index.js +22 -0
- package/package.json +1 -1
- package/src/apis/GeneralApi.ts +564 -0
- package/src/models/AssetFileForUploadResource.ts +2 -2
- package/src/models/AuthChangePasswordRequest.ts +75 -0
- package/src/models/AuthProfileUpdateRequest.ts +97 -0
- package/src/models/AuthRegisterGuardRequest.ts +135 -0
- package/src/models/AuthRegisterGuardRequestLicence.ts +181 -0
- package/src/models/AuthRegisterGuardRequestProfileSignature.ts +89 -0
- package/src/models/BackAsset.ts +89 -0
- package/src/models/DevicesRegisterRequest.ts +126 -0
- package/src/models/FirstAidAsset.ts +89 -0
- package/src/models/FrontAsset.ts +89 -0
- package/src/models/IncidentFieldSchemaResource.ts +2 -2
- package/src/models/IncidentImageResource.ts +3 -2
- package/src/models/IncidentListResource.ts +185 -0
- package/src/models/IncidentListResourceArrayResponse.ts +73 -0
- package/src/models/IncidentVideoUploadTokenResource.ts +2 -2
- package/src/models/IncidentsExportPdfBulkRequest.ts +100 -0
- package/src/models/IncidentsListRequest.ts +238 -0
- package/src/models/LicencesStoreRequest.ts +31 -144
- package/src/models/LicencesStoreRequestBackAsset.ts +89 -0
- package/src/models/LicencesUpdateRequest.ts +24 -144
- package/src/models/MobileDeviceResource.ts +153 -0
- package/src/models/MobileDeviceResourceArrayResponse.ts +73 -0
- package/src/models/MobileInitResource.ts +106 -0
- package/src/models/MobileInitResourceArrayResponse.ts +73 -0
- package/src/models/PaginatedIncidentListResourceResponse.ts +90 -0
- package/src/models/PdfExportQueuedResource.ts +84 -0
- package/src/models/PdfExportQueuedResourceArrayResponse.ts +73 -0
- package/src/models/RegisterGroupedByRosterResource.ts +4 -3
- package/src/models/RegisterListResource.ts +16 -22
- package/src/models/RegisterResource.ts +5 -7
- package/src/models/RosterListResource.ts +3 -4
- package/src/models/RosterLiteResource.ts +4 -3
- package/src/models/RosterWithRegistersResource.ts +3 -4
- package/src/models/RsaAsset.ts +89 -0
- package/src/models/UsersCreateWithRoleRequestLicencesInner.ts +45 -16
- package/src/models/VenueLiteResource.ts +9 -0
- package/src/models/index.ts +22 -0
package/dist/models/index.d.ts
CHANGED
|
@@ -6,8 +6,17 @@ export * from './AssetLiteResource';
|
|
|
6
6
|
export * from './AssetLiteResourceArrayResponse';
|
|
7
7
|
export * from './AssetResource';
|
|
8
8
|
export * from './AssetResourceArrayResponse';
|
|
9
|
+
export * from './AuthChangePasswordRequest';
|
|
10
|
+
export * from './AuthProfileUpdateRequest';
|
|
11
|
+
export * from './AuthRegisterGuardRequest';
|
|
12
|
+
export * from './AuthRegisterGuardRequestLicence';
|
|
13
|
+
export * from './AuthRegisterGuardRequestProfileSignature';
|
|
14
|
+
export * from './BackAsset';
|
|
9
15
|
export * from './CurrentRegisterResource';
|
|
10
16
|
export * from './CurrentRegisterResourceArrayResponse';
|
|
17
|
+
export * from './DevicesRegisterRequest';
|
|
18
|
+
export * from './FirstAidAsset';
|
|
19
|
+
export * from './FrontAsset';
|
|
11
20
|
export * from './GenericResponse';
|
|
12
21
|
export * from './IncidentFieldAuditResource';
|
|
13
22
|
export * from './IncidentFieldAuditResourceArrayResponse';
|
|
@@ -17,6 +26,8 @@ export * from './IncidentFieldSchemasShowRequest';
|
|
|
17
26
|
export * from './IncidentFieldsResourceArrayResponse';
|
|
18
27
|
export * from './IncidentImageResource';
|
|
19
28
|
export * from './IncidentImageResourceArrayResponse';
|
|
29
|
+
export * from './IncidentListResource';
|
|
30
|
+
export * from './IncidentListResourceArrayResponse';
|
|
20
31
|
export * from './IncidentLiteResource';
|
|
21
32
|
export * from './IncidentLiteResourceArrayResponse';
|
|
22
33
|
export * from './IncidentLiteResourceStaff';
|
|
@@ -31,6 +42,8 @@ export * from './IncidentVideoSignedUrlResourceArrayResponse';
|
|
|
31
42
|
export * from './IncidentVideoUploadTokenResource';
|
|
32
43
|
export * from './IncidentVideoUploadTokenResourceArrayResponse';
|
|
33
44
|
export * from './IncidentsApproveRequest';
|
|
45
|
+
export * from './IncidentsExportPdfBulkRequest';
|
|
46
|
+
export * from './IncidentsListRequest';
|
|
34
47
|
export * from './IncidentsStoreRequest';
|
|
35
48
|
export * from './IncidentsUpdateRequest';
|
|
36
49
|
export * from './IncidentsVideosStoreRequest';
|
|
@@ -46,14 +59,20 @@ export * from './LicenceResourceArrayResponse';
|
|
|
46
59
|
export * from './LicencesListAllRequest';
|
|
47
60
|
export * from './LicencesListRequest';
|
|
48
61
|
export * from './LicencesStoreRequest';
|
|
62
|
+
export * from './LicencesStoreRequestBackAsset';
|
|
49
63
|
export * from './LicencesUpdateRequest';
|
|
50
64
|
export * from './LicencesVerifyRequest';
|
|
51
65
|
export * from './LoginAuthRequest';
|
|
66
|
+
export * from './MobileDeviceResource';
|
|
67
|
+
export * from './MobileDeviceResourceArrayResponse';
|
|
68
|
+
export * from './MobileInitResource';
|
|
69
|
+
export * from './MobileInitResourceArrayResponse';
|
|
52
70
|
export * from './NotificationPreferenceResource';
|
|
53
71
|
export * from './NotificationPreferenceResourceArrayResponse';
|
|
54
72
|
export * from './NotificationPreferencesStoreRequest';
|
|
55
73
|
export * from './NotificationTypeResource';
|
|
56
74
|
export * from './NotificationTypeResourceArrayResponse';
|
|
75
|
+
export * from './PaginatedIncidentListResourceResponse';
|
|
57
76
|
export * from './PaginatedLicenceListResourceResponse';
|
|
58
77
|
export * from './PaginatedLicenceResourceResponse';
|
|
59
78
|
export * from './PaginatedRegisterGroupedByRosterResourceResponse';
|
|
@@ -66,6 +85,8 @@ export * from './PaginatedSecurityCompanyResourceResponse';
|
|
|
66
85
|
export * from './PaginatedUserResourceResponse';
|
|
67
86
|
export * from './PaginatedVenueResourceResponse';
|
|
68
87
|
export * from './PagingMetadata';
|
|
88
|
+
export * from './PdfExportQueuedResource';
|
|
89
|
+
export * from './PdfExportQueuedResourceArrayResponse';
|
|
69
90
|
export * from './PdfExportResource';
|
|
70
91
|
export * from './PdfExportResourceArrayResponse';
|
|
71
92
|
export * from './RegisterGroupedByRosterResource';
|
|
@@ -96,6 +117,7 @@ export * from './RostersListAllRequest';
|
|
|
96
117
|
export * from './RostersListRequest';
|
|
97
118
|
export * from './RostersListWithRegistersRequest';
|
|
98
119
|
export * from './RostersUpdateRequest';
|
|
120
|
+
export * from './RsaAsset';
|
|
99
121
|
export * from './SecurityCompaniesAttachUsersRequest';
|
|
100
122
|
export * from './SecurityCompaniesListAllRequest';
|
|
101
123
|
export * from './SecurityCompaniesListRequest';
|
package/dist/models/index.js
CHANGED
|
@@ -24,8 +24,17 @@ __exportStar(require("./AssetLiteResource"), exports);
|
|
|
24
24
|
__exportStar(require("./AssetLiteResourceArrayResponse"), exports);
|
|
25
25
|
__exportStar(require("./AssetResource"), exports);
|
|
26
26
|
__exportStar(require("./AssetResourceArrayResponse"), exports);
|
|
27
|
+
__exportStar(require("./AuthChangePasswordRequest"), exports);
|
|
28
|
+
__exportStar(require("./AuthProfileUpdateRequest"), exports);
|
|
29
|
+
__exportStar(require("./AuthRegisterGuardRequest"), exports);
|
|
30
|
+
__exportStar(require("./AuthRegisterGuardRequestLicence"), exports);
|
|
31
|
+
__exportStar(require("./AuthRegisterGuardRequestProfileSignature"), exports);
|
|
32
|
+
__exportStar(require("./BackAsset"), exports);
|
|
27
33
|
__exportStar(require("./CurrentRegisterResource"), exports);
|
|
28
34
|
__exportStar(require("./CurrentRegisterResourceArrayResponse"), exports);
|
|
35
|
+
__exportStar(require("./DevicesRegisterRequest"), exports);
|
|
36
|
+
__exportStar(require("./FirstAidAsset"), exports);
|
|
37
|
+
__exportStar(require("./FrontAsset"), exports);
|
|
29
38
|
__exportStar(require("./GenericResponse"), exports);
|
|
30
39
|
__exportStar(require("./IncidentFieldAuditResource"), exports);
|
|
31
40
|
__exportStar(require("./IncidentFieldAuditResourceArrayResponse"), exports);
|
|
@@ -35,6 +44,8 @@ __exportStar(require("./IncidentFieldSchemasShowRequest"), exports);
|
|
|
35
44
|
__exportStar(require("./IncidentFieldsResourceArrayResponse"), exports);
|
|
36
45
|
__exportStar(require("./IncidentImageResource"), exports);
|
|
37
46
|
__exportStar(require("./IncidentImageResourceArrayResponse"), exports);
|
|
47
|
+
__exportStar(require("./IncidentListResource"), exports);
|
|
48
|
+
__exportStar(require("./IncidentListResourceArrayResponse"), exports);
|
|
38
49
|
__exportStar(require("./IncidentLiteResource"), exports);
|
|
39
50
|
__exportStar(require("./IncidentLiteResourceArrayResponse"), exports);
|
|
40
51
|
__exportStar(require("./IncidentLiteResourceStaff"), exports);
|
|
@@ -49,6 +60,8 @@ __exportStar(require("./IncidentVideoSignedUrlResourceArrayResponse"), exports);
|
|
|
49
60
|
__exportStar(require("./IncidentVideoUploadTokenResource"), exports);
|
|
50
61
|
__exportStar(require("./IncidentVideoUploadTokenResourceArrayResponse"), exports);
|
|
51
62
|
__exportStar(require("./IncidentsApproveRequest"), exports);
|
|
63
|
+
__exportStar(require("./IncidentsExportPdfBulkRequest"), exports);
|
|
64
|
+
__exportStar(require("./IncidentsListRequest"), exports);
|
|
52
65
|
__exportStar(require("./IncidentsStoreRequest"), exports);
|
|
53
66
|
__exportStar(require("./IncidentsUpdateRequest"), exports);
|
|
54
67
|
__exportStar(require("./IncidentsVideosStoreRequest"), exports);
|
|
@@ -64,14 +77,20 @@ __exportStar(require("./LicenceResourceArrayResponse"), exports);
|
|
|
64
77
|
__exportStar(require("./LicencesListAllRequest"), exports);
|
|
65
78
|
__exportStar(require("./LicencesListRequest"), exports);
|
|
66
79
|
__exportStar(require("./LicencesStoreRequest"), exports);
|
|
80
|
+
__exportStar(require("./LicencesStoreRequestBackAsset"), exports);
|
|
67
81
|
__exportStar(require("./LicencesUpdateRequest"), exports);
|
|
68
82
|
__exportStar(require("./LicencesVerifyRequest"), exports);
|
|
69
83
|
__exportStar(require("./LoginAuthRequest"), exports);
|
|
84
|
+
__exportStar(require("./MobileDeviceResource"), exports);
|
|
85
|
+
__exportStar(require("./MobileDeviceResourceArrayResponse"), exports);
|
|
86
|
+
__exportStar(require("./MobileInitResource"), exports);
|
|
87
|
+
__exportStar(require("./MobileInitResourceArrayResponse"), exports);
|
|
70
88
|
__exportStar(require("./NotificationPreferenceResource"), exports);
|
|
71
89
|
__exportStar(require("./NotificationPreferenceResourceArrayResponse"), exports);
|
|
72
90
|
__exportStar(require("./NotificationPreferencesStoreRequest"), exports);
|
|
73
91
|
__exportStar(require("./NotificationTypeResource"), exports);
|
|
74
92
|
__exportStar(require("./NotificationTypeResourceArrayResponse"), exports);
|
|
93
|
+
__exportStar(require("./PaginatedIncidentListResourceResponse"), exports);
|
|
75
94
|
__exportStar(require("./PaginatedLicenceListResourceResponse"), exports);
|
|
76
95
|
__exportStar(require("./PaginatedLicenceResourceResponse"), exports);
|
|
77
96
|
__exportStar(require("./PaginatedRegisterGroupedByRosterResourceResponse"), exports);
|
|
@@ -84,6 +103,8 @@ __exportStar(require("./PaginatedSecurityCompanyResourceResponse"), exports);
|
|
|
84
103
|
__exportStar(require("./PaginatedUserResourceResponse"), exports);
|
|
85
104
|
__exportStar(require("./PaginatedVenueResourceResponse"), exports);
|
|
86
105
|
__exportStar(require("./PagingMetadata"), exports);
|
|
106
|
+
__exportStar(require("./PdfExportQueuedResource"), exports);
|
|
107
|
+
__exportStar(require("./PdfExportQueuedResourceArrayResponse"), exports);
|
|
87
108
|
__exportStar(require("./PdfExportResource"), exports);
|
|
88
109
|
__exportStar(require("./PdfExportResourceArrayResponse"), exports);
|
|
89
110
|
__exportStar(require("./RegisterGroupedByRosterResource"), exports);
|
|
@@ -114,6 +135,7 @@ __exportStar(require("./RostersListAllRequest"), exports);
|
|
|
114
135
|
__exportStar(require("./RostersListRequest"), exports);
|
|
115
136
|
__exportStar(require("./RostersListWithRegistersRequest"), exports);
|
|
116
137
|
__exportStar(require("./RostersUpdateRequest"), exports);
|
|
138
|
+
__exportStar(require("./RsaAsset"), exports);
|
|
117
139
|
__exportStar(require("./SecurityCompaniesAttachUsersRequest"), exports);
|
|
118
140
|
__exportStar(require("./SecurityCompaniesListAllRequest"), exports);
|
|
119
141
|
__exportStar(require("./SecurityCompaniesListRequest"), exports);
|
package/package.json
CHANGED