@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
|
@@ -3941,17 +3941,26 @@ export interface Routes {
|
|
|
3941
3941
|
name: string;
|
|
3942
3942
|
/**
|
|
3943
3943
|
* @deprecated Use `external_type`. */
|
|
3944
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
3944
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
3945
3945
|
/**
|
|
3946
3946
|
* @deprecated Use `external_type_display_name`. */
|
|
3947
3947
|
access_group_type_display_name: string;
|
|
3948
3948
|
display_name: string;
|
|
3949
3949
|
/** Brand-specific terminology for the access group type. */
|
|
3950
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
3950
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
3951
3951
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
3952
3952
|
external_type_display_name: string;
|
|
3953
3953
|
/** Date and time at which the access group was created. */
|
|
3954
3954
|
created_at: string;
|
|
3955
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
3956
|
+
warnings: Array<{
|
|
3957
|
+
/** Date and time at which Seam created the warning. */
|
|
3958
|
+
created_at: string;
|
|
3959
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3960
|
+
message: string;
|
|
3961
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3962
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
3963
|
+
}>;
|
|
3955
3964
|
is_managed: true;
|
|
3956
3965
|
};
|
|
3957
3966
|
};
|
|
@@ -3980,17 +3989,26 @@ export interface Routes {
|
|
|
3980
3989
|
name: string;
|
|
3981
3990
|
/**
|
|
3982
3991
|
* @deprecated Use `external_type`. */
|
|
3983
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
3992
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
3984
3993
|
/**
|
|
3985
3994
|
* @deprecated Use `external_type_display_name`. */
|
|
3986
3995
|
access_group_type_display_name: string;
|
|
3987
3996
|
display_name: string;
|
|
3988
3997
|
/** Brand-specific terminology for the access group type. */
|
|
3989
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
3998
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
3990
3999
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
3991
4000
|
external_type_display_name: string;
|
|
3992
4001
|
/** Date and time at which the access group was created. */
|
|
3993
4002
|
created_at: string;
|
|
4003
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
4004
|
+
warnings: Array<{
|
|
4005
|
+
/** Date and time at which Seam created the warning. */
|
|
4006
|
+
created_at: string;
|
|
4007
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4008
|
+
message: string;
|
|
4009
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4010
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
4011
|
+
}>;
|
|
3994
4012
|
is_managed: true;
|
|
3995
4013
|
}>;
|
|
3996
4014
|
};
|
|
@@ -4046,8 +4064,6 @@ export interface Routes {
|
|
|
4046
4064
|
dormakaba_community_metadata?: {
|
|
4047
4065
|
access_point_name: string;
|
|
4048
4066
|
common_area_number?: number | undefined;
|
|
4049
|
-
inner_access_points_names?: string[] | undefined;
|
|
4050
|
-
lease_ids?: string[] | undefined;
|
|
4051
4067
|
} | undefined;
|
|
4052
4068
|
assa_abloy_vostio_metadata?: {
|
|
4053
4069
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -4203,17 +4219,26 @@ export interface Routes {
|
|
|
4203
4219
|
name: string;
|
|
4204
4220
|
/**
|
|
4205
4221
|
* @deprecated Use `external_type`. */
|
|
4206
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
4222
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
4207
4223
|
/**
|
|
4208
4224
|
* @deprecated Use `external_type_display_name`. */
|
|
4209
4225
|
access_group_type_display_name: string;
|
|
4210
4226
|
display_name: string;
|
|
4211
4227
|
/** Brand-specific terminology for the access group type. */
|
|
4212
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
4228
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
4213
4229
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
4214
4230
|
external_type_display_name: string;
|
|
4215
4231
|
/** Date and time at which the access group was created. */
|
|
4216
4232
|
created_at: string;
|
|
4233
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
4234
|
+
warnings: Array<{
|
|
4235
|
+
/** Date and time at which Seam created the warning. */
|
|
4236
|
+
created_at: string;
|
|
4237
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4238
|
+
message: string;
|
|
4239
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4240
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
4241
|
+
}>;
|
|
4217
4242
|
is_managed: false;
|
|
4218
4243
|
};
|
|
4219
4244
|
};
|
|
@@ -4242,17 +4267,26 @@ export interface Routes {
|
|
|
4242
4267
|
name: string;
|
|
4243
4268
|
/**
|
|
4244
4269
|
* @deprecated Use `external_type`. */
|
|
4245
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
4270
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
4246
4271
|
/**
|
|
4247
4272
|
* @deprecated Use `external_type_display_name`. */
|
|
4248
4273
|
access_group_type_display_name: string;
|
|
4249
4274
|
display_name: string;
|
|
4250
4275
|
/** Brand-specific terminology for the access group type. */
|
|
4251
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
4276
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
4252
4277
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
4253
4278
|
external_type_display_name: string;
|
|
4254
4279
|
/** Date and time at which the access group was created. */
|
|
4255
4280
|
created_at: string;
|
|
4281
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
4282
|
+
warnings: Array<{
|
|
4283
|
+
/** Date and time at which Seam created the warning. */
|
|
4284
|
+
created_at: string;
|
|
4285
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4286
|
+
message: string;
|
|
4287
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4288
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
4289
|
+
}>;
|
|
4256
4290
|
is_managed: false;
|
|
4257
4291
|
}>;
|
|
4258
4292
|
};
|
|
@@ -4969,8 +5003,6 @@ export interface Routes {
|
|
|
4969
5003
|
dormakaba_community_metadata?: {
|
|
4970
5004
|
access_point_name: string;
|
|
4971
5005
|
common_area_number?: number | undefined;
|
|
4972
|
-
inner_access_points_names?: string[] | undefined;
|
|
4973
|
-
lease_ids?: string[] | undefined;
|
|
4974
5006
|
} | undefined;
|
|
4975
5007
|
assa_abloy_vostio_metadata?: {
|
|
4976
5008
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -7204,8 +7236,6 @@ export interface Routes {
|
|
|
7204
7236
|
dormakaba_community_metadata?: {
|
|
7205
7237
|
access_point_name: string;
|
|
7206
7238
|
common_area_number?: number | undefined;
|
|
7207
|
-
inner_access_points_names?: string[] | undefined;
|
|
7208
|
-
lease_ids?: string[] | undefined;
|
|
7209
7239
|
} | undefined;
|
|
7210
7240
|
assa_abloy_vostio_metadata?: {
|
|
7211
7241
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -7285,8 +7315,6 @@ export interface Routes {
|
|
|
7285
7315
|
dormakaba_community_metadata?: {
|
|
7286
7316
|
access_point_name: string;
|
|
7287
7317
|
common_area_number?: number | undefined;
|
|
7288
|
-
inner_access_points_names?: string[] | undefined;
|
|
7289
|
-
lease_ids?: string[] | undefined;
|
|
7290
7318
|
} | undefined;
|
|
7291
7319
|
assa_abloy_vostio_metadata?: {
|
|
7292
7320
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -8206,8 +8234,6 @@ export interface Routes {
|
|
|
8206
8234
|
dormakaba_community_metadata?: {
|
|
8207
8235
|
access_point_name: string;
|
|
8208
8236
|
common_area_number?: number | undefined;
|
|
8209
|
-
inner_access_points_names?: string[] | undefined;
|
|
8210
|
-
lease_ids?: string[] | undefined;
|
|
8211
8237
|
} | undefined;
|
|
8212
8238
|
assa_abloy_vostio_metadata?: {
|
|
8213
8239
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.321.0",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"zod": "^3.21.4"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@seamapi/blueprint": "^0.
|
|
95
|
+
"@seamapi/blueprint": "^0.32.0",
|
|
96
96
|
"@types/node": "^20.8.10",
|
|
97
97
|
"concurrently": "^8.2.0",
|
|
98
98
|
"del-cli": "^5.0.0",
|
|
@@ -7,12 +7,54 @@ export const acs_access_group_external_type = z.enum([
|
|
|
7
7
|
'salto_ks_access_group',
|
|
8
8
|
'brivo_group',
|
|
9
9
|
'salto_space_group',
|
|
10
|
+
'dormakaba_community_access_group',
|
|
10
11
|
])
|
|
11
12
|
|
|
12
13
|
export type AcsAccessGroupExternalType = z.infer<
|
|
13
14
|
typeof acs_access_group_external_type
|
|
14
15
|
>
|
|
15
16
|
|
|
17
|
+
const common_acs_access_group_warning = z.object({
|
|
18
|
+
created_at: z
|
|
19
|
+
.string()
|
|
20
|
+
.datetime()
|
|
21
|
+
.describe('Date and time at which Seam created the warning.'),
|
|
22
|
+
message: z
|
|
23
|
+
.string()
|
|
24
|
+
.describe(
|
|
25
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26
|
+
),
|
|
27
|
+
})
|
|
28
|
+
|
|
29
|
+
const warning_code_description =
|
|
30
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.'
|
|
31
|
+
|
|
32
|
+
export const unknown_issue_with_acs_access_group =
|
|
33
|
+
common_acs_access_group_warning
|
|
34
|
+
.extend({
|
|
35
|
+
warning_code: z
|
|
36
|
+
.literal('unknown_issue_with_acs_access_group')
|
|
37
|
+
.describe(warning_code_description),
|
|
38
|
+
})
|
|
39
|
+
.describe(
|
|
40
|
+
'An unknown issue occurred while syncing the state of this access group with the provider. ' +
|
|
41
|
+
'This issue may affect the proper functioning of this access group.',
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
const acs_access_group_warning = unknown_issue_with_acs_access_group.describe(
|
|
45
|
+
'Warning associated with the `acs_access_group`.',
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
const acs_access_group_warning_map = z.object({
|
|
49
|
+
unknown_issue_with_acs_access_group: unknown_issue_with_acs_access_group
|
|
50
|
+
.optional()
|
|
51
|
+
.nullable(),
|
|
52
|
+
})
|
|
53
|
+
|
|
54
|
+
export type AcsAccessGroupWarningMap = z.infer<
|
|
55
|
+
typeof acs_access_group_warning_map
|
|
56
|
+
>
|
|
57
|
+
|
|
16
58
|
const common_acs_access_group = z.object({
|
|
17
59
|
acs_access_group_id: z.string().uuid().describe('ID of the access group.'),
|
|
18
60
|
acs_system_id: z
|
|
@@ -51,6 +93,9 @@ const common_acs_access_group = z.object({
|
|
|
51
93
|
.string()
|
|
52
94
|
.datetime()
|
|
53
95
|
.describe('Date and time at which the access group was created.'),
|
|
96
|
+
warnings: z
|
|
97
|
+
.array(acs_access_group_warning)
|
|
98
|
+
.describe('Warnings associated with the `acs_access_group`.'),
|
|
54
99
|
})
|
|
55
100
|
|
|
56
101
|
export const acs_access_group = common_acs_access_group.extend({
|
|
@@ -3,8 +3,6 @@ import { z } from 'zod'
|
|
|
3
3
|
export const acs_entrance_dormakaba_community_metadata = z.object({
|
|
4
4
|
access_point_name: z.string(),
|
|
5
5
|
common_area_number: z.number().optional(),
|
|
6
|
-
inner_access_points_names: z.array(z.string()).optional(),
|
|
7
|
-
lease_ids: z.array(z.string()).optional(),
|
|
8
6
|
})
|
|
9
7
|
|
|
10
8
|
export type AcsEntranceDormakabaCommunityMetadata = z.infer<
|
|
@@ -197,6 +197,7 @@ export default {
|
|
|
197
197
|
'salto_ks_access_group',
|
|
198
198
|
'brivo_group',
|
|
199
199
|
'salto_space_group',
|
|
200
|
+
'dormakaba_community_access_group',
|
|
200
201
|
],
|
|
201
202
|
type: 'string',
|
|
202
203
|
'x-deprecated': 'Use `external_type`.',
|
|
@@ -232,6 +233,7 @@ export default {
|
|
|
232
233
|
'salto_ks_access_group',
|
|
233
234
|
'brivo_group',
|
|
234
235
|
'salto_space_group',
|
|
236
|
+
'dormakaba_community_access_group',
|
|
235
237
|
],
|
|
236
238
|
type: 'string',
|
|
237
239
|
},
|
|
@@ -242,6 +244,34 @@ export default {
|
|
|
242
244
|
},
|
|
243
245
|
is_managed: { enum: [true], type: 'boolean' },
|
|
244
246
|
name: { description: 'Name of the access group.', type: 'string' },
|
|
247
|
+
warnings: {
|
|
248
|
+
description: 'Warnings associated with the `acs_access_group`.',
|
|
249
|
+
items: {
|
|
250
|
+
description: 'Warning associated with the `acs_access_group`.',
|
|
251
|
+
properties: {
|
|
252
|
+
created_at: {
|
|
253
|
+
description:
|
|
254
|
+
'Date and time at which Seam created the warning.',
|
|
255
|
+
format: 'date-time',
|
|
256
|
+
type: 'string',
|
|
257
|
+
},
|
|
258
|
+
message: {
|
|
259
|
+
description:
|
|
260
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
261
|
+
type: 'string',
|
|
262
|
+
},
|
|
263
|
+
warning_code: {
|
|
264
|
+
description:
|
|
265
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
266
|
+
enum: ['unknown_issue_with_acs_access_group'],
|
|
267
|
+
type: 'string',
|
|
268
|
+
},
|
|
269
|
+
},
|
|
270
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
271
|
+
type: 'object',
|
|
272
|
+
},
|
|
273
|
+
type: 'array',
|
|
274
|
+
},
|
|
245
275
|
workspace_id: {
|
|
246
276
|
description:
|
|
247
277
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group.',
|
|
@@ -260,6 +290,7 @@ export default {
|
|
|
260
290
|
'external_type',
|
|
261
291
|
'external_type_display_name',
|
|
262
292
|
'created_at',
|
|
293
|
+
'warnings',
|
|
263
294
|
'is_managed',
|
|
264
295
|
],
|
|
265
296
|
type: 'object',
|
|
@@ -637,11 +668,6 @@ export default {
|
|
|
637
668
|
properties: {
|
|
638
669
|
access_point_name: { type: 'string' },
|
|
639
670
|
common_area_number: { format: 'float', type: 'number' },
|
|
640
|
-
inner_access_points_names: {
|
|
641
|
-
items: { type: 'string' },
|
|
642
|
-
type: 'array',
|
|
643
|
-
},
|
|
644
|
-
lease_ids: { items: { type: 'string' }, type: 'array' },
|
|
645
671
|
},
|
|
646
672
|
required: ['access_point_name'],
|
|
647
673
|
type: 'object',
|
|
@@ -12420,6 +12446,7 @@ export default {
|
|
|
12420
12446
|
'salto_ks_access_group',
|
|
12421
12447
|
'brivo_group',
|
|
12422
12448
|
'salto_space_group',
|
|
12449
|
+
'dormakaba_community_access_group',
|
|
12423
12450
|
],
|
|
12424
12451
|
type: 'string',
|
|
12425
12452
|
'x-deprecated': 'Use `external_type`.',
|
|
@@ -12456,6 +12483,7 @@ export default {
|
|
|
12456
12483
|
'salto_ks_access_group',
|
|
12457
12484
|
'brivo_group',
|
|
12458
12485
|
'salto_space_group',
|
|
12486
|
+
'dormakaba_community_access_group',
|
|
12459
12487
|
],
|
|
12460
12488
|
type: 'string',
|
|
12461
12489
|
},
|
|
@@ -12469,6 +12497,36 @@ export default {
|
|
|
12469
12497
|
description: 'Name of the access group.',
|
|
12470
12498
|
type: 'string',
|
|
12471
12499
|
},
|
|
12500
|
+
warnings: {
|
|
12501
|
+
description:
|
|
12502
|
+
'Warnings associated with the `acs_access_group`.',
|
|
12503
|
+
items: {
|
|
12504
|
+
description:
|
|
12505
|
+
'Warning associated with the `acs_access_group`.',
|
|
12506
|
+
properties: {
|
|
12507
|
+
created_at: {
|
|
12508
|
+
description:
|
|
12509
|
+
'Date and time at which Seam created the warning.',
|
|
12510
|
+
format: 'date-time',
|
|
12511
|
+
type: 'string',
|
|
12512
|
+
},
|
|
12513
|
+
message: {
|
|
12514
|
+
description:
|
|
12515
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
12516
|
+
type: 'string',
|
|
12517
|
+
},
|
|
12518
|
+
warning_code: {
|
|
12519
|
+
description:
|
|
12520
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
12521
|
+
enum: ['unknown_issue_with_acs_access_group'],
|
|
12522
|
+
type: 'string',
|
|
12523
|
+
},
|
|
12524
|
+
},
|
|
12525
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
12526
|
+
type: 'object',
|
|
12527
|
+
},
|
|
12528
|
+
type: 'array',
|
|
12529
|
+
},
|
|
12472
12530
|
workspace_id: {
|
|
12473
12531
|
description:
|
|
12474
12532
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group.',
|
|
@@ -12487,6 +12545,7 @@ export default {
|
|
|
12487
12545
|
'external_type',
|
|
12488
12546
|
'external_type_display_name',
|
|
12489
12547
|
'created_at',
|
|
12548
|
+
'warnings',
|
|
12490
12549
|
'is_managed',
|
|
12491
12550
|
],
|
|
12492
12551
|
type: 'object',
|
|
@@ -12563,6 +12622,7 @@ export default {
|
|
|
12563
12622
|
'salto_ks_access_group',
|
|
12564
12623
|
'brivo_group',
|
|
12565
12624
|
'salto_space_group',
|
|
12625
|
+
'dormakaba_community_access_group',
|
|
12566
12626
|
],
|
|
12567
12627
|
type: 'string',
|
|
12568
12628
|
'x-deprecated': 'Use `external_type`.',
|
|
@@ -12599,6 +12659,7 @@ export default {
|
|
|
12599
12659
|
'salto_ks_access_group',
|
|
12600
12660
|
'brivo_group',
|
|
12601
12661
|
'salto_space_group',
|
|
12662
|
+
'dormakaba_community_access_group',
|
|
12602
12663
|
],
|
|
12603
12664
|
type: 'string',
|
|
12604
12665
|
},
|
|
@@ -12612,6 +12673,40 @@ export default {
|
|
|
12612
12673
|
description: 'Name of the access group.',
|
|
12613
12674
|
type: 'string',
|
|
12614
12675
|
},
|
|
12676
|
+
warnings: {
|
|
12677
|
+
description:
|
|
12678
|
+
'Warnings associated with the `acs_access_group`.',
|
|
12679
|
+
items: {
|
|
12680
|
+
description:
|
|
12681
|
+
'Warning associated with the `acs_access_group`.',
|
|
12682
|
+
properties: {
|
|
12683
|
+
created_at: {
|
|
12684
|
+
description:
|
|
12685
|
+
'Date and time at which Seam created the warning.',
|
|
12686
|
+
format: 'date-time',
|
|
12687
|
+
type: 'string',
|
|
12688
|
+
},
|
|
12689
|
+
message: {
|
|
12690
|
+
description:
|
|
12691
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
12692
|
+
type: 'string',
|
|
12693
|
+
},
|
|
12694
|
+
warning_code: {
|
|
12695
|
+
description:
|
|
12696
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
12697
|
+
enum: ['unknown_issue_with_acs_access_group'],
|
|
12698
|
+
type: 'string',
|
|
12699
|
+
},
|
|
12700
|
+
},
|
|
12701
|
+
required: [
|
|
12702
|
+
'created_at',
|
|
12703
|
+
'message',
|
|
12704
|
+
'warning_code',
|
|
12705
|
+
],
|
|
12706
|
+
type: 'object',
|
|
12707
|
+
},
|
|
12708
|
+
type: 'array',
|
|
12709
|
+
},
|
|
12615
12710
|
workspace_id: {
|
|
12616
12711
|
description:
|
|
12617
12712
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group.',
|
|
@@ -12630,6 +12725,7 @@ export default {
|
|
|
12630
12725
|
'external_type',
|
|
12631
12726
|
'external_type_display_name',
|
|
12632
12727
|
'created_at',
|
|
12728
|
+
'warnings',
|
|
12633
12729
|
'is_managed',
|
|
12634
12730
|
],
|
|
12635
12731
|
type: 'object',
|
|
@@ -4555,6 +4555,7 @@ export interface Routes {
|
|
|
4555
4555
|
| 'salto_ks_access_group'
|
|
4556
4556
|
| 'brivo_group'
|
|
4557
4557
|
| 'salto_space_group'
|
|
4558
|
+
| 'dormakaba_community_access_group'
|
|
4558
4559
|
/**
|
|
4559
4560
|
* @deprecated Use `external_type_display_name`. */
|
|
4560
4561
|
access_group_type_display_name: string
|
|
@@ -4566,10 +4567,20 @@ export interface Routes {
|
|
|
4566
4567
|
| 'salto_ks_access_group'
|
|
4567
4568
|
| 'brivo_group'
|
|
4568
4569
|
| 'salto_space_group'
|
|
4570
|
+
| 'dormakaba_community_access_group'
|
|
4569
4571
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
4570
4572
|
external_type_display_name: string
|
|
4571
4573
|
/** Date and time at which the access group was created. */
|
|
4572
4574
|
created_at: string
|
|
4575
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
4576
|
+
warnings: Array<{
|
|
4577
|
+
/** Date and time at which Seam created the warning. */
|
|
4578
|
+
created_at: string
|
|
4579
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4580
|
+
message: string
|
|
4581
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4582
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
4583
|
+
}>
|
|
4573
4584
|
is_managed: true
|
|
4574
4585
|
}
|
|
4575
4586
|
}
|
|
@@ -4604,6 +4615,7 @@ export interface Routes {
|
|
|
4604
4615
|
| 'salto_ks_access_group'
|
|
4605
4616
|
| 'brivo_group'
|
|
4606
4617
|
| 'salto_space_group'
|
|
4618
|
+
| 'dormakaba_community_access_group'
|
|
4607
4619
|
/**
|
|
4608
4620
|
* @deprecated Use `external_type_display_name`. */
|
|
4609
4621
|
access_group_type_display_name: string
|
|
@@ -4615,10 +4627,20 @@ export interface Routes {
|
|
|
4615
4627
|
| 'salto_ks_access_group'
|
|
4616
4628
|
| 'brivo_group'
|
|
4617
4629
|
| 'salto_space_group'
|
|
4630
|
+
| 'dormakaba_community_access_group'
|
|
4618
4631
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
4619
4632
|
external_type_display_name: string
|
|
4620
4633
|
/** Date and time at which the access group was created. */
|
|
4621
4634
|
created_at: string
|
|
4635
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
4636
|
+
warnings: Array<{
|
|
4637
|
+
/** Date and time at which Seam created the warning. */
|
|
4638
|
+
created_at: string
|
|
4639
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4640
|
+
message: string
|
|
4641
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4642
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
4643
|
+
}>
|
|
4622
4644
|
is_managed: true
|
|
4623
4645
|
}>
|
|
4624
4646
|
}
|
|
@@ -4688,8 +4710,6 @@ export interface Routes {
|
|
|
4688
4710
|
| {
|
|
4689
4711
|
access_point_name: string
|
|
4690
4712
|
common_area_number?: number | undefined
|
|
4691
|
-
inner_access_points_names?: string[] | undefined
|
|
4692
|
-
lease_ids?: string[] | undefined
|
|
4693
4713
|
}
|
|
4694
4714
|
| undefined
|
|
4695
4715
|
assa_abloy_vostio_metadata?:
|
|
@@ -4880,6 +4900,7 @@ export interface Routes {
|
|
|
4880
4900
|
| 'salto_ks_access_group'
|
|
4881
4901
|
| 'brivo_group'
|
|
4882
4902
|
| 'salto_space_group'
|
|
4903
|
+
| 'dormakaba_community_access_group'
|
|
4883
4904
|
/**
|
|
4884
4905
|
* @deprecated Use `external_type_display_name`. */
|
|
4885
4906
|
access_group_type_display_name: string
|
|
@@ -4891,10 +4912,20 @@ export interface Routes {
|
|
|
4891
4912
|
| 'salto_ks_access_group'
|
|
4892
4913
|
| 'brivo_group'
|
|
4893
4914
|
| 'salto_space_group'
|
|
4915
|
+
| 'dormakaba_community_access_group'
|
|
4894
4916
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
4895
4917
|
external_type_display_name: string
|
|
4896
4918
|
/** Date and time at which the access group was created. */
|
|
4897
4919
|
created_at: string
|
|
4920
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
4921
|
+
warnings: Array<{
|
|
4922
|
+
/** Date and time at which Seam created the warning. */
|
|
4923
|
+
created_at: string
|
|
4924
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4925
|
+
message: string
|
|
4926
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4927
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
4928
|
+
}>
|
|
4898
4929
|
is_managed: false
|
|
4899
4930
|
}
|
|
4900
4931
|
}
|
|
@@ -4929,6 +4960,7 @@ export interface Routes {
|
|
|
4929
4960
|
| 'salto_ks_access_group'
|
|
4930
4961
|
| 'brivo_group'
|
|
4931
4962
|
| 'salto_space_group'
|
|
4963
|
+
| 'dormakaba_community_access_group'
|
|
4932
4964
|
/**
|
|
4933
4965
|
* @deprecated Use `external_type_display_name`. */
|
|
4934
4966
|
access_group_type_display_name: string
|
|
@@ -4940,10 +4972,20 @@ export interface Routes {
|
|
|
4940
4972
|
| 'salto_ks_access_group'
|
|
4941
4973
|
| 'brivo_group'
|
|
4942
4974
|
| 'salto_space_group'
|
|
4975
|
+
| 'dormakaba_community_access_group'
|
|
4943
4976
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
4944
4977
|
external_type_display_name: string
|
|
4945
4978
|
/** Date and time at which the access group was created. */
|
|
4946
4979
|
created_at: string
|
|
4980
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
4981
|
+
warnings: Array<{
|
|
4982
|
+
/** Date and time at which Seam created the warning. */
|
|
4983
|
+
created_at: string
|
|
4984
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4985
|
+
message: string
|
|
4986
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4987
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
4988
|
+
}>
|
|
4947
4989
|
is_managed: false
|
|
4948
4990
|
}>
|
|
4949
4991
|
}
|
|
@@ -5765,8 +5807,6 @@ export interface Routes {
|
|
|
5765
5807
|
| {
|
|
5766
5808
|
access_point_name: string
|
|
5767
5809
|
common_area_number?: number | undefined
|
|
5768
|
-
inner_access_points_names?: string[] | undefined
|
|
5769
|
-
lease_ids?: string[] | undefined
|
|
5770
5810
|
}
|
|
5771
5811
|
| undefined
|
|
5772
5812
|
assa_abloy_vostio_metadata?:
|
|
@@ -8389,8 +8429,6 @@ export interface Routes {
|
|
|
8389
8429
|
| {
|
|
8390
8430
|
access_point_name: string
|
|
8391
8431
|
common_area_number?: number | undefined
|
|
8392
|
-
inner_access_points_names?: string[] | undefined
|
|
8393
|
-
lease_ids?: string[] | undefined
|
|
8394
8432
|
}
|
|
8395
8433
|
| undefined
|
|
8396
8434
|
assa_abloy_vostio_metadata?:
|
|
@@ -8493,8 +8531,6 @@ export interface Routes {
|
|
|
8493
8531
|
| {
|
|
8494
8532
|
access_point_name: string
|
|
8495
8533
|
common_area_number?: number | undefined
|
|
8496
|
-
inner_access_points_names?: string[] | undefined
|
|
8497
|
-
lease_ids?: string[] | undefined
|
|
8498
8534
|
}
|
|
8499
8535
|
| undefined
|
|
8500
8536
|
assa_abloy_vostio_metadata?:
|
|
@@ -9647,8 +9683,6 @@ export interface Routes {
|
|
|
9647
9683
|
| {
|
|
9648
9684
|
access_point_name: string
|
|
9649
9685
|
common_area_number?: number | undefined
|
|
9650
|
-
inner_access_points_names?: string[] | undefined
|
|
9651
|
-
lease_ids?: string[] | undefined
|
|
9652
9686
|
}
|
|
9653
9687
|
| undefined
|
|
9654
9688
|
assa_abloy_vostio_metadata?:
|