@jrojaspin/security-map-api-cli 8.2.0 → 8.3.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 +2 -0
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/dist/models/MapLayerInput.d.ts +1 -0
- package/dist/models/MapLayerInput.js +2 -0
- package/dist/models/MapLayerInput.js.map +1 -1
- package/dist/models/MapLayerORM.d.ts +1 -0
- package/dist/models/MapLayerORM.js +2 -0
- package/dist/models/MapLayerORM.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1587,6 +1587,7 @@ interface MapLayerInput {
|
|
|
1587
1587
|
fillContour: number;
|
|
1588
1588
|
contour: Array<CoordDto>;
|
|
1589
1589
|
manualItems: Array<MapItemORM>;
|
|
1590
|
+
iconName?: string;
|
|
1590
1591
|
}
|
|
1591
1592
|
declare function instanceOfMapLayerInput(value: object): value is MapLayerInput;
|
|
1592
1593
|
declare function MapLayerInputFromJSON(json: any): MapLayerInput;
|
|
@@ -1659,6 +1660,7 @@ interface MapLayerORM {
|
|
|
1659
1660
|
code?: string;
|
|
1660
1661
|
drawContour: number;
|
|
1661
1662
|
fillContour: number;
|
|
1663
|
+
iconName?: string;
|
|
1662
1664
|
}
|
|
1663
1665
|
declare function instanceOfMapLayerORM(value: object): value is MapLayerORM;
|
|
1664
1666
|
declare function MapLayerORMFromJSON(json: any): MapLayerORM;
|
package/dist/index.mjs
CHANGED
|
@@ -4545,6 +4545,7 @@ function MapLayerInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
4545
4545
|
'fillContour': json['fillContour'],
|
|
4546
4546
|
'contour': (json['contour'].map(CoordDtoFromJSON)),
|
|
4547
4547
|
'manualItems': (json['manualItems'].map(MapItemORMFromJSON)),
|
|
4548
|
+
'iconName': json['iconName'] == null ? undefined : json['iconName'],
|
|
4548
4549
|
};
|
|
4549
4550
|
}
|
|
4550
4551
|
function MapLayerInputToJSON(json) {
|
|
@@ -4564,6 +4565,7 @@ function MapLayerInputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
4564
4565
|
'fillContour': value['fillContour'],
|
|
4565
4566
|
'contour': (value['contour'].map(CoordDtoToJSON)),
|
|
4566
4567
|
'manualItems': (value['manualItems'].map(MapItemORMToJSON)),
|
|
4568
|
+
'iconName': value['iconName'],
|
|
4567
4569
|
};
|
|
4568
4570
|
}
|
|
4569
4571
|
|
|
@@ -4774,6 +4776,7 @@ function MapLayerORMFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
4774
4776
|
'code': json['code'] == null ? undefined : json['code'],
|
|
4775
4777
|
'drawContour': json['drawContour'],
|
|
4776
4778
|
'fillContour': json['fillContour'],
|
|
4779
|
+
'iconName': json['iconName'] == null ? undefined : json['iconName'],
|
|
4777
4780
|
};
|
|
4778
4781
|
}
|
|
4779
4782
|
function MapLayerORMToJSON(json) {
|
|
@@ -4794,6 +4797,7 @@ function MapLayerORMToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
4794
4797
|
'code': value['code'],
|
|
4795
4798
|
'drawContour': value['drawContour'],
|
|
4796
4799
|
'fillContour': value['fillContour'],
|
|
4800
|
+
'iconName': value['iconName'],
|
|
4797
4801
|
};
|
|
4798
4802
|
}
|
|
4799
4803
|
|