@jrojaspin/security-map-api-cli 9.4.0 → 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 +9 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.mjs +9 -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/MapLayerItemTypeFieldFilterORM.d.ts +2 -0
- package/dist/models/MapLayerItemTypeFieldFilterORM.js +3 -1
- package/dist/models/MapLayerItemTypeFieldFilterORM.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;
|
|
@@ -1680,6 +1684,8 @@ interface MapLayerItemTypeFieldFilterORM {
|
|
|
1680
1684
|
declare const MapLayerItemTypeFieldFilterORMOperatorEnum: {
|
|
1681
1685
|
readonly Includes: "includes";
|
|
1682
1686
|
readonly Excludes: "excludes";
|
|
1687
|
+
readonly Contains: "contains";
|
|
1688
|
+
readonly NotContains: "not_contains";
|
|
1683
1689
|
};
|
|
1684
1690
|
type MapLayerItemTypeFieldFilterORMOperatorEnum = typeof MapLayerItemTypeFieldFilterORMOperatorEnum[keyof typeof MapLayerItemTypeFieldFilterORMOperatorEnum];
|
|
1685
1691
|
declare function instanceOfMapLayerItemTypeFieldFilterORM(value: object): value is MapLayerItemTypeFieldFilterORM;
|
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)
|
|
@@ -4766,7 +4770,9 @@ function MapLayerItemORMToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
4766
4770
|
|
|
4767
4771
|
const MapLayerItemTypeFieldFilterORMOperatorEnum = {
|
|
4768
4772
|
Includes: 'includes',
|
|
4769
|
-
Excludes: 'excludes'
|
|
4773
|
+
Excludes: 'excludes',
|
|
4774
|
+
Contains: 'contains',
|
|
4775
|
+
NotContains: 'not_contains'
|
|
4770
4776
|
};
|
|
4771
4777
|
function instanceOfMapLayerItemTypeFieldFilterORM(value) {
|
|
4772
4778
|
if (!('layerId' in value) || value['layerId'] === undefined)
|