@ignos/api-client 20260327.92.1 → 20260327.93.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.
@@ -3389,11 +3389,12 @@ export interface ComponentSettingsDto {
3389
3389
  disabledFields?: string[] | null;
3390
3390
  }
3391
3391
  export interface BuildingFloorDto {
3392
+ id: string;
3392
3393
  companyId?: string | null;
3393
- name?: string;
3394
- floor?: string;
3394
+ name: string;
3395
+ floor: string;
3395
3396
  description?: string | null;
3396
- featureCollection?: FeatureCollection;
3397
+ featureCollection: FeatureCollection;
3397
3398
  }
3398
3399
  export interface GeoJSONObject {
3399
3400
  bbox?: number[] | null;
@@ -3435,10 +3436,11 @@ export interface UpdateBuildingFloorRequest {
3435
3436
  featureCollection?: FeatureCollection;
3436
3437
  }
3437
3438
  export interface GateDto {
3439
+ id: string;
3438
3440
  companyId?: string | null;
3439
- name?: string;
3441
+ name: string;
3440
3442
  description?: string | null;
3441
- featureCollection?: FeatureCollection;
3443
+ featureCollection: FeatureCollection;
3442
3444
  }
3443
3445
  export interface CreateGate {
3444
3446
  name?: string;
@@ -3450,10 +3452,11 @@ export interface UpdateGateRequest {
3450
3452
  featureCollection?: FeatureCollection;
3451
3453
  }
3452
3454
  export interface ApplicationSpatialResourceDto {
3455
+ id: string;
3453
3456
  companyId?: string | null;
3454
- externalId?: string;
3455
- buildingFloorId?: string;
3456
- featureCollection?: FeatureCollection;
3457
+ externalId: string;
3458
+ buildingFloorId: string;
3459
+ featureCollection: FeatureCollection;
3457
3460
  }
3458
3461
  export interface CreateResource {
3459
3462
  externalId?: string;
@@ -3465,8 +3468,9 @@ export interface UpdateResourceRequest {
3465
3468
  featureCollection?: FeatureCollection;
3466
3469
  }
3467
3470
  export interface FactoryDto {
3471
+ id: string;
3468
3472
  companyId?: string | null;
3469
- centerPoint?: Point;
3473
+ centerPoint: Point;
3470
3474
  }
3471
3475
  export interface Point extends GeoJSONObject {
3472
3476
  type?: GeoJSONObjectType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260327.92.1",
3
+ "version": "20260327.93.1",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -29428,11 +29428,12 @@ export interface ComponentSettingsDto {
29428
29428
  }
29429
29429
 
29430
29430
  export interface BuildingFloorDto {
29431
+ id: string;
29431
29432
  companyId?: string | null;
29432
- name?: string;
29433
- floor?: string;
29433
+ name: string;
29434
+ floor: string;
29434
29435
  description?: string | null;
29435
- featureCollection?: FeatureCollection;
29436
+ featureCollection: FeatureCollection;
29436
29437
  }
29437
29438
 
29438
29439
  export interface GeoJSONObject {
@@ -29484,10 +29485,11 @@ export interface UpdateBuildingFloorRequest {
29484
29485
  }
29485
29486
 
29486
29487
  export interface GateDto {
29488
+ id: string;
29487
29489
  companyId?: string | null;
29488
- name?: string;
29490
+ name: string;
29489
29491
  description?: string | null;
29490
- featureCollection?: FeatureCollection;
29492
+ featureCollection: FeatureCollection;
29491
29493
  }
29492
29494
 
29493
29495
  export interface CreateGate {
@@ -29502,10 +29504,11 @@ export interface UpdateGateRequest {
29502
29504
  }
29503
29505
 
29504
29506
  export interface ApplicationSpatialResourceDto {
29507
+ id: string;
29505
29508
  companyId?: string | null;
29506
- externalId?: string;
29507
- buildingFloorId?: string;
29508
- featureCollection?: FeatureCollection;
29509
+ externalId: string;
29510
+ buildingFloorId: string;
29511
+ featureCollection: FeatureCollection;
29509
29512
  }
29510
29513
 
29511
29514
  export interface CreateResource {
@@ -29520,8 +29523,9 @@ export interface UpdateResourceRequest {
29520
29523
  }
29521
29524
 
29522
29525
  export interface FactoryDto {
29526
+ id: string;
29523
29527
  companyId?: string | null;
29524
- centerPoint?: Point;
29528
+ centerPoint: Point;
29525
29529
  }
29526
29530
 
29527
29531
  export interface Point extends GeoJSONObject {