@digital8/security-registers-backend-ts-sdk 0.0.305 → 0.0.307
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/AddressResource.d.ts +1 -1
- package/dist/models/AddressResource.js +3 -1
- package/dist/models/AssetFileForUploadResource.d.ts +4 -2
- package/dist/models/AssetLiteResource.d.ts +0 -12
- package/dist/models/AssetLiteResource.js +0 -6
- package/dist/models/AssetResource.d.ts +1 -13
- package/dist/models/AssetResource.js +3 -7
- 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 +6 -7
- package/dist/models/RegisterListResource.js +9 -9
- package/dist/models/RegisterResource.d.ts +3 -15
- package/dist/models/RegisterResource.js +11 -17
- package/dist/models/RosterResource.d.ts +1 -1
- package/dist/models/RosterResource.js +3 -4
- package/dist/models/RosterWithRegistersResource.d.ts +1 -1
- package/dist/models/RosterWithRegistersResource.js +4 -3
- 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/AddressResource.ts +3 -2
- package/src/models/AssetFileForUploadResource.ts +2 -2
- package/src/models/AssetLiteResource.ts +0 -17
- package/src/models/AssetResource.ts +3 -19
- 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 +13 -20
- package/src/models/RegisterResource.ts +9 -26
- package/src/models/RosterResource.ts +3 -4
- package/src/models/RosterWithRegistersResource.ts +4 -3
- 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
|
@@ -19,6 +19,10 @@ exports.UsersCreateWithRoleRequestLicencesInnerFromJSON = UsersCreateWithRoleReq
|
|
|
19
19
|
exports.UsersCreateWithRoleRequestLicencesInnerFromJSONTyped = UsersCreateWithRoleRequestLicencesInnerFromJSONTyped;
|
|
20
20
|
exports.UsersCreateWithRoleRequestLicencesInnerToJSON = UsersCreateWithRoleRequestLicencesInnerToJSON;
|
|
21
21
|
exports.UsersCreateWithRoleRequestLicencesInnerToJSONTyped = UsersCreateWithRoleRequestLicencesInnerToJSONTyped;
|
|
22
|
+
var FirstAidAsset_1 = require("./FirstAidAsset");
|
|
23
|
+
var BackAsset_1 = require("./BackAsset");
|
|
24
|
+
var FrontAsset_1 = require("./FrontAsset");
|
|
25
|
+
var RsaAsset_1 = require("./RsaAsset");
|
|
22
26
|
/**
|
|
23
27
|
* @export
|
|
24
28
|
*/
|
|
@@ -63,10 +67,10 @@ function UsersCreateWithRoleRequestLicencesInnerFromJSONTyped(json, ignoreDiscri
|
|
|
63
67
|
'firstName': json['first_name'],
|
|
64
68
|
'lastName': json['last_name'],
|
|
65
69
|
'expiryDate': (new Date(json['expiry_date'])),
|
|
66
|
-
'frontAsset': json['front_asset'],
|
|
67
|
-
'backAsset': json['back_asset'] == null ? undefined : json['back_asset'],
|
|
68
|
-
'rsaAsset': json['rsa_asset'] == null ? undefined : json['rsa_asset'],
|
|
69
|
-
'firstAidAsset': json['first_aid_asset'] == null ? undefined : json['first_aid_asset'],
|
|
70
|
+
'frontAsset': (0, FrontAsset_1.FrontAssetFromJSON)(json['front_asset']),
|
|
71
|
+
'backAsset': json['back_asset'] == null ? undefined : (0, BackAsset_1.BackAssetFromJSON)(json['back_asset']),
|
|
72
|
+
'rsaAsset': json['rsa_asset'] == null ? undefined : (0, RsaAsset_1.RsaAssetFromJSON)(json['rsa_asset']),
|
|
73
|
+
'firstAidAsset': json['first_aid_asset'] == null ? undefined : (0, FirstAidAsset_1.FirstAidAssetFromJSON)(json['first_aid_asset']),
|
|
70
74
|
};
|
|
71
75
|
}
|
|
72
76
|
function UsersCreateWithRoleRequestLicencesInnerToJSON(json) {
|
|
@@ -83,9 +87,9 @@ function UsersCreateWithRoleRequestLicencesInnerToJSONTyped(value, ignoreDiscrim
|
|
|
83
87
|
'first_name': value['firstName'],
|
|
84
88
|
'last_name': value['lastName'],
|
|
85
89
|
'expiry_date': ((value['expiryDate']).toISOString()),
|
|
86
|
-
'front_asset': value['frontAsset'],
|
|
87
|
-
'back_asset': value['backAsset'],
|
|
88
|
-
'rsa_asset': value['rsaAsset'],
|
|
89
|
-
'first_aid_asset': value['firstAidAsset'],
|
|
90
|
+
'front_asset': (0, FrontAsset_1.FrontAssetToJSON)(value['frontAsset']),
|
|
91
|
+
'back_asset': (0, BackAsset_1.BackAssetToJSON)(value['backAsset']),
|
|
92
|
+
'rsa_asset': (0, RsaAsset_1.RsaAssetToJSON)(value['rsaAsset']),
|
|
93
|
+
'first_aid_asset': (0, FirstAidAsset_1.FirstAidAssetToJSON)(value['firstAidAsset']),
|
|
90
94
|
};
|
|
91
95
|
}
|
|
@@ -33,6 +33,12 @@ export interface VenueLiteResource {
|
|
|
33
33
|
* @memberof VenueLiteResource
|
|
34
34
|
*/
|
|
35
35
|
venueCode: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof VenueLiteResource
|
|
40
|
+
*/
|
|
41
|
+
timezone: string;
|
|
36
42
|
}
|
|
37
43
|
/**
|
|
38
44
|
* Check if a given object implements the VenueLiteResource interface.
|
|
@@ -26,6 +26,8 @@ function instanceOfVenueLiteResource(value) {
|
|
|
26
26
|
return false;
|
|
27
27
|
if (!('venueCode' in value) || value['venueCode'] === undefined)
|
|
28
28
|
return false;
|
|
29
|
+
if (!('timezone' in value) || value['timezone'] === undefined)
|
|
30
|
+
return false;
|
|
29
31
|
return true;
|
|
30
32
|
}
|
|
31
33
|
function VenueLiteResourceFromJSON(json) {
|
|
@@ -39,6 +41,7 @@ function VenueLiteResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
39
41
|
'id': json['id'] == null ? undefined : json['id'],
|
|
40
42
|
'name': json['name'],
|
|
41
43
|
'venueCode': json['venueCode'],
|
|
44
|
+
'timezone': json['timezone'],
|
|
42
45
|
};
|
|
43
46
|
}
|
|
44
47
|
function VenueLiteResourceToJSON(json) {
|
|
@@ -53,5 +56,6 @@ function VenueLiteResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
53
56
|
'id': value['id'],
|
|
54
57
|
'name': value['name'],
|
|
55
58
|
'venueCode': value['venueCode'],
|
|
59
|
+
'timezone': value['timezone'],
|
|
56
60
|
};
|
|
57
61
|
}
|
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