@seamapi/types 1.320.0 → 1.321.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/connect.cjs +124 -23
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +179 -52
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +105 -13
- package/lib/seam/connect/models/acs/acs-access-group.js +28 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +0 -10
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +0 -6
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +0 -2
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +75 -12
- package/lib/seam/connect/openapi.js +88 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +44 -18
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +45 -0
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +0 -2
- package/src/lib/seam/connect/openapi.ts +101 -5
- package/src/lib/seam/connect/route-types.ts +44 -10
package/dist/connect.d.cts
CHANGED
|
@@ -313,37 +313,61 @@ declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
313
313
|
acs_system_id: z.ZodString;
|
|
314
314
|
workspace_id: z.ZodString;
|
|
315
315
|
name: z.ZodString;
|
|
316
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
316
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
317
317
|
access_group_type_display_name: z.ZodString;
|
|
318
318
|
display_name: z.ZodString;
|
|
319
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
319
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
320
320
|
external_type_display_name: z.ZodString;
|
|
321
321
|
created_at: z.ZodString;
|
|
322
|
+
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
323
|
+
created_at: z.ZodString;
|
|
324
|
+
message: z.ZodString;
|
|
325
|
+
}, {
|
|
326
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_access_group">;
|
|
327
|
+
}>, "strip", z.ZodTypeAny, {
|
|
328
|
+
message: string;
|
|
329
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
330
|
+
created_at: string;
|
|
331
|
+
}, {
|
|
332
|
+
message: string;
|
|
333
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
334
|
+
created_at: string;
|
|
335
|
+
}>, "many">;
|
|
322
336
|
}, {
|
|
323
337
|
is_managed: z.ZodLiteral<true>;
|
|
324
338
|
}>, "strip", z.ZodTypeAny, {
|
|
325
339
|
created_at: string;
|
|
340
|
+
warnings: {
|
|
341
|
+
message: string;
|
|
342
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
343
|
+
created_at: string;
|
|
344
|
+
}[];
|
|
326
345
|
name: string;
|
|
327
346
|
display_name: string;
|
|
328
347
|
workspace_id: string;
|
|
329
348
|
is_managed: true;
|
|
330
349
|
acs_access_group_id: string;
|
|
331
350
|
acs_system_id: string;
|
|
332
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
351
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
333
352
|
access_group_type_display_name: string;
|
|
334
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
353
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
335
354
|
external_type_display_name: string;
|
|
336
355
|
}, {
|
|
337
356
|
created_at: string;
|
|
357
|
+
warnings: {
|
|
358
|
+
message: string;
|
|
359
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
360
|
+
created_at: string;
|
|
361
|
+
}[];
|
|
338
362
|
name: string;
|
|
339
363
|
display_name: string;
|
|
340
364
|
workspace_id: string;
|
|
341
365
|
is_managed: true;
|
|
342
366
|
acs_access_group_id: string;
|
|
343
367
|
acs_system_id: string;
|
|
344
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
368
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
345
369
|
access_group_type_display_name: string;
|
|
346
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
370
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
347
371
|
external_type_display_name: string;
|
|
348
372
|
}>;
|
|
349
373
|
declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -351,37 +375,61 @@ declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
351
375
|
acs_system_id: z.ZodString;
|
|
352
376
|
workspace_id: z.ZodString;
|
|
353
377
|
name: z.ZodString;
|
|
354
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
378
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
355
379
|
access_group_type_display_name: z.ZodString;
|
|
356
380
|
display_name: z.ZodString;
|
|
357
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
381
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
358
382
|
external_type_display_name: z.ZodString;
|
|
359
383
|
created_at: z.ZodString;
|
|
384
|
+
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
385
|
+
created_at: z.ZodString;
|
|
386
|
+
message: z.ZodString;
|
|
387
|
+
}, {
|
|
388
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_access_group">;
|
|
389
|
+
}>, "strip", z.ZodTypeAny, {
|
|
390
|
+
message: string;
|
|
391
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
392
|
+
created_at: string;
|
|
393
|
+
}, {
|
|
394
|
+
message: string;
|
|
395
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
396
|
+
created_at: string;
|
|
397
|
+
}>, "many">;
|
|
360
398
|
}, {
|
|
361
399
|
is_managed: z.ZodLiteral<false>;
|
|
362
400
|
}>, "strip", z.ZodTypeAny, {
|
|
363
401
|
created_at: string;
|
|
402
|
+
warnings: {
|
|
403
|
+
message: string;
|
|
404
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
405
|
+
created_at: string;
|
|
406
|
+
}[];
|
|
364
407
|
name: string;
|
|
365
408
|
display_name: string;
|
|
366
409
|
workspace_id: string;
|
|
367
410
|
is_managed: false;
|
|
368
411
|
acs_access_group_id: string;
|
|
369
412
|
acs_system_id: string;
|
|
370
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
413
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
371
414
|
access_group_type_display_name: string;
|
|
372
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
415
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
373
416
|
external_type_display_name: string;
|
|
374
417
|
}, {
|
|
375
418
|
created_at: string;
|
|
419
|
+
warnings: {
|
|
420
|
+
message: string;
|
|
421
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
422
|
+
created_at: string;
|
|
423
|
+
}[];
|
|
376
424
|
name: string;
|
|
377
425
|
display_name: string;
|
|
378
426
|
workspace_id: string;
|
|
379
427
|
is_managed: false;
|
|
380
428
|
acs_access_group_id: string;
|
|
381
429
|
acs_system_id: string;
|
|
382
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
430
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
383
431
|
access_group_type_display_name: string;
|
|
384
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
432
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
385
433
|
external_type_display_name: string;
|
|
386
434
|
}>;
|
|
387
435
|
type AcsAccessGroup = z.output<typeof acs_access_group>;
|
|
@@ -1013,18 +1061,12 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1013
1061
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
1014
1062
|
access_point_name: z.ZodString;
|
|
1015
1063
|
common_area_number: z.ZodOptional<z.ZodNumber>;
|
|
1016
|
-
inner_access_points_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1017
|
-
lease_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1018
1064
|
}, "strip", z.ZodTypeAny, {
|
|
1019
1065
|
access_point_name: string;
|
|
1020
1066
|
common_area_number?: number | undefined;
|
|
1021
|
-
inner_access_points_names?: string[] | undefined;
|
|
1022
|
-
lease_ids?: string[] | undefined;
|
|
1023
1067
|
}, {
|
|
1024
1068
|
access_point_name: string;
|
|
1025
1069
|
common_area_number?: number | undefined;
|
|
1026
|
-
inner_access_points_names?: string[] | undefined;
|
|
1027
|
-
lease_ids?: string[] | undefined;
|
|
1028
1070
|
}>>;
|
|
1029
1071
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
1030
1072
|
door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
|
|
@@ -1101,8 +1143,6 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1101
1143
|
dormakaba_community_metadata?: {
|
|
1102
1144
|
access_point_name: string;
|
|
1103
1145
|
common_area_number?: number | undefined;
|
|
1104
|
-
inner_access_points_names?: string[] | undefined;
|
|
1105
|
-
lease_ids?: string[] | undefined;
|
|
1106
1146
|
} | undefined;
|
|
1107
1147
|
salto_space_metadata?: {
|
|
1108
1148
|
door_name: string;
|
|
@@ -1152,8 +1192,6 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1152
1192
|
dormakaba_community_metadata?: {
|
|
1153
1193
|
access_point_name: string;
|
|
1154
1194
|
common_area_number?: number | undefined;
|
|
1155
|
-
inner_access_points_names?: string[] | undefined;
|
|
1156
|
-
lease_ids?: string[] | undefined;
|
|
1157
1195
|
} | undefined;
|
|
1158
1196
|
salto_space_metadata?: {
|
|
1159
1197
|
door_name: string;
|
|
@@ -12810,6 +12848,31 @@ declare const _default: {
|
|
|
12810
12848
|
description: string;
|
|
12811
12849
|
type: string;
|
|
12812
12850
|
};
|
|
12851
|
+
warnings: {
|
|
12852
|
+
description: string;
|
|
12853
|
+
items: {
|
|
12854
|
+
description: string;
|
|
12855
|
+
properties: {
|
|
12856
|
+
created_at: {
|
|
12857
|
+
description: string;
|
|
12858
|
+
format: string;
|
|
12859
|
+
type: string;
|
|
12860
|
+
};
|
|
12861
|
+
message: {
|
|
12862
|
+
description: string;
|
|
12863
|
+
type: string;
|
|
12864
|
+
};
|
|
12865
|
+
warning_code: {
|
|
12866
|
+
description: string;
|
|
12867
|
+
enum: string[];
|
|
12868
|
+
type: string;
|
|
12869
|
+
};
|
|
12870
|
+
};
|
|
12871
|
+
required: string[];
|
|
12872
|
+
type: string;
|
|
12873
|
+
};
|
|
12874
|
+
type: string;
|
|
12875
|
+
};
|
|
12813
12876
|
workspace_id: {
|
|
12814
12877
|
description: string;
|
|
12815
12878
|
format: string;
|
|
@@ -13126,18 +13189,6 @@ declare const _default: {
|
|
|
13126
13189
|
format: string;
|
|
13127
13190
|
type: string;
|
|
13128
13191
|
};
|
|
13129
|
-
inner_access_points_names: {
|
|
13130
|
-
items: {
|
|
13131
|
-
type: string;
|
|
13132
|
-
};
|
|
13133
|
-
type: string;
|
|
13134
|
-
};
|
|
13135
|
-
lease_ids: {
|
|
13136
|
-
items: {
|
|
13137
|
-
type: string;
|
|
13138
|
-
};
|
|
13139
|
-
type: string;
|
|
13140
|
-
};
|
|
13141
13192
|
};
|
|
13142
13193
|
required: string[];
|
|
13143
13194
|
type: string;
|
|
@@ -22314,6 +22365,31 @@ declare const _default: {
|
|
|
22314
22365
|
description: string;
|
|
22315
22366
|
type: string;
|
|
22316
22367
|
};
|
|
22368
|
+
warnings: {
|
|
22369
|
+
description: string;
|
|
22370
|
+
items: {
|
|
22371
|
+
description: string;
|
|
22372
|
+
properties: {
|
|
22373
|
+
created_at: {
|
|
22374
|
+
description: string;
|
|
22375
|
+
format: string;
|
|
22376
|
+
type: string;
|
|
22377
|
+
};
|
|
22378
|
+
message: {
|
|
22379
|
+
description: string;
|
|
22380
|
+
type: string;
|
|
22381
|
+
};
|
|
22382
|
+
warning_code: {
|
|
22383
|
+
description: string;
|
|
22384
|
+
enum: string[];
|
|
22385
|
+
type: string;
|
|
22386
|
+
};
|
|
22387
|
+
};
|
|
22388
|
+
required: string[];
|
|
22389
|
+
type: string;
|
|
22390
|
+
};
|
|
22391
|
+
type: string;
|
|
22392
|
+
};
|
|
22317
22393
|
workspace_id: {
|
|
22318
22394
|
description: string;
|
|
22319
22395
|
format: string;
|
|
@@ -22443,6 +22519,31 @@ declare const _default: {
|
|
|
22443
22519
|
description: string;
|
|
22444
22520
|
type: string;
|
|
22445
22521
|
};
|
|
22522
|
+
warnings: {
|
|
22523
|
+
description: string;
|
|
22524
|
+
items: {
|
|
22525
|
+
description: string;
|
|
22526
|
+
properties: {
|
|
22527
|
+
created_at: {
|
|
22528
|
+
description: string;
|
|
22529
|
+
format: string;
|
|
22530
|
+
type: string;
|
|
22531
|
+
};
|
|
22532
|
+
message: {
|
|
22533
|
+
description: string;
|
|
22534
|
+
type: string;
|
|
22535
|
+
};
|
|
22536
|
+
warning_code: {
|
|
22537
|
+
description: string;
|
|
22538
|
+
enum: string[];
|
|
22539
|
+
type: string;
|
|
22540
|
+
};
|
|
22541
|
+
};
|
|
22542
|
+
required: string[];
|
|
22543
|
+
type: string;
|
|
22544
|
+
};
|
|
22545
|
+
type: string;
|
|
22546
|
+
};
|
|
22446
22547
|
workspace_id: {
|
|
22447
22548
|
description: string;
|
|
22448
22549
|
format: string;
|
|
@@ -39971,17 +40072,26 @@ interface Routes {
|
|
|
39971
40072
|
name: string;
|
|
39972
40073
|
/**
|
|
39973
40074
|
* @deprecated Use `external_type`. */
|
|
39974
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40075
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
39975
40076
|
/**
|
|
39976
40077
|
* @deprecated Use `external_type_display_name`. */
|
|
39977
40078
|
access_group_type_display_name: string;
|
|
39978
40079
|
display_name: string;
|
|
39979
40080
|
/** Brand-specific terminology for the access group type. */
|
|
39980
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40081
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
39981
40082
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
39982
40083
|
external_type_display_name: string;
|
|
39983
40084
|
/** Date and time at which the access group was created. */
|
|
39984
40085
|
created_at: string;
|
|
40086
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
40087
|
+
warnings: Array<{
|
|
40088
|
+
/** Date and time at which Seam created the warning. */
|
|
40089
|
+
created_at: string;
|
|
40090
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40091
|
+
message: string;
|
|
40092
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40093
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
40094
|
+
}>;
|
|
39985
40095
|
is_managed: true;
|
|
39986
40096
|
};
|
|
39987
40097
|
};
|
|
@@ -40010,17 +40120,26 @@ interface Routes {
|
|
|
40010
40120
|
name: string;
|
|
40011
40121
|
/**
|
|
40012
40122
|
* @deprecated Use `external_type`. */
|
|
40013
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40123
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40014
40124
|
/**
|
|
40015
40125
|
* @deprecated Use `external_type_display_name`. */
|
|
40016
40126
|
access_group_type_display_name: string;
|
|
40017
40127
|
display_name: string;
|
|
40018
40128
|
/** Brand-specific terminology for the access group type. */
|
|
40019
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40129
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40020
40130
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
40021
40131
|
external_type_display_name: string;
|
|
40022
40132
|
/** Date and time at which the access group was created. */
|
|
40023
40133
|
created_at: string;
|
|
40134
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
40135
|
+
warnings: Array<{
|
|
40136
|
+
/** Date and time at which Seam created the warning. */
|
|
40137
|
+
created_at: string;
|
|
40138
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40139
|
+
message: string;
|
|
40140
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40141
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
40142
|
+
}>;
|
|
40024
40143
|
is_managed: true;
|
|
40025
40144
|
}>;
|
|
40026
40145
|
};
|
|
@@ -40076,8 +40195,6 @@ interface Routes {
|
|
|
40076
40195
|
dormakaba_community_metadata?: {
|
|
40077
40196
|
access_point_name: string;
|
|
40078
40197
|
common_area_number?: number | undefined;
|
|
40079
|
-
inner_access_points_names?: string[] | undefined;
|
|
40080
|
-
lease_ids?: string[] | undefined;
|
|
40081
40198
|
} | undefined;
|
|
40082
40199
|
assa_abloy_vostio_metadata?: {
|
|
40083
40200
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -40233,17 +40350,26 @@ interface Routes {
|
|
|
40233
40350
|
name: string;
|
|
40234
40351
|
/**
|
|
40235
40352
|
* @deprecated Use `external_type`. */
|
|
40236
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40353
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40237
40354
|
/**
|
|
40238
40355
|
* @deprecated Use `external_type_display_name`. */
|
|
40239
40356
|
access_group_type_display_name: string;
|
|
40240
40357
|
display_name: string;
|
|
40241
40358
|
/** Brand-specific terminology for the access group type. */
|
|
40242
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40359
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40243
40360
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
40244
40361
|
external_type_display_name: string;
|
|
40245
40362
|
/** Date and time at which the access group was created. */
|
|
40246
40363
|
created_at: string;
|
|
40364
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
40365
|
+
warnings: Array<{
|
|
40366
|
+
/** Date and time at which Seam created the warning. */
|
|
40367
|
+
created_at: string;
|
|
40368
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40369
|
+
message: string;
|
|
40370
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40371
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
40372
|
+
}>;
|
|
40247
40373
|
is_managed: false;
|
|
40248
40374
|
};
|
|
40249
40375
|
};
|
|
@@ -40272,17 +40398,26 @@ interface Routes {
|
|
|
40272
40398
|
name: string;
|
|
40273
40399
|
/**
|
|
40274
40400
|
* @deprecated Use `external_type`. */
|
|
40275
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40401
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40276
40402
|
/**
|
|
40277
40403
|
* @deprecated Use `external_type_display_name`. */
|
|
40278
40404
|
access_group_type_display_name: string;
|
|
40279
40405
|
display_name: string;
|
|
40280
40406
|
/** Brand-specific terminology for the access group type. */
|
|
40281
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40407
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40282
40408
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
40283
40409
|
external_type_display_name: string;
|
|
40284
40410
|
/** Date and time at which the access group was created. */
|
|
40285
40411
|
created_at: string;
|
|
40412
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
40413
|
+
warnings: Array<{
|
|
40414
|
+
/** Date and time at which Seam created the warning. */
|
|
40415
|
+
created_at: string;
|
|
40416
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40417
|
+
message: string;
|
|
40418
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40419
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
40420
|
+
}>;
|
|
40286
40421
|
is_managed: false;
|
|
40287
40422
|
}>;
|
|
40288
40423
|
};
|
|
@@ -40999,8 +41134,6 @@ interface Routes {
|
|
|
40999
41134
|
dormakaba_community_metadata?: {
|
|
41000
41135
|
access_point_name: string;
|
|
41001
41136
|
common_area_number?: number | undefined;
|
|
41002
|
-
inner_access_points_names?: string[] | undefined;
|
|
41003
|
-
lease_ids?: string[] | undefined;
|
|
41004
41137
|
} | undefined;
|
|
41005
41138
|
assa_abloy_vostio_metadata?: {
|
|
41006
41139
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -43234,8 +43367,6 @@ interface Routes {
|
|
|
43234
43367
|
dormakaba_community_metadata?: {
|
|
43235
43368
|
access_point_name: string;
|
|
43236
43369
|
common_area_number?: number | undefined;
|
|
43237
|
-
inner_access_points_names?: string[] | undefined;
|
|
43238
|
-
lease_ids?: string[] | undefined;
|
|
43239
43370
|
} | undefined;
|
|
43240
43371
|
assa_abloy_vostio_metadata?: {
|
|
43241
43372
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -43315,8 +43446,6 @@ interface Routes {
|
|
|
43315
43446
|
dormakaba_community_metadata?: {
|
|
43316
43447
|
access_point_name: string;
|
|
43317
43448
|
common_area_number?: number | undefined;
|
|
43318
|
-
inner_access_points_names?: string[] | undefined;
|
|
43319
|
-
lease_ids?: string[] | undefined;
|
|
43320
43449
|
} | undefined;
|
|
43321
43450
|
assa_abloy_vostio_metadata?: {
|
|
43322
43451
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -44236,8 +44365,6 @@ interface Routes {
|
|
|
44236
44365
|
dormakaba_community_metadata?: {
|
|
44237
44366
|
access_point_name: string;
|
|
44238
44367
|
common_area_number?: number | undefined;
|
|
44239
|
-
inner_access_points_names?: string[] | undefined;
|
|
44240
|
-
lease_ids?: string[] | undefined;
|
|
44241
44368
|
} | undefined;
|
|
44242
44369
|
assa_abloy_vostio_metadata?: {
|
|
44243
44370
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -1,42 +1,109 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_access_group_external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
2
|
+
export declare const acs_access_group_external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
3
3
|
export type AcsAccessGroupExternalType = z.infer<typeof acs_access_group_external_type>;
|
|
4
|
+
export declare const unknown_issue_with_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
5
|
+
created_at: z.ZodString;
|
|
6
|
+
message: z.ZodString;
|
|
7
|
+
}, {
|
|
8
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_access_group">;
|
|
9
|
+
}>, "strip", z.ZodTypeAny, {
|
|
10
|
+
message: string;
|
|
11
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
12
|
+
created_at: string;
|
|
13
|
+
}, {
|
|
14
|
+
message: string;
|
|
15
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
16
|
+
created_at: string;
|
|
17
|
+
}>;
|
|
18
|
+
declare const acs_access_group_warning_map: z.ZodObject<{
|
|
19
|
+
unknown_issue_with_acs_access_group: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
20
|
+
created_at: z.ZodString;
|
|
21
|
+
message: z.ZodString;
|
|
22
|
+
}, {
|
|
23
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_access_group">;
|
|
24
|
+
}>, "strip", z.ZodTypeAny, {
|
|
25
|
+
message: string;
|
|
26
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
27
|
+
created_at: string;
|
|
28
|
+
}, {
|
|
29
|
+
message: string;
|
|
30
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
31
|
+
created_at: string;
|
|
32
|
+
}>>>;
|
|
33
|
+
}, "strip", z.ZodTypeAny, {
|
|
34
|
+
unknown_issue_with_acs_access_group?: {
|
|
35
|
+
message: string;
|
|
36
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
37
|
+
created_at: string;
|
|
38
|
+
} | null | undefined;
|
|
39
|
+
}, {
|
|
40
|
+
unknown_issue_with_acs_access_group?: {
|
|
41
|
+
message: string;
|
|
42
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
43
|
+
created_at: string;
|
|
44
|
+
} | null | undefined;
|
|
45
|
+
}>;
|
|
46
|
+
export type AcsAccessGroupWarningMap = z.infer<typeof acs_access_group_warning_map>;
|
|
4
47
|
export declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
5
48
|
acs_access_group_id: z.ZodString;
|
|
6
49
|
acs_system_id: z.ZodString;
|
|
7
50
|
workspace_id: z.ZodString;
|
|
8
51
|
name: z.ZodString;
|
|
9
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
52
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
10
53
|
access_group_type_display_name: z.ZodString;
|
|
11
54
|
display_name: z.ZodString;
|
|
12
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
55
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
13
56
|
external_type_display_name: z.ZodString;
|
|
14
57
|
created_at: z.ZodString;
|
|
58
|
+
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
59
|
+
created_at: z.ZodString;
|
|
60
|
+
message: z.ZodString;
|
|
61
|
+
}, {
|
|
62
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_access_group">;
|
|
63
|
+
}>, "strip", z.ZodTypeAny, {
|
|
64
|
+
message: string;
|
|
65
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
66
|
+
created_at: string;
|
|
67
|
+
}, {
|
|
68
|
+
message: string;
|
|
69
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
70
|
+
created_at: string;
|
|
71
|
+
}>, "many">;
|
|
15
72
|
}, {
|
|
16
73
|
is_managed: z.ZodLiteral<true>;
|
|
17
74
|
}>, "strip", z.ZodTypeAny, {
|
|
18
75
|
name: string;
|
|
19
76
|
created_at: string;
|
|
77
|
+
warnings: {
|
|
78
|
+
message: string;
|
|
79
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
80
|
+
created_at: string;
|
|
81
|
+
}[];
|
|
20
82
|
display_name: string;
|
|
21
83
|
workspace_id: string;
|
|
22
84
|
is_managed: true;
|
|
23
85
|
acs_access_group_id: string;
|
|
24
86
|
acs_system_id: string;
|
|
25
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
87
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
26
88
|
access_group_type_display_name: string;
|
|
27
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
89
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
28
90
|
external_type_display_name: string;
|
|
29
91
|
}, {
|
|
30
92
|
name: string;
|
|
31
93
|
created_at: string;
|
|
94
|
+
warnings: {
|
|
95
|
+
message: string;
|
|
96
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
97
|
+
created_at: string;
|
|
98
|
+
}[];
|
|
32
99
|
display_name: string;
|
|
33
100
|
workspace_id: string;
|
|
34
101
|
is_managed: true;
|
|
35
102
|
acs_access_group_id: string;
|
|
36
103
|
acs_system_id: string;
|
|
37
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
104
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
38
105
|
access_group_type_display_name: string;
|
|
39
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
106
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
40
107
|
external_type_display_name: string;
|
|
41
108
|
}>;
|
|
42
109
|
export declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -44,38 +111,63 @@ export declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extend
|
|
|
44
111
|
acs_system_id: z.ZodString;
|
|
45
112
|
workspace_id: z.ZodString;
|
|
46
113
|
name: z.ZodString;
|
|
47
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
114
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
48
115
|
access_group_type_display_name: z.ZodString;
|
|
49
116
|
display_name: z.ZodString;
|
|
50
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
117
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
51
118
|
external_type_display_name: z.ZodString;
|
|
52
119
|
created_at: z.ZodString;
|
|
120
|
+
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
121
|
+
created_at: z.ZodString;
|
|
122
|
+
message: z.ZodString;
|
|
123
|
+
}, {
|
|
124
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_access_group">;
|
|
125
|
+
}>, "strip", z.ZodTypeAny, {
|
|
126
|
+
message: string;
|
|
127
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
128
|
+
created_at: string;
|
|
129
|
+
}, {
|
|
130
|
+
message: string;
|
|
131
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
132
|
+
created_at: string;
|
|
133
|
+
}>, "many">;
|
|
53
134
|
}, {
|
|
54
135
|
is_managed: z.ZodLiteral<false>;
|
|
55
136
|
}>, "strip", z.ZodTypeAny, {
|
|
56
137
|
name: string;
|
|
57
138
|
created_at: string;
|
|
139
|
+
warnings: {
|
|
140
|
+
message: string;
|
|
141
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
142
|
+
created_at: string;
|
|
143
|
+
}[];
|
|
58
144
|
display_name: string;
|
|
59
145
|
workspace_id: string;
|
|
60
146
|
is_managed: false;
|
|
61
147
|
acs_access_group_id: string;
|
|
62
148
|
acs_system_id: string;
|
|
63
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
149
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
64
150
|
access_group_type_display_name: string;
|
|
65
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
151
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
66
152
|
external_type_display_name: string;
|
|
67
153
|
}, {
|
|
68
154
|
name: string;
|
|
69
155
|
created_at: string;
|
|
156
|
+
warnings: {
|
|
157
|
+
message: string;
|
|
158
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
159
|
+
created_at: string;
|
|
160
|
+
}[];
|
|
70
161
|
display_name: string;
|
|
71
162
|
workspace_id: string;
|
|
72
163
|
is_managed: false;
|
|
73
164
|
acs_access_group_id: string;
|
|
74
165
|
acs_system_id: string;
|
|
75
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
166
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
76
167
|
access_group_type_display_name: string;
|
|
77
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
168
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
78
169
|
external_type_display_name: string;
|
|
79
170
|
}>;
|
|
80
171
|
export type AcsAccessGroup = z.output<typeof acs_access_group>;
|
|
81
172
|
export type UnmanagedAcsAccessGroup = z.output<typeof unmanaged_acs_access_group>;
|
|
173
|
+
export {};
|