@jrojaspin/security-map-api-cli 8.0.0 → 8.1.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
CHANGED
|
@@ -1192,10 +1192,11 @@ declare function ManualRegisterInputToJSON(json: any): ManualRegisterInput;
|
|
|
1192
1192
|
declare function ManualRegisterInputToJSONTyped(value?: ManualRegisterInput | null, ignoreDiscriminator?: boolean): any;
|
|
1193
1193
|
|
|
1194
1194
|
interface MapClusterORM {
|
|
1195
|
-
|
|
1195
|
+
itemId: number;
|
|
1196
1196
|
count: number;
|
|
1197
1197
|
lat: number;
|
|
1198
1198
|
lon: number;
|
|
1199
|
+
itemData?: MapItemOutputDto;
|
|
1199
1200
|
}
|
|
1200
1201
|
declare function instanceOfMapClusterORM(value: object): value is MapClusterORM;
|
|
1201
1202
|
declare function MapClusterORMFromJSON(json: any): MapClusterORM;
|
package/dist/index.mjs
CHANGED
|
@@ -3379,7 +3379,7 @@ function ManualRegisterInputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
3379
3379
|
}
|
|
3380
3380
|
|
|
3381
3381
|
function instanceOfMapClusterORM(value) {
|
|
3382
|
-
if (!('
|
|
3382
|
+
if (!('itemId' in value) || value['itemId'] === undefined)
|
|
3383
3383
|
return false;
|
|
3384
3384
|
if (!('count' in value) || value['count'] === undefined)
|
|
3385
3385
|
return false;
|
|
@@ -3397,10 +3397,11 @@ function MapClusterORMFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
3397
3397
|
return json;
|
|
3398
3398
|
}
|
|
3399
3399
|
return {
|
|
3400
|
-
'
|
|
3400
|
+
'itemId': json['itemId'],
|
|
3401
3401
|
'count': json['count'],
|
|
3402
3402
|
'lat': json['lat'],
|
|
3403
3403
|
'lon': json['lon'],
|
|
3404
|
+
'itemData': json['itemData'] == null ? undefined : MapItemOutputDtoFromJSON(json['itemData']),
|
|
3404
3405
|
};
|
|
3405
3406
|
}
|
|
3406
3407
|
function MapClusterORMToJSON(json) {
|
|
@@ -3411,10 +3412,11 @@ function MapClusterORMToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
3411
3412
|
return value;
|
|
3412
3413
|
}
|
|
3413
3414
|
return {
|
|
3414
|
-
'
|
|
3415
|
+
'itemId': value['itemId'],
|
|
3415
3416
|
'count': value['count'],
|
|
3416
3417
|
'lat': value['lat'],
|
|
3417
3418
|
'lon': value['lon'],
|
|
3419
|
+
'itemData': MapItemOutputDtoToJSON(value['itemData']),
|
|
3418
3420
|
};
|
|
3419
3421
|
}
|
|
3420
3422
|
|