@jrojaspin/security-map-api-cli 5.8.0 → 5.9.0
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.d.ts +5 -0
- package/dist/index.mjs +20 -0
- package/dist/index.mjs.map +1 -1
- package/dist/models/MapLayerORM.d.ts +2 -0
- package/dist/models/MapLayerORM.js +8 -0
- package/dist/models/MapLayerORM.js.map +1 -1
- package/dist/models/MapLayerOutputDto.d.ts +3 -0
- package/dist/models/MapLayerOutputDto.js +12 -0
- package/dist/models/MapLayerOutputDto.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1408,6 +1408,9 @@ interface MapLayerOutputDto {
|
|
|
1408
1408
|
title: string;
|
|
1409
1409
|
itemTypeFilter: Array<number>;
|
|
1410
1410
|
contour: Array<CoordDto>;
|
|
1411
|
+
drawContour: number;
|
|
1412
|
+
fillContour: number;
|
|
1413
|
+
allowIndividualItemVisibility: number;
|
|
1411
1414
|
itemDecorations: Array<ItemDecorationDto>;
|
|
1412
1415
|
createDate: string;
|
|
1413
1416
|
deleteDate?: string;
|
|
@@ -1436,6 +1439,8 @@ interface MapLayerORM {
|
|
|
1436
1439
|
deleteDate?: string;
|
|
1437
1440
|
allowIndividualItemVisibility: number;
|
|
1438
1441
|
code?: string;
|
|
1442
|
+
drawContour: number;
|
|
1443
|
+
fillContour: number;
|
|
1439
1444
|
}
|
|
1440
1445
|
declare function instanceOfMapLayerORM(value: object): value is MapLayerORM;
|
|
1441
1446
|
declare function MapLayerORMFromJSON(json: any): MapLayerORM;
|
package/dist/index.mjs
CHANGED
|
@@ -3997,6 +3997,12 @@ function instanceOfMapLayerOutputDto(value) {
|
|
|
3997
3997
|
return false;
|
|
3998
3998
|
if (!('contour' in value) || value['contour'] === undefined)
|
|
3999
3999
|
return false;
|
|
4000
|
+
if (!('drawContour' in value) || value['drawContour'] === undefined)
|
|
4001
|
+
return false;
|
|
4002
|
+
if (!('fillContour' in value) || value['fillContour'] === undefined)
|
|
4003
|
+
return false;
|
|
4004
|
+
if (!('allowIndividualItemVisibility' in value) || value['allowIndividualItemVisibility'] === undefined)
|
|
4005
|
+
return false;
|
|
4000
4006
|
if (!('itemDecorations' in value) || value['itemDecorations'] === undefined)
|
|
4001
4007
|
return false;
|
|
4002
4008
|
if (!('createDate' in value) || value['createDate'] === undefined)
|
|
@@ -4016,6 +4022,9 @@ function MapLayerOutputDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
4016
4022
|
'title': json['title'],
|
|
4017
4023
|
'itemTypeFilter': json['itemTypeFilter'],
|
|
4018
4024
|
'contour': (json['contour'].map(CoordDtoFromJSON)),
|
|
4025
|
+
'drawContour': json['drawContour'],
|
|
4026
|
+
'fillContour': json['fillContour'],
|
|
4027
|
+
'allowIndividualItemVisibility': json['allowIndividualItemVisibility'],
|
|
4019
4028
|
'itemDecorations': (json['itemDecorations'].map(ItemDecorationDtoFromJSON)),
|
|
4020
4029
|
'createDate': json['createDate'],
|
|
4021
4030
|
'deleteDate': json['deleteDate'] == null ? undefined : json['deleteDate'],
|
|
@@ -4034,6 +4043,9 @@ function MapLayerOutputDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
4034
4043
|
'title': value['title'],
|
|
4035
4044
|
'itemTypeFilter': value['itemTypeFilter'],
|
|
4036
4045
|
'contour': (value['contour'].map(CoordDtoToJSON)),
|
|
4046
|
+
'drawContour': value['drawContour'],
|
|
4047
|
+
'fillContour': value['fillContour'],
|
|
4048
|
+
'allowIndividualItemVisibility': value['allowIndividualItemVisibility'],
|
|
4037
4049
|
'itemDecorations': (value['itemDecorations'].map(ItemDecorationDtoToJSON)),
|
|
4038
4050
|
'createDate': value['createDate'],
|
|
4039
4051
|
'deleteDate': value['deleteDate'],
|
|
@@ -4075,6 +4087,10 @@ function instanceOfMapLayerORM(value) {
|
|
|
4075
4087
|
return false;
|
|
4076
4088
|
if (!('allowIndividualItemVisibility' in value) || value['allowIndividualItemVisibility'] === undefined)
|
|
4077
4089
|
return false;
|
|
4090
|
+
if (!('drawContour' in value) || value['drawContour'] === undefined)
|
|
4091
|
+
return false;
|
|
4092
|
+
if (!('fillContour' in value) || value['fillContour'] === undefined)
|
|
4093
|
+
return false;
|
|
4078
4094
|
return true;
|
|
4079
4095
|
}
|
|
4080
4096
|
function MapLayerORMFromJSON(json) {
|
|
@@ -4093,6 +4109,8 @@ function MapLayerORMFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
4093
4109
|
'deleteDate': json['deleteDate'] == null ? undefined : json['deleteDate'],
|
|
4094
4110
|
'allowIndividualItemVisibility': json['allowIndividualItemVisibility'],
|
|
4095
4111
|
'code': json['code'] == null ? undefined : json['code'],
|
|
4112
|
+
'drawContour': json['drawContour'],
|
|
4113
|
+
'fillContour': json['fillContour'],
|
|
4096
4114
|
};
|
|
4097
4115
|
}
|
|
4098
4116
|
function MapLayerORMToJSON(json) {
|
|
@@ -4111,6 +4129,8 @@ function MapLayerORMToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
4111
4129
|
'deleteDate': value['deleteDate'],
|
|
4112
4130
|
'allowIndividualItemVisibility': value['allowIndividualItemVisibility'],
|
|
4113
4131
|
'code': value['code'],
|
|
4132
|
+
'drawContour': value['drawContour'],
|
|
4133
|
+
'fillContour': value['fillContour'],
|
|
4114
4134
|
};
|
|
4115
4135
|
}
|
|
4116
4136
|
|