@ignos/api-client 20260327.92.1 → 20260328.94.1-alpha
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/lib/ignosportal-api.d.ts +15 -9
- package/package.json +1 -1
- package/src/ignosportal-api.ts +15 -9
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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
|
|
3394
|
-
floor
|
|
3394
|
+
name: string;
|
|
3395
|
+
floor: string;
|
|
3395
3396
|
description?: string | null;
|
|
3396
|
-
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
|
|
3441
|
+
name: string;
|
|
3440
3442
|
description?: string | null;
|
|
3441
|
-
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
|
|
3455
|
-
buildingFloorId
|
|
3456
|
-
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
|
|
3473
|
+
centerPoint: Point;
|
|
3470
3474
|
}
|
|
3471
3475
|
export interface Point extends GeoJSONObject {
|
|
3472
3476
|
type?: GeoJSONObjectType;
|
|
@@ -6633,6 +6637,7 @@ export interface LocationDto {
|
|
|
6633
6637
|
zoneName?: string | null;
|
|
6634
6638
|
kind: LocationKindDto;
|
|
6635
6639
|
profile?: string | null;
|
|
6640
|
+
resourceName?: string | null;
|
|
6636
6641
|
}
|
|
6637
6642
|
export type LocationKindDto = "Warehouse" | "Zone" | "Location";
|
|
6638
6643
|
export interface BookingRequestListDto {
|
|
@@ -6798,6 +6803,7 @@ export interface LocationMaterialDto {
|
|
|
6798
6803
|
zoneName?: string | null;
|
|
6799
6804
|
kind: LocationKindDto;
|
|
6800
6805
|
profile?: string | null;
|
|
6806
|
+
resourceName?: string | null;
|
|
6801
6807
|
materialAvailable: number;
|
|
6802
6808
|
}
|
|
6803
6809
|
export interface MaterialDesciptionDto {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -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
|
|
29433
|
-
floor
|
|
29433
|
+
name: string;
|
|
29434
|
+
floor: string;
|
|
29434
29435
|
description?: string | null;
|
|
29435
|
-
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
|
|
29490
|
+
name: string;
|
|
29489
29491
|
description?: string | null;
|
|
29490
|
-
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
|
|
29507
|
-
buildingFloorId
|
|
29508
|
-
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
|
|
29528
|
+
centerPoint: Point;
|
|
29525
29529
|
}
|
|
29526
29530
|
|
|
29527
29531
|
export interface Point extends GeoJSONObject {
|
|
@@ -33145,6 +33149,7 @@ export interface LocationDto {
|
|
|
33145
33149
|
zoneName?: string | null;
|
|
33146
33150
|
kind: LocationKindDto;
|
|
33147
33151
|
profile?: string | null;
|
|
33152
|
+
resourceName?: string | null;
|
|
33148
33153
|
}
|
|
33149
33154
|
|
|
33150
33155
|
export type LocationKindDto = "Warehouse" | "Zone" | "Location";
|
|
@@ -33337,6 +33342,7 @@ export interface LocationMaterialDto {
|
|
|
33337
33342
|
zoneName?: string | null;
|
|
33338
33343
|
kind: LocationKindDto;
|
|
33339
33344
|
profile?: string | null;
|
|
33345
|
+
resourceName?: string | null;
|
|
33340
33346
|
materialAvailable: number;
|
|
33341
33347
|
}
|
|
33342
33348
|
|