@digital8/security-registers-backend-ts-sdk 0.0.228 → 0.0.230
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 +2 -8
- package/README.md +2 -2
- package/dist/apis/GeneralApi.d.ts +1 -72
- package/dist/apis/GeneralApi.js +0 -352
- package/dist/models/AddressResource.d.ts +1 -1
- package/dist/models/AddressResource.js +1 -3
- package/dist/models/IncidentLiteResource.d.ts +38 -0
- package/dist/models/IncidentLiteResource.js +54 -0
- package/dist/models/IncidentLiteResourceArrayResponse.d.ts +33 -0
- package/dist/models/IncidentLiteResourceArrayResponse.js +50 -0
- package/dist/models/IncidentResource.d.ts +0 -7
- package/dist/models/IncidentResource.js +0 -5
- package/dist/models/RegisterListResource.d.ts +4 -3
- package/dist/models/RegisterListResource.js +6 -3
- package/dist/models/RegisterResource.d.ts +3 -3
- package/dist/models/RegisterResource.js +5 -7
- package/dist/models/index.d.ts +2 -8
- package/dist/models/index.js +2 -8
- package/package.json +1 -1
- package/src/apis/GeneralApi.ts +0 -344
- package/src/models/AddressResource.ts +2 -3
- package/src/models/IncidentLiteResource.ts +74 -0
- package/src/models/IncidentLiteResourceArrayResponse.ts +73 -0
- package/src/models/IncidentResource.ts +0 -16
- package/src/models/RegisterListResource.ts +14 -6
- package/src/models/RegisterResource.ts +7 -8
- package/src/models/index.ts +2 -8
- package/dist/models/IncidentVideoResource.d.ts +0 -74
- package/dist/models/IncidentVideoResource.js +0 -72
- package/dist/models/IncidentVideoResourceArrayResponse.d.ts +0 -33
- package/dist/models/IncidentVideoResourceArrayResponse.js +0 -50
- package/dist/models/IncidentVideoSignedUrlResource.d.ts +0 -32
- package/dist/models/IncidentVideoSignedUrlResource.js +0 -51
- package/dist/models/IncidentVideoSignedUrlResourceArrayResponse.d.ts +0 -33
- package/dist/models/IncidentVideoSignedUrlResourceArrayResponse.js +0 -50
- package/dist/models/IncidentVideoUploadTokenResource.d.ts +0 -50
- package/dist/models/IncidentVideoUploadTokenResource.js +0 -63
- package/dist/models/IncidentVideoUploadTokenResourceArrayResponse.d.ts +0 -33
- package/dist/models/IncidentVideoUploadTokenResourceArrayResponse.js +0 -50
- package/dist/models/IncidentsVideosStoreRequest.d.ts +0 -44
- package/dist/models/IncidentsVideosStoreRequest.js +0 -59
- package/dist/models/IncidentsVideosUploadTokenRequest.d.ts +0 -44
- package/dist/models/IncidentsVideosUploadTokenRequest.js +0 -59
- package/src/models/IncidentVideoResource.ts +0 -125
- package/src/models/IncidentVideoResourceArrayResponse.ts +0 -73
- package/src/models/IncidentVideoSignedUrlResource.ts +0 -66
- package/src/models/IncidentVideoSignedUrlResourceArrayResponse.ts +0 -73
- package/src/models/IncidentVideoUploadTokenResource.ts +0 -93
- package/src/models/IncidentVideoUploadTokenResourceArrayResponse.ts +0 -73
- package/src/models/IncidentsVideosStoreRequest.ts +0 -84
- package/src/models/IncidentsVideosUploadTokenRequest.ts +0 -84
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* My API
|
|
3
|
+
* API documentation for my Laravel app
|
|
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 { IncidentLiteResource } from './IncidentLiteResource';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface IncidentLiteResourceArrayResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface IncidentLiteResourceArrayResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<IncidentLiteResource>}
|
|
22
|
+
* @memberof IncidentLiteResourceArrayResponse
|
|
23
|
+
*/
|
|
24
|
+
data?: Array<IncidentLiteResource>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the IncidentLiteResourceArrayResponse interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfIncidentLiteResourceArrayResponse(value: object): value is IncidentLiteResourceArrayResponse;
|
|
30
|
+
export declare function IncidentLiteResourceArrayResponseFromJSON(json: any): IncidentLiteResourceArrayResponse;
|
|
31
|
+
export declare function IncidentLiteResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IncidentLiteResourceArrayResponse;
|
|
32
|
+
export declare function IncidentLiteResourceArrayResponseToJSON(json: any): IncidentLiteResourceArrayResponse;
|
|
33
|
+
export declare function IncidentLiteResourceArrayResponseToJSONTyped(value?: IncidentLiteResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* My API
|
|
6
|
+
* API documentation for my Laravel app
|
|
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.instanceOfIncidentLiteResourceArrayResponse = instanceOfIncidentLiteResourceArrayResponse;
|
|
17
|
+
exports.IncidentLiteResourceArrayResponseFromJSON = IncidentLiteResourceArrayResponseFromJSON;
|
|
18
|
+
exports.IncidentLiteResourceArrayResponseFromJSONTyped = IncidentLiteResourceArrayResponseFromJSONTyped;
|
|
19
|
+
exports.IncidentLiteResourceArrayResponseToJSON = IncidentLiteResourceArrayResponseToJSON;
|
|
20
|
+
exports.IncidentLiteResourceArrayResponseToJSONTyped = IncidentLiteResourceArrayResponseToJSONTyped;
|
|
21
|
+
var IncidentLiteResource_1 = require("./IncidentLiteResource");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the IncidentLiteResourceArrayResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfIncidentLiteResourceArrayResponse(value) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
function IncidentLiteResourceArrayResponseFromJSON(json) {
|
|
29
|
+
return IncidentLiteResourceArrayResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
function IncidentLiteResourceArrayResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'data': json['data'] == null ? undefined : (json['data'].map(IncidentLiteResource_1.IncidentLiteResourceFromJSON)),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function IncidentLiteResourceArrayResponseToJSON(json) {
|
|
40
|
+
return IncidentLiteResourceArrayResponseToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function IncidentLiteResourceArrayResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
43
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'data': value['data'] == null ? undefined : (value['data'].map(IncidentLiteResource_1.IncidentLiteResourceToJSON)),
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -14,7 +14,6 @@ import type { IncidentFieldSchemaResource } from './IncidentFieldSchemaResource'
|
|
|
14
14
|
import type { RosterLiteResource } from './RosterLiteResource';
|
|
15
15
|
import type { IncidentFieldAuditResource } from './IncidentFieldAuditResource';
|
|
16
16
|
import type { SecurityCompanyLiteResource } from './SecurityCompanyLiteResource';
|
|
17
|
-
import type { IncidentVideoResource } from './IncidentVideoResource';
|
|
18
17
|
import type { UserLiteResource } from './UserLiteResource';
|
|
19
18
|
import type { RegisterLiteResource } from './RegisterLiteResource';
|
|
20
19
|
/**
|
|
@@ -101,12 +100,6 @@ export interface IncidentResource {
|
|
|
101
100
|
* @memberof IncidentResource
|
|
102
101
|
*/
|
|
103
102
|
fieldAudits: Array<IncidentFieldAuditResource> | null;
|
|
104
|
-
/**
|
|
105
|
-
*
|
|
106
|
-
* @type {Array<IncidentVideoResource>}
|
|
107
|
-
* @memberof IncidentResource
|
|
108
|
-
*/
|
|
109
|
-
videos: Array<IncidentVideoResource> | null;
|
|
110
103
|
}
|
|
111
104
|
/**
|
|
112
105
|
* Check if a given object implements the IncidentResource interface.
|
|
@@ -23,7 +23,6 @@ var IncidentFieldSchemaResource_1 = require("./IncidentFieldSchemaResource");
|
|
|
23
23
|
var RosterLiteResource_1 = require("./RosterLiteResource");
|
|
24
24
|
var IncidentFieldAuditResource_1 = require("./IncidentFieldAuditResource");
|
|
25
25
|
var SecurityCompanyLiteResource_1 = require("./SecurityCompanyLiteResource");
|
|
26
|
-
var IncidentVideoResource_1 = require("./IncidentVideoResource");
|
|
27
26
|
var UserLiteResource_1 = require("./UserLiteResource");
|
|
28
27
|
var RegisterLiteResource_1 = require("./RegisterLiteResource");
|
|
29
28
|
/**
|
|
@@ -50,8 +49,6 @@ function instanceOfIncidentResource(value) {
|
|
|
50
49
|
return false;
|
|
51
50
|
if (!('fieldAudits' in value) || value['fieldAudits'] === undefined)
|
|
52
51
|
return false;
|
|
53
|
-
if (!('videos' in value) || value['videos'] === undefined)
|
|
54
|
-
return false;
|
|
55
52
|
return true;
|
|
56
53
|
}
|
|
57
54
|
function IncidentResourceFromJSON(json) {
|
|
@@ -75,7 +72,6 @@ function IncidentResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
75
72
|
'updatedAt': json['updatedAt'] == null ? undefined : (new Date(json['updatedAt'])),
|
|
76
73
|
'fields': json['fields'],
|
|
77
74
|
'fieldAudits': (json['fieldAudits'] == null ? null : json['fieldAudits'].map(IncidentFieldAuditResource_1.IncidentFieldAuditResourceFromJSON)),
|
|
78
|
-
'videos': (json['videos'] == null ? null : json['videos'].map(IncidentVideoResource_1.IncidentVideoResourceFromJSON)),
|
|
79
75
|
};
|
|
80
76
|
}
|
|
81
77
|
function IncidentResourceToJSON(json) {
|
|
@@ -101,6 +97,5 @@ function IncidentResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
101
97
|
'updatedAt': value['updatedAt'] === null ? null : ((_c = value['updatedAt']) === null || _c === void 0 ? void 0 : _c.toISOString()),
|
|
102
98
|
'fields': value['fields'],
|
|
103
99
|
'fieldAudits': (value['fieldAudits'] == null ? null : value['fieldAudits'].map(IncidentFieldAuditResource_1.IncidentFieldAuditResourceToJSON)),
|
|
104
|
-
'videos': (value['videos'] == null ? null : value['videos'].map(IncidentVideoResource_1.IncidentVideoResourceToJSON)),
|
|
105
100
|
};
|
|
106
101
|
}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { VenueLiteResource } from './VenueLiteResource';
|
|
13
13
|
import type { UserLiteResource } from './UserLiteResource';
|
|
14
|
+
import type { IncidentLiteResource } from './IncidentLiteResource';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
16
17
|
* @export
|
|
@@ -142,7 +143,7 @@ export interface RegisterListResource {
|
|
|
142
143
|
* @type {number}
|
|
143
144
|
* @memberof RegisterListResource
|
|
144
145
|
*/
|
|
145
|
-
signOffLat
|
|
146
|
+
signOffLat: number;
|
|
146
147
|
/**
|
|
147
148
|
*
|
|
148
149
|
* @type {number}
|
|
@@ -151,10 +152,10 @@ export interface RegisterListResource {
|
|
|
151
152
|
signOffLong?: number | null;
|
|
152
153
|
/**
|
|
153
154
|
*
|
|
154
|
-
* @type {Array<
|
|
155
|
+
* @type {Array<IncidentLiteResource>}
|
|
155
156
|
* @memberof RegisterListResource
|
|
156
157
|
*/
|
|
157
|
-
incidents: Array<
|
|
158
|
+
incidents: Array<IncidentLiteResource> | null;
|
|
158
159
|
}
|
|
159
160
|
/**
|
|
160
161
|
* Check if a given object implements the RegisterListResource interface.
|
|
@@ -20,6 +20,7 @@ exports.RegisterListResourceToJSON = RegisterListResourceToJSON;
|
|
|
20
20
|
exports.RegisterListResourceToJSONTyped = RegisterListResourceToJSONTyped;
|
|
21
21
|
var VenueLiteResource_1 = require("./VenueLiteResource");
|
|
22
22
|
var UserLiteResource_1 = require("./UserLiteResource");
|
|
23
|
+
var IncidentLiteResource_1 = require("./IncidentLiteResource");
|
|
23
24
|
/**
|
|
24
25
|
* Check if a given object implements the RegisterListResource interface.
|
|
25
26
|
*/
|
|
@@ -60,6 +61,8 @@ function instanceOfRegisterListResource(value) {
|
|
|
60
61
|
return false;
|
|
61
62
|
if (!('signOnLong' in value) || value['signOnLong'] === undefined)
|
|
62
63
|
return false;
|
|
64
|
+
if (!('signOffLat' in value) || value['signOffLat'] === undefined)
|
|
65
|
+
return false;
|
|
63
66
|
if (!('incidents' in value) || value['incidents'] === undefined)
|
|
64
67
|
return false;
|
|
65
68
|
return true;
|
|
@@ -92,9 +95,9 @@ function RegisterListResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
92
95
|
'firstAid': json['firstAid'],
|
|
93
96
|
'signOnLat': json['signOnLat'],
|
|
94
97
|
'signOnLong': json['signOnLong'],
|
|
95
|
-
'signOffLat': json['signOffLat']
|
|
98
|
+
'signOffLat': json['signOffLat'],
|
|
96
99
|
'signOffLong': json['signOffLong'] == null ? undefined : json['signOffLong'],
|
|
97
|
-
'incidents': json['incidents'],
|
|
100
|
+
'incidents': (json['incidents'] == null ? null : json['incidents'].map(IncidentLiteResource_1.IncidentLiteResourceFromJSON)),
|
|
98
101
|
};
|
|
99
102
|
}
|
|
100
103
|
function RegisterListResourceToJSON(json) {
|
|
@@ -128,6 +131,6 @@ function RegisterListResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
128
131
|
'signOnLong': value['signOnLong'],
|
|
129
132
|
'signOffLat': value['signOffLat'],
|
|
130
133
|
'signOffLong': value['signOffLong'],
|
|
131
|
-
'incidents': value['incidents'],
|
|
134
|
+
'incidents': (value['incidents'] == null ? null : value['incidents'].map(IncidentLiteResource_1.IncidentLiteResourceToJSON)),
|
|
132
135
|
};
|
|
133
136
|
}
|
|
@@ -106,13 +106,13 @@ export interface RegisterResource {
|
|
|
106
106
|
* @type {number}
|
|
107
107
|
* @memberof RegisterResource
|
|
108
108
|
*/
|
|
109
|
-
signOffLat
|
|
109
|
+
signOffLat?: number | null;
|
|
110
110
|
/**
|
|
111
111
|
*
|
|
112
112
|
* @type {number}
|
|
113
113
|
* @memberof RegisterResource
|
|
114
114
|
*/
|
|
115
|
-
signOffLong
|
|
115
|
+
signOffLong?: number | null;
|
|
116
116
|
/**
|
|
117
117
|
*
|
|
118
118
|
* @type {string}
|
|
@@ -142,7 +142,7 @@ export interface RegisterResource {
|
|
|
142
142
|
* @type {string}
|
|
143
143
|
* @memberof RegisterResource
|
|
144
144
|
*/
|
|
145
|
-
badgeNumber
|
|
145
|
+
badgeNumber: string;
|
|
146
146
|
/**
|
|
147
147
|
*
|
|
148
148
|
* @type {Date}
|
|
@@ -50,10 +50,6 @@ function instanceOfRegisterResource(value) {
|
|
|
50
50
|
return false;
|
|
51
51
|
if (!('signOnLong' in value) || value['signOnLong'] === undefined)
|
|
52
52
|
return false;
|
|
53
|
-
if (!('signOffLat' in value) || value['signOffLat'] === undefined)
|
|
54
|
-
return false;
|
|
55
|
-
if (!('signOffLong' in value) || value['signOffLong'] === undefined)
|
|
56
|
-
return false;
|
|
57
53
|
if (!('licenceNumber' in value) || value['licenceNumber'] === undefined)
|
|
58
54
|
return false;
|
|
59
55
|
if (!('licenceExpiry' in value) || value['licenceExpiry'] === undefined)
|
|
@@ -62,6 +58,8 @@ function instanceOfRegisterResource(value) {
|
|
|
62
58
|
return false;
|
|
63
59
|
if (!('licenceLastName' in value) || value['licenceLastName'] === undefined)
|
|
64
60
|
return false;
|
|
61
|
+
if (!('badgeNumber' in value) || value['badgeNumber'] === undefined)
|
|
62
|
+
return false;
|
|
65
63
|
return true;
|
|
66
64
|
}
|
|
67
65
|
function RegisterResourceFromJSON(json) {
|
|
@@ -86,13 +84,13 @@ function RegisterResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
86
84
|
'firstAidImage': json['firstAidImage'],
|
|
87
85
|
'signOnLat': json['signOnLat'],
|
|
88
86
|
'signOnLong': json['signOnLong'],
|
|
89
|
-
'signOffLat': json['signOffLat'],
|
|
90
|
-
'signOffLong': json['signOffLong'],
|
|
87
|
+
'signOffLat': json['signOffLat'] == null ? undefined : json['signOffLat'],
|
|
88
|
+
'signOffLong': json['signOffLong'] == null ? undefined : json['signOffLong'],
|
|
91
89
|
'licenceNumber': json['licenceNumber'],
|
|
92
90
|
'licenceExpiry': json['licenceExpiry'],
|
|
93
91
|
'licenceFirstName': json['licenceFirstName'],
|
|
94
92
|
'licenceLastName': json['licenceLastName'],
|
|
95
|
-
'badgeNumber': json['badgeNumber']
|
|
93
|
+
'badgeNumber': json['badgeNumber'],
|
|
96
94
|
'createdAt': json['createdAt'] == null ? undefined : (new Date(json['createdAt'])),
|
|
97
95
|
'updatedAt': json['updatedAt'] == null ? undefined : (new Date(json['updatedAt'])),
|
|
98
96
|
};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -17,21 +17,15 @@ export * from './IncidentFieldSchemasShowRequest';
|
|
|
17
17
|
export * from './IncidentFieldsResourceArrayResponse';
|
|
18
18
|
export * from './IncidentImageResource';
|
|
19
19
|
export * from './IncidentImageResourceArrayResponse';
|
|
20
|
+
export * from './IncidentLiteResource';
|
|
21
|
+
export * from './IncidentLiteResourceArrayResponse';
|
|
20
22
|
export * from './IncidentResource';
|
|
21
23
|
export * from './IncidentResourceArrayResponse';
|
|
22
24
|
export * from './IncidentVersionResource';
|
|
23
25
|
export * from './IncidentVersionResourceArrayResponse';
|
|
24
|
-
export * from './IncidentVideoResource';
|
|
25
|
-
export * from './IncidentVideoResourceArrayResponse';
|
|
26
|
-
export * from './IncidentVideoSignedUrlResource';
|
|
27
|
-
export * from './IncidentVideoSignedUrlResourceArrayResponse';
|
|
28
|
-
export * from './IncidentVideoUploadTokenResource';
|
|
29
|
-
export * from './IncidentVideoUploadTokenResourceArrayResponse';
|
|
30
26
|
export * from './IncidentsApproveRequest';
|
|
31
27
|
export * from './IncidentsStoreRequest';
|
|
32
28
|
export * from './IncidentsUpdateRequest';
|
|
33
|
-
export * from './IncidentsVideosStoreRequest';
|
|
34
|
-
export * from './IncidentsVideosUploadTokenRequest';
|
|
35
29
|
export * from './IndexMinimalUserRequest';
|
|
36
30
|
export * from './IndexUserRequest';
|
|
37
31
|
export * from './LicenceListResource';
|
package/dist/models/index.js
CHANGED
|
@@ -35,21 +35,15 @@ __exportStar(require("./IncidentFieldSchemasShowRequest"), exports);
|
|
|
35
35
|
__exportStar(require("./IncidentFieldsResourceArrayResponse"), exports);
|
|
36
36
|
__exportStar(require("./IncidentImageResource"), exports);
|
|
37
37
|
__exportStar(require("./IncidentImageResourceArrayResponse"), exports);
|
|
38
|
+
__exportStar(require("./IncidentLiteResource"), exports);
|
|
39
|
+
__exportStar(require("./IncidentLiteResourceArrayResponse"), exports);
|
|
38
40
|
__exportStar(require("./IncidentResource"), exports);
|
|
39
41
|
__exportStar(require("./IncidentResourceArrayResponse"), exports);
|
|
40
42
|
__exportStar(require("./IncidentVersionResource"), exports);
|
|
41
43
|
__exportStar(require("./IncidentVersionResourceArrayResponse"), exports);
|
|
42
|
-
__exportStar(require("./IncidentVideoResource"), exports);
|
|
43
|
-
__exportStar(require("./IncidentVideoResourceArrayResponse"), exports);
|
|
44
|
-
__exportStar(require("./IncidentVideoSignedUrlResource"), exports);
|
|
45
|
-
__exportStar(require("./IncidentVideoSignedUrlResourceArrayResponse"), exports);
|
|
46
|
-
__exportStar(require("./IncidentVideoUploadTokenResource"), exports);
|
|
47
|
-
__exportStar(require("./IncidentVideoUploadTokenResourceArrayResponse"), exports);
|
|
48
44
|
__exportStar(require("./IncidentsApproveRequest"), exports);
|
|
49
45
|
__exportStar(require("./IncidentsStoreRequest"), exports);
|
|
50
46
|
__exportStar(require("./IncidentsUpdateRequest"), exports);
|
|
51
|
-
__exportStar(require("./IncidentsVideosStoreRequest"), exports);
|
|
52
|
-
__exportStar(require("./IncidentsVideosUploadTokenRequest"), exports);
|
|
53
47
|
__exportStar(require("./IndexMinimalUserRequest"), exports);
|
|
54
48
|
__exportStar(require("./IndexUserRequest"), exports);
|
|
55
49
|
__exportStar(require("./LicenceListResource"), exports);
|
package/package.json
CHANGED