@ignos/api-client 20260401.97.1 → 20260401.98.1

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.
@@ -3414,35 +3414,12 @@ export interface BuildingFloorDto {
3414
3414
  description?: string | null;
3415
3415
  featureCollection: FeatureCollection;
3416
3416
  }
3417
- export interface GeoJSONObject {
3418
- bbox?: number[] | null;
3419
- crs?: ICRSObject | null;
3420
- type?: GeoJSONObjectType;
3421
- }
3422
- export interface FeatureCollection extends GeoJSONObject {
3423
- type?: GeoJSONObjectType;
3424
- features?: Feature[] | null;
3425
- }
3426
- export type GeoJSONObjectType = "Point" | "MultiPoint" | "LineString" | "MultiLineString" | "Polygon" | "MultiPolygon" | "GeometryCollection" | "Feature" | "FeatureCollection";
3427
- export interface FeatureOfIGeometryObjectAndIDictionaryOfStringAndObject extends GeoJSONObject {
3428
- type?: GeoJSONObjectType;
3429
- id?: string | null;
3430
- geometry?: IGeometryObject | null;
3431
- properties?: {
3432
- [key: string]: any;
3433
- } | null;
3434
- }
3435
- export interface FeatureOfIGeometryObject extends FeatureOfIGeometryObjectAndIDictionaryOfStringAndObject {
3436
- }
3437
- export interface Feature extends FeatureOfIGeometryObject {
3438
- }
3439
- export interface IGeometryObject {
3440
- type?: GeoJSONObjectType;
3441
- }
3442
- export interface ICRSObject {
3443
- type?: CRSType;
3417
+ export interface FeatureCollection {
3418
+ type: FeatureCollectionType;
3419
+ features: Features[];
3420
+ bbox?: number[];
3421
+ [key: string]: any;
3444
3422
  }
3445
- export type CRSType = 0 | 1 | 2;
3446
3423
  export interface CreateBuildingFloor {
3447
3424
  name?: string;
3448
3425
  floor?: string;
@@ -3490,14 +3467,11 @@ export interface FactoryDto {
3490
3467
  companyId?: string | null;
3491
3468
  centerPoint: Point;
3492
3469
  }
3493
- export interface Point extends GeoJSONObject {
3494
- type?: GeoJSONObjectType;
3495
- coordinates?: IPosition | null;
3496
- }
3497
- export interface IPosition {
3498
- altitude?: number | null;
3499
- latitude?: number;
3500
- longitude?: number;
3470
+ export interface Point {
3471
+ type: PointType;
3472
+ coordinates: number[];
3473
+ bbox?: number[];
3474
+ [key: string]: any;
3501
3475
  }
3502
3476
  export interface UpdateFactory {
3503
3477
  centerPoint?: Point;
@@ -9406,6 +9380,24 @@ export interface SetDiscussionLastReadRequest {
9406
9380
  operationId?: string | null;
9407
9381
  resourceId?: string | null;
9408
9382
  }
9383
+ export type FeatureCollectionType = "FeatureCollection";
9384
+ export interface Features {
9385
+ type: FeaturesType;
9386
+ id?: number;
9387
+ properties: any | null;
9388
+ geometry: Geometry | null;
9389
+ bbox?: number[];
9390
+ [key: string]: any;
9391
+ }
9392
+ export type PointType = "Point";
9393
+ export type FeaturesType = "Feature";
9394
+ export interface Geometry {
9395
+ type: GeometryType;
9396
+ coordinates: number[];
9397
+ bbox?: number[];
9398
+ [key: string]: any;
9399
+ }
9400
+ export type GeometryType = "Point";
9409
9401
  export interface FileParameter {
9410
9402
  data: any;
9411
9403
  fileName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260401.97.1",
3
+ "version": "20260401.98.1",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -29574,42 +29574,14 @@ export interface BuildingFloorDto {
29574
29574
  featureCollection: FeatureCollection;
29575
29575
  }
29576
29576
 
29577
- export interface GeoJSONObject {
29578
- bbox?: number[] | null;
29579
- crs?: ICRSObject | null;
29580
- type?: GeoJSONObjectType;
29581
- }
29582
-
29583
- export interface FeatureCollection extends GeoJSONObject {
29584
- type?: GeoJSONObjectType;
29585
- features?: Feature[] | null;
29586
- }
29587
-
29588
- export type GeoJSONObjectType = "Point" | "MultiPoint" | "LineString" | "MultiLineString" | "Polygon" | "MultiPolygon" | "GeometryCollection" | "Feature" | "FeatureCollection";
29577
+ export interface FeatureCollection {
29578
+ type: FeatureCollectionType;
29579
+ features: Features[];
29580
+ bbox?: number[];
29589
29581
 
29590
- export interface FeatureOfIGeometryObjectAndIDictionaryOfStringAndObject extends GeoJSONObject {
29591
- type?: GeoJSONObjectType;
29592
- id?: string | null;
29593
- geometry?: IGeometryObject | null;
29594
- properties?: { [key: string]: any; } | null;
29595
- }
29596
-
29597
- export interface FeatureOfIGeometryObject extends FeatureOfIGeometryObjectAndIDictionaryOfStringAndObject {
29598
- }
29599
-
29600
- export interface Feature extends FeatureOfIGeometryObject {
29601
- }
29602
-
29603
- export interface IGeometryObject {
29604
- type?: GeoJSONObjectType;
29605
- }
29606
-
29607
- export interface ICRSObject {
29608
- type?: CRSType;
29582
+ [key: string]: any;
29609
29583
  }
29610
29584
 
29611
- export type CRSType = 0 | 1 | 2;
29612
-
29613
29585
  export interface CreateBuildingFloor {
29614
29586
  name?: string;
29615
29587
  floor?: string;
@@ -29666,15 +29638,12 @@ export interface FactoryDto {
29666
29638
  centerPoint: Point;
29667
29639
  }
29668
29640
 
29669
- export interface Point extends GeoJSONObject {
29670
- type?: GeoJSONObjectType;
29671
- coordinates?: IPosition | null;
29672
- }
29641
+ export interface Point {
29642
+ type: PointType;
29643
+ coordinates: number[];
29644
+ bbox?: number[];
29673
29645
 
29674
- export interface IPosition {
29675
- altitude?: number | null;
29676
- latitude?: number;
29677
- longitude?: number;
29646
+ [key: string]: any;
29678
29647
  }
29679
29648
 
29680
29649
  export interface UpdateFactory {
@@ -36398,6 +36367,32 @@ export interface SetDiscussionLastReadRequest {
36398
36367
  resourceId?: string | null;
36399
36368
  }
36400
36369
 
36370
+ export type FeatureCollectionType = "FeatureCollection";
36371
+
36372
+ export interface Features {
36373
+ type: FeaturesType;
36374
+ id?: number;
36375
+ properties: any | null;
36376
+ geometry: Geometry | null;
36377
+ bbox?: number[];
36378
+
36379
+ [key: string]: any;
36380
+ }
36381
+
36382
+ export type PointType = "Point";
36383
+
36384
+ export type FeaturesType = "Feature";
36385
+
36386
+ export interface Geometry {
36387
+ type: GeometryType;
36388
+ coordinates: number[];
36389
+ bbox?: number[];
36390
+
36391
+ [key: string]: any;
36392
+ }
36393
+
36394
+ export type GeometryType = "Point";
36395
+
36401
36396
  export interface FileParameter {
36402
36397
  data: any;
36403
36398
  fileName: string;