@seamapi/types 1.319.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 +160 -32
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +253 -68
- 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-credential.d.ts +14 -0
- package/lib/seam/connect/models/acs/acs-credential.js +1 -1
- package/lib/seam/connect/models/acs/acs-credential.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/models/connected-accounts/connected-account.d.ts +45 -8
- package/lib/seam/connect/models/connected-accounts/connected-account.js +17 -3
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +103 -20
- package/lib/seam/connect/openapi.js +112 -11
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +56 -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/acs-credential.ts +1 -1
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +0 -2
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +23 -3
- package/src/lib/seam/connect/openapi.ts +127 -11
- package/src/lib/seam/connect/route-types.ts +77 -22
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;
|
|
@@ -5245,7 +5283,7 @@ declare const connected_account_error: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5245
5283
|
error_code: string;
|
|
5246
5284
|
}>;
|
|
5247
5285
|
type ConnectedAccountError = z.infer<typeof connected_account_error>;
|
|
5248
|
-
declare const connected_account_warning: z.ZodObject<z.objectUtil.extendShape<{
|
|
5286
|
+
declare const connected_account_warning: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5249
5287
|
message: z.ZodString;
|
|
5250
5288
|
}, {
|
|
5251
5289
|
warning_code: z.ZodString;
|
|
@@ -5255,7 +5293,17 @@ declare const connected_account_warning: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5255
5293
|
}, {
|
|
5256
5294
|
message: string;
|
|
5257
5295
|
warning_code: string;
|
|
5258
|
-
}
|
|
5296
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5297
|
+
message: z.ZodString;
|
|
5298
|
+
}, {
|
|
5299
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_connected_account">;
|
|
5300
|
+
}>, "strip", z.ZodTypeAny, {
|
|
5301
|
+
message: string;
|
|
5302
|
+
warning_code: "unknown_issue_with_connected_account";
|
|
5303
|
+
}, {
|
|
5304
|
+
message: string;
|
|
5305
|
+
warning_code: "unknown_issue_with_connected_account";
|
|
5306
|
+
}>]>;
|
|
5259
5307
|
type ConnectedAccountWarning = z.infer<typeof connected_account_warning>;
|
|
5260
5308
|
declare const connected_account: z.ZodObject<{
|
|
5261
5309
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
@@ -5295,7 +5343,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
5295
5343
|
is_connected_account_error: true;
|
|
5296
5344
|
error_code: string;
|
|
5297
5345
|
}>, "many">;
|
|
5298
|
-
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
5346
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5299
5347
|
message: z.ZodString;
|
|
5300
5348
|
}, {
|
|
5301
5349
|
warning_code: z.ZodString;
|
|
@@ -5305,7 +5353,17 @@ declare const connected_account: z.ZodObject<{
|
|
|
5305
5353
|
}, {
|
|
5306
5354
|
message: string;
|
|
5307
5355
|
warning_code: string;
|
|
5308
|
-
}>,
|
|
5356
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5357
|
+
message: z.ZodString;
|
|
5358
|
+
}, {
|
|
5359
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_connected_account">;
|
|
5360
|
+
}>, "strip", z.ZodTypeAny, {
|
|
5361
|
+
message: string;
|
|
5362
|
+
warning_code: "unknown_issue_with_connected_account";
|
|
5363
|
+
}, {
|
|
5364
|
+
message: string;
|
|
5365
|
+
warning_code: "unknown_issue_with_connected_account";
|
|
5366
|
+
}>]>, "many">;
|
|
5309
5367
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
5310
5368
|
automatically_manage_new_devices: z.ZodBoolean;
|
|
5311
5369
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5315,10 +5373,13 @@ declare const connected_account: z.ZodObject<{
|
|
|
5315
5373
|
is_connected_account_error: true;
|
|
5316
5374
|
error_code: string;
|
|
5317
5375
|
}[];
|
|
5318
|
-
warnings: {
|
|
5376
|
+
warnings: ({
|
|
5377
|
+
message: string;
|
|
5378
|
+
warning_code: "unknown_issue_with_connected_account";
|
|
5379
|
+
} | {
|
|
5319
5380
|
message: string;
|
|
5320
5381
|
warning_code: string;
|
|
5321
|
-
}[];
|
|
5382
|
+
})[];
|
|
5322
5383
|
custom_metadata: Record<string, string | boolean>;
|
|
5323
5384
|
automatically_manage_new_devices: boolean;
|
|
5324
5385
|
connected_account_id?: string | undefined;
|
|
@@ -5338,10 +5399,13 @@ declare const connected_account: z.ZodObject<{
|
|
|
5338
5399
|
is_connected_account_error: true;
|
|
5339
5400
|
error_code: string;
|
|
5340
5401
|
}[];
|
|
5341
|
-
warnings: {
|
|
5402
|
+
warnings: ({
|
|
5403
|
+
message: string;
|
|
5404
|
+
warning_code: "unknown_issue_with_connected_account";
|
|
5405
|
+
} | {
|
|
5342
5406
|
message: string;
|
|
5343
5407
|
warning_code: string;
|
|
5344
|
-
}[];
|
|
5408
|
+
})[];
|
|
5345
5409
|
custom_metadata: Record<string, string | boolean>;
|
|
5346
5410
|
automatically_manage_new_devices: boolean;
|
|
5347
5411
|
connected_account_id?: string | undefined;
|
|
@@ -12784,6 +12848,31 @@ declare const _default: {
|
|
|
12784
12848
|
description: string;
|
|
12785
12849
|
type: string;
|
|
12786
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
|
+
};
|
|
12787
12876
|
workspace_id: {
|
|
12788
12877
|
description: string;
|
|
12789
12878
|
format: string;
|
|
@@ -13100,18 +13189,6 @@ declare const _default: {
|
|
|
13100
13189
|
format: string;
|
|
13101
13190
|
type: string;
|
|
13102
13191
|
};
|
|
13103
|
-
inner_access_points_names: {
|
|
13104
|
-
items: {
|
|
13105
|
-
type: string;
|
|
13106
|
-
};
|
|
13107
|
-
type: string;
|
|
13108
|
-
};
|
|
13109
|
-
lease_ids: {
|
|
13110
|
-
items: {
|
|
13111
|
-
type: string;
|
|
13112
|
-
};
|
|
13113
|
-
type: string;
|
|
13114
|
-
};
|
|
13115
13192
|
};
|
|
13116
13193
|
required: string[];
|
|
13117
13194
|
type: string;
|
|
@@ -14774,16 +14851,36 @@ declare const _default: {
|
|
|
14774
14851
|
};
|
|
14775
14852
|
warnings: {
|
|
14776
14853
|
items: {
|
|
14777
|
-
|
|
14778
|
-
|
|
14779
|
-
|
|
14854
|
+
description: string;
|
|
14855
|
+
oneOf: ({
|
|
14856
|
+
properties: {
|
|
14857
|
+
message: {
|
|
14858
|
+
type: string;
|
|
14859
|
+
};
|
|
14860
|
+
warning_code: {
|
|
14861
|
+
type: string;
|
|
14862
|
+
description?: never;
|
|
14863
|
+
enum?: never;
|
|
14864
|
+
};
|
|
14780
14865
|
};
|
|
14781
|
-
|
|
14782
|
-
|
|
14866
|
+
required: string[];
|
|
14867
|
+
type: string;
|
|
14868
|
+
description?: never;
|
|
14869
|
+
} | {
|
|
14870
|
+
description: string;
|
|
14871
|
+
properties: {
|
|
14872
|
+
message: {
|
|
14873
|
+
type: string;
|
|
14874
|
+
};
|
|
14875
|
+
warning_code: {
|
|
14876
|
+
description: string;
|
|
14877
|
+
enum: string[];
|
|
14878
|
+
type: string;
|
|
14879
|
+
};
|
|
14783
14880
|
};
|
|
14784
|
-
|
|
14785
|
-
|
|
14786
|
-
|
|
14881
|
+
required: string[];
|
|
14882
|
+
type: string;
|
|
14883
|
+
})[];
|
|
14787
14884
|
};
|
|
14788
14885
|
type: string;
|
|
14789
14886
|
};
|
|
@@ -22268,6 +22365,31 @@ declare const _default: {
|
|
|
22268
22365
|
description: string;
|
|
22269
22366
|
type: string;
|
|
22270
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
|
+
};
|
|
22271
22393
|
workspace_id: {
|
|
22272
22394
|
description: string;
|
|
22273
22395
|
format: string;
|
|
@@ -22397,6 +22519,31 @@ declare const _default: {
|
|
|
22397
22519
|
description: string;
|
|
22398
22520
|
type: string;
|
|
22399
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
|
+
};
|
|
22400
22547
|
workspace_id: {
|
|
22401
22548
|
description: string;
|
|
22402
22549
|
format: string;
|
|
@@ -39925,17 +40072,26 @@ interface Routes {
|
|
|
39925
40072
|
name: string;
|
|
39926
40073
|
/**
|
|
39927
40074
|
* @deprecated Use `external_type`. */
|
|
39928
|
-
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';
|
|
39929
40076
|
/**
|
|
39930
40077
|
* @deprecated Use `external_type_display_name`. */
|
|
39931
40078
|
access_group_type_display_name: string;
|
|
39932
40079
|
display_name: string;
|
|
39933
40080
|
/** Brand-specific terminology for the access group type. */
|
|
39934
|
-
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';
|
|
39935
40082
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
39936
40083
|
external_type_display_name: string;
|
|
39937
40084
|
/** Date and time at which the access group was created. */
|
|
39938
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
|
+
}>;
|
|
39939
40095
|
is_managed: true;
|
|
39940
40096
|
};
|
|
39941
40097
|
};
|
|
@@ -39964,17 +40120,26 @@ interface Routes {
|
|
|
39964
40120
|
name: string;
|
|
39965
40121
|
/**
|
|
39966
40122
|
* @deprecated Use `external_type`. */
|
|
39967
|
-
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';
|
|
39968
40124
|
/**
|
|
39969
40125
|
* @deprecated Use `external_type_display_name`. */
|
|
39970
40126
|
access_group_type_display_name: string;
|
|
39971
40127
|
display_name: string;
|
|
39972
40128
|
/** Brand-specific terminology for the access group type. */
|
|
39973
|
-
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';
|
|
39974
40130
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
39975
40131
|
external_type_display_name: string;
|
|
39976
40132
|
/** Date and time at which the access group was created. */
|
|
39977
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
|
+
}>;
|
|
39978
40143
|
is_managed: true;
|
|
39979
40144
|
}>;
|
|
39980
40145
|
};
|
|
@@ -40030,8 +40195,6 @@ interface Routes {
|
|
|
40030
40195
|
dormakaba_community_metadata?: {
|
|
40031
40196
|
access_point_name: string;
|
|
40032
40197
|
common_area_number?: number | undefined;
|
|
40033
|
-
inner_access_points_names?: string[] | undefined;
|
|
40034
|
-
lease_ids?: string[] | undefined;
|
|
40035
40198
|
} | undefined;
|
|
40036
40199
|
assa_abloy_vostio_metadata?: {
|
|
40037
40200
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -40187,17 +40350,26 @@ interface Routes {
|
|
|
40187
40350
|
name: string;
|
|
40188
40351
|
/**
|
|
40189
40352
|
* @deprecated Use `external_type`. */
|
|
40190
|
-
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';
|
|
40191
40354
|
/**
|
|
40192
40355
|
* @deprecated Use `external_type_display_name`. */
|
|
40193
40356
|
access_group_type_display_name: string;
|
|
40194
40357
|
display_name: string;
|
|
40195
40358
|
/** Brand-specific terminology for the access group type. */
|
|
40196
|
-
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';
|
|
40197
40360
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
40198
40361
|
external_type_display_name: string;
|
|
40199
40362
|
/** Date and time at which the access group was created. */
|
|
40200
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
|
+
}>;
|
|
40201
40373
|
is_managed: false;
|
|
40202
40374
|
};
|
|
40203
40375
|
};
|
|
@@ -40226,17 +40398,26 @@ interface Routes {
|
|
|
40226
40398
|
name: string;
|
|
40227
40399
|
/**
|
|
40228
40400
|
* @deprecated Use `external_type`. */
|
|
40229
|
-
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';
|
|
40230
40402
|
/**
|
|
40231
40403
|
* @deprecated Use `external_type_display_name`. */
|
|
40232
40404
|
access_group_type_display_name: string;
|
|
40233
40405
|
display_name: string;
|
|
40234
40406
|
/** Brand-specific terminology for the access group type. */
|
|
40235
|
-
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';
|
|
40236
40408
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
40237
40409
|
external_type_display_name: string;
|
|
40238
40410
|
/** Date and time at which the access group was created. */
|
|
40239
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
|
+
}>;
|
|
40240
40421
|
is_managed: false;
|
|
40241
40422
|
}>;
|
|
40242
40423
|
};
|
|
@@ -40953,8 +41134,6 @@ interface Routes {
|
|
|
40953
41134
|
dormakaba_community_metadata?: {
|
|
40954
41135
|
access_point_name: string;
|
|
40955
41136
|
common_area_number?: number | undefined;
|
|
40956
|
-
inner_access_points_names?: string[] | undefined;
|
|
40957
|
-
lease_ids?: string[] | undefined;
|
|
40958
41137
|
} | undefined;
|
|
40959
41138
|
assa_abloy_vostio_metadata?: {
|
|
40960
41139
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -43188,8 +43367,6 @@ interface Routes {
|
|
|
43188
43367
|
dormakaba_community_metadata?: {
|
|
43189
43368
|
access_point_name: string;
|
|
43190
43369
|
common_area_number?: number | undefined;
|
|
43191
|
-
inner_access_points_names?: string[] | undefined;
|
|
43192
|
-
lease_ids?: string[] | undefined;
|
|
43193
43370
|
} | undefined;
|
|
43194
43371
|
assa_abloy_vostio_metadata?: {
|
|
43195
43372
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -43269,8 +43446,6 @@ interface Routes {
|
|
|
43269
43446
|
dormakaba_community_metadata?: {
|
|
43270
43447
|
access_point_name: string;
|
|
43271
43448
|
common_area_number?: number | undefined;
|
|
43272
|
-
inner_access_points_names?: string[] | undefined;
|
|
43273
|
-
lease_ids?: string[] | undefined;
|
|
43274
43449
|
} | undefined;
|
|
43275
43450
|
assa_abloy_vostio_metadata?: {
|
|
43276
43451
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -44190,8 +44365,6 @@ interface Routes {
|
|
|
44190
44365
|
dormakaba_community_metadata?: {
|
|
44191
44366
|
access_point_name: string;
|
|
44192
44367
|
common_area_number?: number | undefined;
|
|
44193
|
-
inner_access_points_names?: string[] | undefined;
|
|
44194
|
-
lease_ids?: string[] | undefined;
|
|
44195
44368
|
} | undefined;
|
|
44196
44369
|
assa_abloy_vostio_metadata?: {
|
|
44197
44370
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -46438,6 +46611,10 @@ interface Routes {
|
|
|
46438
46611
|
warnings: Array<{
|
|
46439
46612
|
message: string;
|
|
46440
46613
|
warning_code: string;
|
|
46614
|
+
} | {
|
|
46615
|
+
message: string;
|
|
46616
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46617
|
+
warning_code: 'unknown_issue_with_connected_account';
|
|
46441
46618
|
}>;
|
|
46442
46619
|
custom_metadata: Record<string, string | boolean>;
|
|
46443
46620
|
automatically_manage_new_devices: boolean;
|
|
@@ -46477,6 +46654,10 @@ interface Routes {
|
|
|
46477
46654
|
warnings: Array<{
|
|
46478
46655
|
message: string;
|
|
46479
46656
|
warning_code: string;
|
|
46657
|
+
} | {
|
|
46658
|
+
message: string;
|
|
46659
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46660
|
+
warning_code: 'unknown_issue_with_connected_account';
|
|
46480
46661
|
}>;
|
|
46481
46662
|
custom_metadata: Record<string, string | boolean>;
|
|
46482
46663
|
automatically_manage_new_devices: boolean;
|
|
@@ -46515,6 +46696,10 @@ interface Routes {
|
|
|
46515
46696
|
warnings: Array<{
|
|
46516
46697
|
message: string;
|
|
46517
46698
|
warning_code: string;
|
|
46699
|
+
} | {
|
|
46700
|
+
message: string;
|
|
46701
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46702
|
+
warning_code: 'unknown_issue_with_connected_account';
|
|
46518
46703
|
}>;
|
|
46519
46704
|
custom_metadata: Record<string, string | boolean>;
|
|
46520
46705
|
automatically_manage_new_devices: boolean;
|