@jrojaspin/security-map-api-cli 9.3.1 → 9.5.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.cjs +15 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.mjs +15 -3
- package/dist/index.mjs.map +1 -1
- package/dist/models/LayerFieldFilterOperator.d.ts +2 -0
- package/dist/models/LayerFieldFilterOperator.js +3 -1
- package/dist/models/LayerFieldFilterOperator.js.map +1 -1
- package/dist/models/LayerItemTypeFieldFilterDto.d.ts +2 -0
- package/dist/models/LayerItemTypeFieldFilterDto.js +3 -1
- package/dist/models/LayerItemTypeFieldFilterDto.js.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/MapLayerItemTypeFieldFilterORM.d.ts +2 -0
- package/dist/models/MapLayerItemTypeFieldFilterORM.js +3 -1
- package/dist/models/MapLayerItemTypeFieldFilterORM.js.map +1 -1
- package/dist/models/MapLayerOutputDto.d.ts +2 -0
- package/dist/models/MapLayerOutputDto.js +4 -0
- package/dist/models/MapLayerOutputDto.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1156,6 +1156,8 @@ declare function JournalEntryOutputToJSONTyped(value?: JournalEntryOutput | null
|
|
|
1156
1156
|
declare const LayerFieldFilterOperator: {
|
|
1157
1157
|
readonly Includes: "includes";
|
|
1158
1158
|
readonly Excludes: "excludes";
|
|
1159
|
+
readonly Contains: "contains";
|
|
1160
|
+
readonly NotContains: "not_contains";
|
|
1159
1161
|
};
|
|
1160
1162
|
type LayerFieldFilterOperator = typeof LayerFieldFilterOperator[keyof typeof LayerFieldFilterOperator];
|
|
1161
1163
|
declare function instanceOfLayerFieldFilterOperator(value: any): boolean;
|
|
@@ -1182,6 +1184,8 @@ interface LayerItemTypeFieldFilterDto {
|
|
|
1182
1184
|
declare const LayerItemTypeFieldFilterDtoOperatorEnum: {
|
|
1183
1185
|
readonly Includes: "includes";
|
|
1184
1186
|
readonly Excludes: "excludes";
|
|
1187
|
+
readonly Contains: "contains";
|
|
1188
|
+
readonly NotContains: "not_contains";
|
|
1185
1189
|
};
|
|
1186
1190
|
type LayerItemTypeFieldFilterDtoOperatorEnum = typeof LayerItemTypeFieldFilterDtoOperatorEnum[keyof typeof LayerItemTypeFieldFilterDtoOperatorEnum];
|
|
1187
1191
|
declare function instanceOfLayerItemTypeFieldFilterDto(value: object): value is LayerItemTypeFieldFilterDto;
|
|
@@ -1635,6 +1639,7 @@ interface MapLayerInput {
|
|
|
1635
1639
|
contour: Array<CoordDto>;
|
|
1636
1640
|
manualItems: Array<MapItemORM>;
|
|
1637
1641
|
iconName?: string;
|
|
1642
|
+
color?: string;
|
|
1638
1643
|
itemTypeFieldFilters?: Array<LayerItemTypeFieldFilterDto>;
|
|
1639
1644
|
}
|
|
1640
1645
|
declare function instanceOfMapLayerInput(value: object): value is MapLayerInput;
|
|
@@ -1679,6 +1684,8 @@ interface MapLayerItemTypeFieldFilterORM {
|
|
|
1679
1684
|
declare const MapLayerItemTypeFieldFilterORMOperatorEnum: {
|
|
1680
1685
|
readonly Includes: "includes";
|
|
1681
1686
|
readonly Excludes: "excludes";
|
|
1687
|
+
readonly Contains: "contains";
|
|
1688
|
+
readonly NotContains: "not_contains";
|
|
1682
1689
|
};
|
|
1683
1690
|
type MapLayerItemTypeFieldFilterORMOperatorEnum = typeof MapLayerItemTypeFieldFilterORMOperatorEnum[keyof typeof MapLayerItemTypeFieldFilterORMOperatorEnum];
|
|
1684
1691
|
declare function instanceOfMapLayerItemTypeFieldFilterORM(value: object): value is MapLayerItemTypeFieldFilterORM;
|
|
@@ -1701,6 +1708,8 @@ interface MapLayerOutputDto {
|
|
|
1701
1708
|
code?: string;
|
|
1702
1709
|
manualItems: Array<MapItemORM>;
|
|
1703
1710
|
itemTypeFieldFilters: Array<LayerItemTypeFieldFilterDto>;
|
|
1711
|
+
iconName?: string;
|
|
1712
|
+
color?: string;
|
|
1704
1713
|
}
|
|
1705
1714
|
declare function instanceOfMapLayerOutputDto(value: object): value is MapLayerOutputDto;
|
|
1706
1715
|
declare function MapLayerOutputDtoFromJSON(json: any): MapLayerOutputDto;
|
package/dist/index.mjs
CHANGED
|
@@ -3253,7 +3253,9 @@ function JournalEntryOutputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
3253
3253
|
|
|
3254
3254
|
const LayerFieldFilterOperator = {
|
|
3255
3255
|
Includes: 'includes',
|
|
3256
|
-
Excludes: 'excludes'
|
|
3256
|
+
Excludes: 'excludes',
|
|
3257
|
+
Contains: 'contains',
|
|
3258
|
+
NotContains: 'not_contains'
|
|
3257
3259
|
};
|
|
3258
3260
|
function instanceOfLayerFieldFilterOperator(value) {
|
|
3259
3261
|
for (const key in LayerFieldFilterOperator) {
|
|
@@ -3308,7 +3310,9 @@ function LayerInputDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
3308
3310
|
|
|
3309
3311
|
const LayerItemTypeFieldFilterDtoOperatorEnum = {
|
|
3310
3312
|
Includes: 'includes',
|
|
3311
|
-
Excludes: 'excludes'
|
|
3313
|
+
Excludes: 'excludes',
|
|
3314
|
+
Contains: 'contains',
|
|
3315
|
+
NotContains: 'not_contains'
|
|
3312
3316
|
};
|
|
3313
3317
|
function instanceOfLayerItemTypeFieldFilterDto(value) {
|
|
3314
3318
|
if (!('itemTypeId' in value) || value['itemTypeId'] === undefined)
|
|
@@ -4657,6 +4661,7 @@ function MapLayerInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
4657
4661
|
'contour': (json['contour'].map(CoordDtoFromJSON)),
|
|
4658
4662
|
'manualItems': (json['manualItems'].map(MapItemORMFromJSON)),
|
|
4659
4663
|
'iconName': json['iconName'] == null ? undefined : json['iconName'],
|
|
4664
|
+
'color': json['color'] == null ? undefined : json['color'],
|
|
4660
4665
|
'itemTypeFieldFilters': json['itemTypeFieldFilters'] == null ? undefined : (json['itemTypeFieldFilters'].map(LayerItemTypeFieldFilterDtoFromJSON)),
|
|
4661
4666
|
};
|
|
4662
4667
|
}
|
|
@@ -4678,6 +4683,7 @@ function MapLayerInputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
4678
4683
|
'contour': (value['contour'].map(CoordDtoToJSON)),
|
|
4679
4684
|
'manualItems': (value['manualItems'].map(MapItemORMToJSON)),
|
|
4680
4685
|
'iconName': value['iconName'],
|
|
4686
|
+
'color': value['color'],
|
|
4681
4687
|
'itemTypeFieldFilters': value['itemTypeFieldFilters'] == null ? undefined : (value['itemTypeFieldFilters'].map(LayerItemTypeFieldFilterDtoToJSON)),
|
|
4682
4688
|
};
|
|
4683
4689
|
}
|
|
@@ -4764,7 +4770,9 @@ function MapLayerItemORMToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
4764
4770
|
|
|
4765
4771
|
const MapLayerItemTypeFieldFilterORMOperatorEnum = {
|
|
4766
4772
|
Includes: 'includes',
|
|
4767
|
-
Excludes: 'excludes'
|
|
4773
|
+
Excludes: 'excludes',
|
|
4774
|
+
Contains: 'contains',
|
|
4775
|
+
NotContains: 'not_contains'
|
|
4768
4776
|
};
|
|
4769
4777
|
function instanceOfMapLayerItemTypeFieldFilterORM(value) {
|
|
4770
4778
|
if (!('layerId' in value) || value['layerId'] === undefined)
|
|
@@ -4858,6 +4866,8 @@ function MapLayerOutputDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
4858
4866
|
'code': json['code'] == null ? undefined : json['code'],
|
|
4859
4867
|
'manualItems': (json['manualItems'].map(MapItemORMFromJSON)),
|
|
4860
4868
|
'itemTypeFieldFilters': (json['itemTypeFieldFilters'].map(LayerItemTypeFieldFilterDtoFromJSON)),
|
|
4869
|
+
'iconName': json['iconName'] == null ? undefined : json['iconName'],
|
|
4870
|
+
'color': json['color'] == null ? undefined : json['color'],
|
|
4861
4871
|
};
|
|
4862
4872
|
}
|
|
4863
4873
|
function MapLayerOutputDtoToJSON(json) {
|
|
@@ -4881,6 +4891,8 @@ function MapLayerOutputDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
4881
4891
|
'code': value['code'],
|
|
4882
4892
|
'manualItems': (value['manualItems'].map(MapItemORMToJSON)),
|
|
4883
4893
|
'itemTypeFieldFilters': (value['itemTypeFieldFilters'].map(LayerItemTypeFieldFilterDtoToJSON)),
|
|
4894
|
+
'iconName': value['iconName'],
|
|
4895
|
+
'color': value['color'],
|
|
4884
4896
|
};
|
|
4885
4897
|
}
|
|
4886
4898
|
|