@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
|
@@ -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';
|
|
@@ -10454,6 +10480,10 @@ export interface Routes {
|
|
|
10454
10480
|
warnings: Array<{
|
|
10455
10481
|
message: string;
|
|
10456
10482
|
warning_code: string;
|
|
10483
|
+
} | {
|
|
10484
|
+
message: string;
|
|
10485
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10486
|
+
warning_code: 'unknown_issue_with_connected_account';
|
|
10457
10487
|
}>;
|
|
10458
10488
|
custom_metadata: Record<string, string | boolean>;
|
|
10459
10489
|
automatically_manage_new_devices: boolean;
|
|
@@ -10493,6 +10523,10 @@ export interface Routes {
|
|
|
10493
10523
|
warnings: Array<{
|
|
10494
10524
|
message: string;
|
|
10495
10525
|
warning_code: string;
|
|
10526
|
+
} | {
|
|
10527
|
+
message: string;
|
|
10528
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10529
|
+
warning_code: 'unknown_issue_with_connected_account';
|
|
10496
10530
|
}>;
|
|
10497
10531
|
custom_metadata: Record<string, string | boolean>;
|
|
10498
10532
|
automatically_manage_new_devices: boolean;
|
|
@@ -10531,6 +10565,10 @@ export interface Routes {
|
|
|
10531
10565
|
warnings: Array<{
|
|
10532
10566
|
message: string;
|
|
10533
10567
|
warning_code: string;
|
|
10568
|
+
} | {
|
|
10569
|
+
message: string;
|
|
10570
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10571
|
+
warning_code: 'unknown_issue_with_connected_account';
|
|
10534
10572
|
}>;
|
|
10535
10573
|
custom_metadata: Record<string, string | boolean>;
|
|
10536
10574
|
automatically_manage_new_devices: boolean;
|
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({
|
|
@@ -70,7 +70,7 @@ const being_deleted = common_acs_credential_warning
|
|
|
70
70
|
})
|
|
71
71
|
.describe('Indicates that this credential is being deleted.')
|
|
72
72
|
|
|
73
|
-
const unknown_issue_with_credential = common_acs_credential_warning
|
|
73
|
+
export const unknown_issue_with_credential = common_acs_credential_warning
|
|
74
74
|
.extend({
|
|
75
75
|
warning_code: z
|
|
76
76
|
.literal('unknown_issue_with_credential')
|
|
@@ -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<
|
|
@@ -7,6 +7,9 @@ const common_connected_account_error = z.object({
|
|
|
7
7
|
is_connected_account_error: z.literal(true),
|
|
8
8
|
})
|
|
9
9
|
|
|
10
|
+
const warning_code_description =
|
|
11
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.'
|
|
12
|
+
|
|
10
13
|
const common_connected_account_warning = z.object({
|
|
11
14
|
message: z.string(),
|
|
12
15
|
})
|
|
@@ -17,9 +20,26 @@ export const connected_account_error = common_connected_account_error.extend({
|
|
|
17
20
|
|
|
18
21
|
export type ConnectedAccountError = z.infer<typeof connected_account_error>
|
|
19
22
|
|
|
20
|
-
const
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
export const unknown_issue_with_connected_account =
|
|
24
|
+
common_connected_account_warning
|
|
25
|
+
.extend({
|
|
26
|
+
warning_code: z
|
|
27
|
+
.literal('unknown_issue_with_connected_account')
|
|
28
|
+
.describe(warning_code_description),
|
|
29
|
+
})
|
|
30
|
+
.describe(
|
|
31
|
+
'An unknown issue occurred while syncing the state of this connected account with the provider. ' +
|
|
32
|
+
'This issue may affect the proper functioning of one or more resources in this account.',
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
const connected_account_warning = z
|
|
36
|
+
.union([
|
|
37
|
+
common_connected_account_warning.extend({
|
|
38
|
+
warning_code: z.string(),
|
|
39
|
+
}),
|
|
40
|
+
unknown_issue_with_connected_account,
|
|
41
|
+
])
|
|
42
|
+
.describe('Warning associated with the `connected_account`.')
|
|
23
43
|
|
|
24
44
|
export type ConnectedAccountWarning = z.infer<typeof connected_account_warning>
|
|
25
45
|
|
|
@@ -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',
|
|
@@ -4220,12 +4246,32 @@ export default {
|
|
|
4220
4246
|
},
|
|
4221
4247
|
warnings: {
|
|
4222
4248
|
items: {
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4249
|
+
description: 'Warning associated with the `connected_account`.',
|
|
4250
|
+
oneOf: [
|
|
4251
|
+
{
|
|
4252
|
+
properties: {
|
|
4253
|
+
message: { type: 'string' },
|
|
4254
|
+
warning_code: { type: 'string' },
|
|
4255
|
+
},
|
|
4256
|
+
required: ['message', 'warning_code'],
|
|
4257
|
+
type: 'object',
|
|
4258
|
+
},
|
|
4259
|
+
{
|
|
4260
|
+
description:
|
|
4261
|
+
'An unknown issue occurred while syncing the state of this connected account with the provider. This issue may affect the proper functioning of one or more resources in this account.',
|
|
4262
|
+
properties: {
|
|
4263
|
+
message: { type: 'string' },
|
|
4264
|
+
warning_code: {
|
|
4265
|
+
description:
|
|
4266
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
4267
|
+
enum: ['unknown_issue_with_connected_account'],
|
|
4268
|
+
type: 'string',
|
|
4269
|
+
},
|
|
4270
|
+
},
|
|
4271
|
+
required: ['message', 'warning_code'],
|
|
4272
|
+
type: 'object',
|
|
4273
|
+
},
|
|
4274
|
+
],
|
|
4229
4275
|
},
|
|
4230
4276
|
type: 'array',
|
|
4231
4277
|
},
|
|
@@ -12400,6 +12446,7 @@ export default {
|
|
|
12400
12446
|
'salto_ks_access_group',
|
|
12401
12447
|
'brivo_group',
|
|
12402
12448
|
'salto_space_group',
|
|
12449
|
+
'dormakaba_community_access_group',
|
|
12403
12450
|
],
|
|
12404
12451
|
type: 'string',
|
|
12405
12452
|
'x-deprecated': 'Use `external_type`.',
|
|
@@ -12436,6 +12483,7 @@ export default {
|
|
|
12436
12483
|
'salto_ks_access_group',
|
|
12437
12484
|
'brivo_group',
|
|
12438
12485
|
'salto_space_group',
|
|
12486
|
+
'dormakaba_community_access_group',
|
|
12439
12487
|
],
|
|
12440
12488
|
type: 'string',
|
|
12441
12489
|
},
|
|
@@ -12449,6 +12497,36 @@ export default {
|
|
|
12449
12497
|
description: 'Name of the access group.',
|
|
12450
12498
|
type: 'string',
|
|
12451
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
|
+
},
|
|
12452
12530
|
workspace_id: {
|
|
12453
12531
|
description:
|
|
12454
12532
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group.',
|
|
@@ -12467,6 +12545,7 @@ export default {
|
|
|
12467
12545
|
'external_type',
|
|
12468
12546
|
'external_type_display_name',
|
|
12469
12547
|
'created_at',
|
|
12548
|
+
'warnings',
|
|
12470
12549
|
'is_managed',
|
|
12471
12550
|
],
|
|
12472
12551
|
type: 'object',
|
|
@@ -12543,6 +12622,7 @@ export default {
|
|
|
12543
12622
|
'salto_ks_access_group',
|
|
12544
12623
|
'brivo_group',
|
|
12545
12624
|
'salto_space_group',
|
|
12625
|
+
'dormakaba_community_access_group',
|
|
12546
12626
|
],
|
|
12547
12627
|
type: 'string',
|
|
12548
12628
|
'x-deprecated': 'Use `external_type`.',
|
|
@@ -12579,6 +12659,7 @@ export default {
|
|
|
12579
12659
|
'salto_ks_access_group',
|
|
12580
12660
|
'brivo_group',
|
|
12581
12661
|
'salto_space_group',
|
|
12662
|
+
'dormakaba_community_access_group',
|
|
12582
12663
|
],
|
|
12583
12664
|
type: 'string',
|
|
12584
12665
|
},
|
|
@@ -12592,6 +12673,40 @@ export default {
|
|
|
12592
12673
|
description: 'Name of the access group.',
|
|
12593
12674
|
type: 'string',
|
|
12594
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
|
+
},
|
|
12595
12710
|
workspace_id: {
|
|
12596
12711
|
description:
|
|
12597
12712
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group.',
|
|
@@ -12610,6 +12725,7 @@ export default {
|
|
|
12610
12725
|
'external_type',
|
|
12611
12726
|
'external_type_display_name',
|
|
12612
12727
|
'created_at',
|
|
12728
|
+
'warnings',
|
|
12613
12729
|
'is_managed',
|
|
12614
12730
|
],
|
|
12615
12731
|
type: 'object',
|