@jrojaspin/security-map-api-cli 9.3.0 → 9.3.1
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/dist/index.cjs +1 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -3
- package/dist/index.mjs.map +1 -1
- package/dist/models/MapItemInput.d.ts +1 -1
- package/dist/models/MapItemInput.js +1 -3
- package/dist/models/MapItemInput.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3753,8 +3753,6 @@ function instanceOfMapItemInput(value) {
|
|
|
3753
3753
|
return false;
|
|
3754
3754
|
if (!('stateId' in value) || value['stateId'] === undefined)
|
|
3755
3755
|
return false;
|
|
3756
|
-
if (!('description' in value) || value['description'] === undefined)
|
|
3757
|
-
return false;
|
|
3758
3756
|
if (!('mapItemTypeId' in value) || value['mapItemTypeId'] === undefined)
|
|
3759
3757
|
return false;
|
|
3760
3758
|
return true;
|
|
@@ -3773,7 +3771,7 @@ function MapItemInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
3773
3771
|
'layerId': json['layerId'] == null ? undefined : json['layerId'],
|
|
3774
3772
|
'stateId': json['stateId'],
|
|
3775
3773
|
'title': json['title'] == null ? undefined : json['title'],
|
|
3776
|
-
'description': json['description'],
|
|
3774
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
3777
3775
|
'mapItemTypeId': json['mapItemTypeId'],
|
|
3778
3776
|
'id': json['id'] == null ? undefined : json['id'],
|
|
3779
3777
|
'version': json['version'] == null ? undefined : json['version'],
|