@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
|
@@ -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?:
|
|
@@ -12294,10 +12328,17 @@ export interface Routes {
|
|
|
12294
12328
|
is_connected_account_error: true
|
|
12295
12329
|
error_code: string
|
|
12296
12330
|
}>
|
|
12297
|
-
warnings: Array<
|
|
12298
|
-
|
|
12299
|
-
|
|
12300
|
-
|
|
12331
|
+
warnings: Array<
|
|
12332
|
+
| {
|
|
12333
|
+
message: string
|
|
12334
|
+
warning_code: string
|
|
12335
|
+
}
|
|
12336
|
+
| {
|
|
12337
|
+
message: string
|
|
12338
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12339
|
+
warning_code: 'unknown_issue_with_connected_account'
|
|
12340
|
+
}
|
|
12341
|
+
>
|
|
12301
12342
|
custom_metadata: Record<string, string | boolean>
|
|
12302
12343
|
automatically_manage_new_devices: boolean
|
|
12303
12344
|
}
|
|
@@ -12335,10 +12376,17 @@ export interface Routes {
|
|
|
12335
12376
|
is_connected_account_error: true
|
|
12336
12377
|
error_code: string
|
|
12337
12378
|
}>
|
|
12338
|
-
warnings: Array<
|
|
12339
|
-
|
|
12340
|
-
|
|
12341
|
-
|
|
12379
|
+
warnings: Array<
|
|
12380
|
+
| {
|
|
12381
|
+
message: string
|
|
12382
|
+
warning_code: string
|
|
12383
|
+
}
|
|
12384
|
+
| {
|
|
12385
|
+
message: string
|
|
12386
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12387
|
+
warning_code: 'unknown_issue_with_connected_account'
|
|
12388
|
+
}
|
|
12389
|
+
>
|
|
12342
12390
|
custom_metadata: Record<string, string | boolean>
|
|
12343
12391
|
automatically_manage_new_devices: boolean
|
|
12344
12392
|
}>
|
|
@@ -12375,10 +12423,17 @@ export interface Routes {
|
|
|
12375
12423
|
is_connected_account_error: true
|
|
12376
12424
|
error_code: string
|
|
12377
12425
|
}>
|
|
12378
|
-
warnings: Array<
|
|
12379
|
-
|
|
12380
|
-
|
|
12381
|
-
|
|
12426
|
+
warnings: Array<
|
|
12427
|
+
| {
|
|
12428
|
+
message: string
|
|
12429
|
+
warning_code: string
|
|
12430
|
+
}
|
|
12431
|
+
| {
|
|
12432
|
+
message: string
|
|
12433
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12434
|
+
warning_code: 'unknown_issue_with_connected_account'
|
|
12435
|
+
}
|
|
12436
|
+
>
|
|
12382
12437
|
custom_metadata: Record<string, string | boolean>
|
|
12383
12438
|
automatically_manage_new_devices: boolean
|
|
12384
12439
|
}
|