@digital8/security-registers-backend-ts-sdk 0.0.594 → 0.0.595
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/README.md +2 -2
- package/dist/models/AssetResource.d.ts +1 -1
- package/dist/models/AssetResource.js +3 -1
- package/dist/models/RegisterListResource.d.ts +1 -1
- package/dist/models/RegisterListResource.js +1 -3
- package/package.json +1 -1
- package/src/models/AssetResource.ts +3 -2
- package/src/models/RegisterListResource.ts +2 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @digital8/security-registers-backend-ts-sdk@0.0.
|
|
1
|
+
## @digital8/security-registers-backend-ts-sdk@0.0.595
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @digital8/security-registers-backend-ts-sdk@0.0.
|
|
39
|
+
npm install @digital8/security-registers-backend-ts-sdk@0.0.595 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -30,6 +30,8 @@ function instanceOfAssetResource(value) {
|
|
|
30
30
|
return false;
|
|
31
31
|
if (!('mimeType' in value) || value['mimeType'] === undefined)
|
|
32
32
|
return false;
|
|
33
|
+
if (!('altText' in value) || value['altText'] === undefined)
|
|
34
|
+
return false;
|
|
33
35
|
if (!('index' in value) || value['index'] === undefined)
|
|
34
36
|
return false;
|
|
35
37
|
if (!('fileId' in value) || value['fileId'] === undefined)
|
|
@@ -50,7 +52,7 @@ function AssetResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
52
|
'filePath': json['filePath'],
|
|
51
53
|
'fileName': json['fileName'],
|
|
52
54
|
'mimeType': json['mimeType'],
|
|
53
|
-
'altText': json['altText']
|
|
55
|
+
'altText': json['altText'],
|
|
54
56
|
'index': json['index'],
|
|
55
57
|
'fileId': json['fileId'],
|
|
56
58
|
'isExternal': json['isExternal'],
|
|
@@ -69,8 +69,6 @@ function instanceOfRegisterListResource(value) {
|
|
|
69
69
|
return false;
|
|
70
70
|
if (!('signOnLong' in value) || value['signOnLong'] === undefined)
|
|
71
71
|
return false;
|
|
72
|
-
if (!('signOffLong' in value) || value['signOffLong'] === undefined)
|
|
73
|
-
return false;
|
|
74
72
|
if (!('hasIncidents' in value) || value['hasIncidents'] === undefined)
|
|
75
73
|
return false;
|
|
76
74
|
return true;
|
|
@@ -106,7 +104,7 @@ function RegisterListResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
106
104
|
'signOnLat': json['signOnLat'],
|
|
107
105
|
'signOnLong': json['signOnLong'],
|
|
108
106
|
'signOffLat': json['signOffLat'] == null ? undefined : json['signOffLat'],
|
|
109
|
-
'signOffLong': json['signOffLong'],
|
|
107
|
+
'signOffLong': json['signOffLong'] == null ? undefined : json['signOffLong'],
|
|
110
108
|
'hasIncidents': json['hasIncidents'],
|
|
111
109
|
};
|
|
112
110
|
}
|
package/package.json
CHANGED
|
@@ -48,7 +48,7 @@ export interface AssetResource {
|
|
|
48
48
|
* @type {string}
|
|
49
49
|
* @memberof AssetResource
|
|
50
50
|
*/
|
|
51
|
-
altText
|
|
51
|
+
altText: string;
|
|
52
52
|
/**
|
|
53
53
|
*
|
|
54
54
|
* @type {number}
|
|
@@ -83,6 +83,7 @@ export function instanceOfAssetResource(value: object): value is AssetResource {
|
|
|
83
83
|
if (!('filePath' in value) || value['filePath'] === undefined) return false;
|
|
84
84
|
if (!('fileName' in value) || value['fileName'] === undefined) return false;
|
|
85
85
|
if (!('mimeType' in value) || value['mimeType'] === undefined) return false;
|
|
86
|
+
if (!('altText' in value) || value['altText'] === undefined) return false;
|
|
86
87
|
if (!('index' in value) || value['index'] === undefined) return false;
|
|
87
88
|
if (!('fileId' in value) || value['fileId'] === undefined) return false;
|
|
88
89
|
if (!('isExternal' in value) || value['isExternal'] === undefined) return false;
|
|
@@ -103,7 +104,7 @@ export function AssetResourceFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
103
104
|
'filePath': json['filePath'],
|
|
104
105
|
'fileName': json['fileName'],
|
|
105
106
|
'mimeType': json['mimeType'],
|
|
106
|
-
'altText': json['altText']
|
|
107
|
+
'altText': json['altText'],
|
|
107
108
|
'index': json['index'],
|
|
108
109
|
'fileId': json['fileId'],
|
|
109
110
|
'isExternal': json['isExternal'],
|
|
@@ -177,7 +177,7 @@ export interface RegisterListResource {
|
|
|
177
177
|
* @type {number}
|
|
178
178
|
* @memberof RegisterListResource
|
|
179
179
|
*/
|
|
180
|
-
signOffLong
|
|
180
|
+
signOffLong?: number | null;
|
|
181
181
|
/**
|
|
182
182
|
*
|
|
183
183
|
* @type {boolean}
|
|
@@ -220,7 +220,6 @@ export function instanceOfRegisterListResource(value: object): value is Register
|
|
|
220
220
|
if (!('firstAid' in value) || value['firstAid'] === undefined) return false;
|
|
221
221
|
if (!('signOnLat' in value) || value['signOnLat'] === undefined) return false;
|
|
222
222
|
if (!('signOnLong' in value) || value['signOnLong'] === undefined) return false;
|
|
223
|
-
if (!('signOffLong' in value) || value['signOffLong'] === undefined) return false;
|
|
224
223
|
if (!('hasIncidents' in value) || value['hasIncidents'] === undefined) return false;
|
|
225
224
|
return true;
|
|
226
225
|
}
|
|
@@ -258,7 +257,7 @@ export function RegisterListResourceFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
258
257
|
'signOnLat': json['signOnLat'],
|
|
259
258
|
'signOnLong': json['signOnLong'],
|
|
260
259
|
'signOffLat': json['signOffLat'] == null ? undefined : json['signOffLat'],
|
|
261
|
-
'signOffLong': json['signOffLong'],
|
|
260
|
+
'signOffLong': json['signOffLong'] == null ? undefined : json['signOffLong'],
|
|
262
261
|
'hasIncidents': json['hasIncidents'],
|
|
263
262
|
};
|
|
264
263
|
}
|