@seamapi/types 1.264.1 → 1.265.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 +35 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +150 -60
- package/lib/seam/connect/models/acs/acs-credential.d.ts +13 -8
- package/lib/seam/connect/models/acs/acs-credential.js +4 -3
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-system.js +3 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +25 -16
- package/lib/seam/connect/models/action-attempts/scan-card.d.ts +25 -16
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/phone.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +28 -4
- package/lib/seam/connect/openapi.js +21 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +82 -40
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -3
- package/src/lib/seam/connect/models/acs/acs-system.ts +3 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +25 -5
- package/src/lib/seam/connect/route-types.ts +82 -40
|
@@ -98,7 +98,7 @@ export interface Routes {
|
|
|
98
98
|
/** Snapshot of the card data read from the physical encoder. */
|
|
99
99
|
acs_credential_on_encoder: {
|
|
100
100
|
/** Date and time the credential was created. */
|
|
101
|
-
created_at: string
|
|
101
|
+
created_at: string | null
|
|
102
102
|
is_issued: boolean | null
|
|
103
103
|
/** Date and time the credential will become useable. */
|
|
104
104
|
starts_at: string | null
|
|
@@ -109,7 +109,6 @@ export interface Routes {
|
|
|
109
109
|
visionline_metadata?:
|
|
110
110
|
| {
|
|
111
111
|
card_id: string
|
|
112
|
-
card_function_type: 'guest' | 'staff'
|
|
113
112
|
cancelled: boolean
|
|
114
113
|
discarded: boolean
|
|
115
114
|
expired: boolean
|
|
@@ -119,6 +118,8 @@ export interface Routes {
|
|
|
119
118
|
card_format: 'TLCode' | 'rfid48'
|
|
120
119
|
card_holder?: string | undefined
|
|
121
120
|
number_of_issued_cards: number
|
|
121
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
122
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
122
123
|
}
|
|
123
124
|
| undefined
|
|
124
125
|
}
|
|
@@ -907,7 +908,7 @@ export interface Routes {
|
|
|
907
908
|
/** Snapshot of the card data read from the physical encoder. */
|
|
908
909
|
acs_credential_on_encoder: {
|
|
909
910
|
/** Date and time the credential was created. */
|
|
910
|
-
created_at: string
|
|
911
|
+
created_at: string | null
|
|
911
912
|
is_issued: boolean | null
|
|
912
913
|
/** Date and time the credential will become useable. */
|
|
913
914
|
starts_at: string | null
|
|
@@ -918,7 +919,6 @@ export interface Routes {
|
|
|
918
919
|
visionline_metadata?:
|
|
919
920
|
| {
|
|
920
921
|
card_id: string
|
|
921
|
-
card_function_type: 'guest' | 'staff'
|
|
922
922
|
cancelled: boolean
|
|
923
923
|
discarded: boolean
|
|
924
924
|
expired: boolean
|
|
@@ -928,6 +928,8 @@ export interface Routes {
|
|
|
928
928
|
card_format: 'TLCode' | 'rfid48'
|
|
929
929
|
card_holder?: string | undefined
|
|
930
930
|
number_of_issued_cards: number
|
|
931
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
932
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
931
933
|
}
|
|
932
934
|
| undefined
|
|
933
935
|
}
|
|
@@ -1881,7 +1883,7 @@ export interface Routes {
|
|
|
1881
1883
|
/** Snapshot of the card data read from the physical encoder. */
|
|
1882
1884
|
acs_credential_on_encoder: {
|
|
1883
1885
|
/** Date and time the credential was created. */
|
|
1884
|
-
created_at: string
|
|
1886
|
+
created_at: string | null
|
|
1885
1887
|
is_issued: boolean | null
|
|
1886
1888
|
/** Date and time the credential will become useable. */
|
|
1887
1889
|
starts_at: string | null
|
|
@@ -1892,7 +1894,6 @@ export interface Routes {
|
|
|
1892
1894
|
visionline_metadata?:
|
|
1893
1895
|
| {
|
|
1894
1896
|
card_id: string
|
|
1895
|
-
card_function_type: 'guest' | 'staff'
|
|
1896
1897
|
cancelled: boolean
|
|
1897
1898
|
discarded: boolean
|
|
1898
1899
|
expired: boolean
|
|
@@ -1902,6 +1903,8 @@ export interface Routes {
|
|
|
1902
1903
|
card_format: 'TLCode' | 'rfid48'
|
|
1903
1904
|
card_holder?: string | undefined
|
|
1904
1905
|
number_of_issued_cards: number
|
|
1906
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
1907
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
1905
1908
|
}
|
|
1906
1909
|
| undefined
|
|
1907
1910
|
}
|
|
@@ -2677,7 +2680,7 @@ export interface Routes {
|
|
|
2677
2680
|
/** Snapshot of the card data read from the physical encoder. */
|
|
2678
2681
|
acs_credential_on_encoder: {
|
|
2679
2682
|
/** Date and time the credential was created. */
|
|
2680
|
-
created_at: string
|
|
2683
|
+
created_at: string | null
|
|
2681
2684
|
is_issued: boolean | null
|
|
2682
2685
|
/** Date and time the credential will become useable. */
|
|
2683
2686
|
starts_at: string | null
|
|
@@ -2688,7 +2691,6 @@ export interface Routes {
|
|
|
2688
2691
|
visionline_metadata?:
|
|
2689
2692
|
| {
|
|
2690
2693
|
card_id: string
|
|
2691
|
-
card_function_type: 'guest' | 'staff'
|
|
2692
2694
|
cancelled: boolean
|
|
2693
2695
|
discarded: boolean
|
|
2694
2696
|
expired: boolean
|
|
@@ -2698,6 +2700,8 @@ export interface Routes {
|
|
|
2698
2700
|
card_format: 'TLCode' | 'rfid48'
|
|
2699
2701
|
card_holder?: string | undefined
|
|
2700
2702
|
number_of_issued_cards: number
|
|
2703
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
2704
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
2701
2705
|
}
|
|
2702
2706
|
| undefined
|
|
2703
2707
|
}
|
|
@@ -4381,7 +4385,7 @@ export interface Routes {
|
|
|
4381
4385
|
/** Snapshot of the card data read from the physical encoder. */
|
|
4382
4386
|
acs_credential_on_encoder: {
|
|
4383
4387
|
/** Date and time the credential was created. */
|
|
4384
|
-
created_at: string
|
|
4388
|
+
created_at: string | null
|
|
4385
4389
|
is_issued: boolean | null
|
|
4386
4390
|
/** Date and time the credential will become useable. */
|
|
4387
4391
|
starts_at: string | null
|
|
@@ -4392,7 +4396,6 @@ export interface Routes {
|
|
|
4392
4396
|
visionline_metadata?:
|
|
4393
4397
|
| {
|
|
4394
4398
|
card_id: string
|
|
4395
|
-
card_function_type: 'guest' | 'staff'
|
|
4396
4399
|
cancelled: boolean
|
|
4397
4400
|
discarded: boolean
|
|
4398
4401
|
expired: boolean
|
|
@@ -4402,6 +4405,8 @@ export interface Routes {
|
|
|
4402
4405
|
card_format: 'TLCode' | 'rfid48'
|
|
4403
4406
|
card_holder?: string | undefined
|
|
4404
4407
|
number_of_issued_cards: number
|
|
4408
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
4409
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
4405
4410
|
}
|
|
4406
4411
|
| undefined
|
|
4407
4412
|
}
|
|
@@ -5379,6 +5384,7 @@ export interface Routes {
|
|
|
5379
5384
|
| {
|
|
5380
5385
|
gadget_name: string
|
|
5381
5386
|
gadget_id: string
|
|
5387
|
+
_member_group_id?: string | undefined
|
|
5382
5388
|
}
|
|
5383
5389
|
| undefined
|
|
5384
5390
|
}) &
|
|
@@ -5673,7 +5679,7 @@ export interface Routes {
|
|
|
5673
5679
|
/** Snapshot of the card data read from the physical encoder. */
|
|
5674
5680
|
acs_credential_on_encoder: {
|
|
5675
5681
|
/** Date and time the credential was created. */
|
|
5676
|
-
created_at: string
|
|
5682
|
+
created_at: string | null
|
|
5677
5683
|
is_issued: boolean | null
|
|
5678
5684
|
/** Date and time the credential will become useable. */
|
|
5679
5685
|
starts_at: string | null
|
|
@@ -5684,7 +5690,6 @@ export interface Routes {
|
|
|
5684
5690
|
visionline_metadata?:
|
|
5685
5691
|
| {
|
|
5686
5692
|
card_id: string
|
|
5687
|
-
card_function_type: 'guest' | 'staff'
|
|
5688
5693
|
cancelled: boolean
|
|
5689
5694
|
discarded: boolean
|
|
5690
5695
|
expired: boolean
|
|
@@ -5694,6 +5699,8 @@ export interface Routes {
|
|
|
5694
5699
|
card_format: 'TLCode' | 'rfid48'
|
|
5695
5700
|
card_holder?: string | undefined
|
|
5696
5701
|
number_of_issued_cards: number
|
|
5702
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
5703
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
5697
5704
|
}
|
|
5698
5705
|
| undefined
|
|
5699
5706
|
}
|
|
@@ -6473,6 +6480,8 @@ export interface Routes {
|
|
|
6473
6480
|
| undefined
|
|
6474
6481
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
6475
6482
|
external_type_display_name?: string | undefined
|
|
6483
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
6484
|
+
is_credential_manager: boolean
|
|
6476
6485
|
visionline_metadata?:
|
|
6477
6486
|
| {
|
|
6478
6487
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -6604,6 +6613,8 @@ export interface Routes {
|
|
|
6604
6613
|
| undefined
|
|
6605
6614
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
6606
6615
|
external_type_display_name?: string | undefined
|
|
6616
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
6617
|
+
is_credential_manager: boolean
|
|
6607
6618
|
visionline_metadata?:
|
|
6608
6619
|
| {
|
|
6609
6620
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -6735,6 +6746,8 @@ export interface Routes {
|
|
|
6735
6746
|
| undefined
|
|
6736
6747
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
6737
6748
|
external_type_display_name?: string | undefined
|
|
6749
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
6750
|
+
is_credential_manager: boolean
|
|
6738
6751
|
visionline_metadata?:
|
|
6739
6752
|
| {
|
|
6740
6753
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -7719,7 +7732,7 @@ export interface Routes {
|
|
|
7719
7732
|
/** Snapshot of the card data read from the physical encoder. */
|
|
7720
7733
|
acs_credential_on_encoder: {
|
|
7721
7734
|
/** Date and time the credential was created. */
|
|
7722
|
-
created_at: string
|
|
7735
|
+
created_at: string | null
|
|
7723
7736
|
is_issued: boolean | null
|
|
7724
7737
|
/** Date and time the credential will become useable. */
|
|
7725
7738
|
starts_at: string | null
|
|
@@ -7730,7 +7743,6 @@ export interface Routes {
|
|
|
7730
7743
|
visionline_metadata?:
|
|
7731
7744
|
| {
|
|
7732
7745
|
card_id: string
|
|
7733
|
-
card_function_type: 'guest' | 'staff'
|
|
7734
7746
|
cancelled: boolean
|
|
7735
7747
|
discarded: boolean
|
|
7736
7748
|
expired: boolean
|
|
@@ -7740,6 +7752,8 @@ export interface Routes {
|
|
|
7740
7752
|
card_format: 'TLCode' | 'rfid48'
|
|
7741
7753
|
card_holder?: string | undefined
|
|
7742
7754
|
number_of_issued_cards: number
|
|
7755
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
7756
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
7743
7757
|
}
|
|
7744
7758
|
| undefined
|
|
7745
7759
|
}
|
|
@@ -8369,7 +8383,7 @@ export interface Routes {
|
|
|
8369
8383
|
/** Snapshot of the card data read from the physical encoder. */
|
|
8370
8384
|
acs_credential_on_encoder: {
|
|
8371
8385
|
/** Date and time the credential was created. */
|
|
8372
|
-
created_at: string
|
|
8386
|
+
created_at: string | null
|
|
8373
8387
|
is_issued: boolean | null
|
|
8374
8388
|
/** Date and time the credential will become useable. */
|
|
8375
8389
|
starts_at: string | null
|
|
@@ -8380,7 +8394,6 @@ export interface Routes {
|
|
|
8380
8394
|
visionline_metadata?:
|
|
8381
8395
|
| {
|
|
8382
8396
|
card_id: string
|
|
8383
|
-
card_function_type: 'guest' | 'staff'
|
|
8384
8397
|
cancelled: boolean
|
|
8385
8398
|
discarded: boolean
|
|
8386
8399
|
expired: boolean
|
|
@@ -8390,6 +8403,8 @@ export interface Routes {
|
|
|
8390
8403
|
card_format: 'TLCode' | 'rfid48'
|
|
8391
8404
|
card_holder?: string | undefined
|
|
8392
8405
|
number_of_issued_cards: number
|
|
8406
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
8407
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
8393
8408
|
}
|
|
8394
8409
|
| undefined
|
|
8395
8410
|
}
|
|
@@ -9844,6 +9859,7 @@ export interface Routes {
|
|
|
9844
9859
|
| {
|
|
9845
9860
|
gadget_name: string
|
|
9846
9861
|
gadget_id: string
|
|
9862
|
+
_member_group_id?: string | undefined
|
|
9847
9863
|
}
|
|
9848
9864
|
| undefined
|
|
9849
9865
|
}) &
|
|
@@ -10628,6 +10644,7 @@ export interface Routes {
|
|
|
10628
10644
|
| {
|
|
10629
10645
|
gadget_name: string
|
|
10630
10646
|
gadget_id: string
|
|
10647
|
+
_member_group_id?: string | undefined
|
|
10631
10648
|
}
|
|
10632
10649
|
| undefined
|
|
10633
10650
|
}) &
|
|
@@ -12106,6 +12123,7 @@ export interface Routes {
|
|
|
12106
12123
|
| {
|
|
12107
12124
|
gadget_name: string
|
|
12108
12125
|
gadget_id: string
|
|
12126
|
+
_member_group_id?: string | undefined
|
|
12109
12127
|
}
|
|
12110
12128
|
| undefined
|
|
12111
12129
|
}) &
|
|
@@ -12719,6 +12737,7 @@ export interface Routes {
|
|
|
12719
12737
|
| {
|
|
12720
12738
|
gadget_name: string
|
|
12721
12739
|
gadget_id: string
|
|
12740
|
+
_member_group_id?: string | undefined
|
|
12722
12741
|
}
|
|
12723
12742
|
| undefined
|
|
12724
12743
|
}) &
|
|
@@ -13503,6 +13522,7 @@ export interface Routes {
|
|
|
13503
13522
|
| {
|
|
13504
13523
|
gadget_name: string
|
|
13505
13524
|
gadget_id: string
|
|
13525
|
+
_member_group_id?: string | undefined
|
|
13506
13526
|
}
|
|
13507
13527
|
| undefined
|
|
13508
13528
|
}) &
|
|
@@ -14116,6 +14136,7 @@ export interface Routes {
|
|
|
14116
14136
|
| {
|
|
14117
14137
|
gadget_name: string
|
|
14118
14138
|
gadget_id: string
|
|
14139
|
+
_member_group_id?: string | undefined
|
|
14119
14140
|
}
|
|
14120
14141
|
| undefined
|
|
14121
14142
|
}) &
|
|
@@ -14405,7 +14426,7 @@ export interface Routes {
|
|
|
14405
14426
|
/** Snapshot of the card data read from the physical encoder. */
|
|
14406
14427
|
acs_credential_on_encoder: {
|
|
14407
14428
|
/** Date and time the credential was created. */
|
|
14408
|
-
created_at: string
|
|
14429
|
+
created_at: string | null
|
|
14409
14430
|
is_issued: boolean | null
|
|
14410
14431
|
/** Date and time the credential will become useable. */
|
|
14411
14432
|
starts_at: string | null
|
|
@@ -14416,7 +14437,6 @@ export interface Routes {
|
|
|
14416
14437
|
visionline_metadata?:
|
|
14417
14438
|
| {
|
|
14418
14439
|
card_id: string
|
|
14419
|
-
card_function_type: 'guest' | 'staff'
|
|
14420
14440
|
cancelled: boolean
|
|
14421
14441
|
discarded: boolean
|
|
14422
14442
|
expired: boolean
|
|
@@ -14426,6 +14446,8 @@ export interface Routes {
|
|
|
14426
14446
|
card_format: 'TLCode' | 'rfid48'
|
|
14427
14447
|
card_holder?: string | undefined
|
|
14428
14448
|
number_of_issued_cards: number
|
|
14449
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
14450
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
14429
14451
|
}
|
|
14430
14452
|
| undefined
|
|
14431
14453
|
}
|
|
@@ -15056,7 +15078,7 @@ export interface Routes {
|
|
|
15056
15078
|
/** Snapshot of the card data read from the physical encoder. */
|
|
15057
15079
|
acs_credential_on_encoder: {
|
|
15058
15080
|
/** Date and time the credential was created. */
|
|
15059
|
-
created_at: string
|
|
15081
|
+
created_at: string | null
|
|
15060
15082
|
is_issued: boolean | null
|
|
15061
15083
|
/** Date and time the credential will become useable. */
|
|
15062
15084
|
starts_at: string | null
|
|
@@ -15067,7 +15089,6 @@ export interface Routes {
|
|
|
15067
15089
|
visionline_metadata?:
|
|
15068
15090
|
| {
|
|
15069
15091
|
card_id: string
|
|
15070
|
-
card_function_type: 'guest' | 'staff'
|
|
15071
15092
|
cancelled: boolean
|
|
15072
15093
|
discarded: boolean
|
|
15073
15094
|
expired: boolean
|
|
@@ -15077,6 +15098,8 @@ export interface Routes {
|
|
|
15077
15098
|
card_format: 'TLCode' | 'rfid48'
|
|
15078
15099
|
card_holder?: string | undefined
|
|
15079
15100
|
number_of_issued_cards: number
|
|
15101
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
15102
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
15080
15103
|
}
|
|
15081
15104
|
| undefined
|
|
15082
15105
|
}
|
|
@@ -16236,6 +16259,7 @@ export interface Routes {
|
|
|
16236
16259
|
| {
|
|
16237
16260
|
gadget_name: string
|
|
16238
16261
|
gadget_id: string
|
|
16262
|
+
_member_group_id?: string | undefined
|
|
16239
16263
|
}
|
|
16240
16264
|
| undefined
|
|
16241
16265
|
}) &
|
|
@@ -16849,6 +16873,7 @@ export interface Routes {
|
|
|
16849
16873
|
| {
|
|
16850
16874
|
gadget_name: string
|
|
16851
16875
|
gadget_id: string
|
|
16876
|
+
_member_group_id?: string | undefined
|
|
16852
16877
|
}
|
|
16853
16878
|
| undefined
|
|
16854
16879
|
}) &
|
|
@@ -17143,7 +17168,7 @@ export interface Routes {
|
|
|
17143
17168
|
/** Snapshot of the card data read from the physical encoder. */
|
|
17144
17169
|
acs_credential_on_encoder: {
|
|
17145
17170
|
/** Date and time the credential was created. */
|
|
17146
|
-
created_at: string
|
|
17171
|
+
created_at: string | null
|
|
17147
17172
|
is_issued: boolean | null
|
|
17148
17173
|
/** Date and time the credential will become useable. */
|
|
17149
17174
|
starts_at: string | null
|
|
@@ -17154,7 +17179,6 @@ export interface Routes {
|
|
|
17154
17179
|
visionline_metadata?:
|
|
17155
17180
|
| {
|
|
17156
17181
|
card_id: string
|
|
17157
|
-
card_function_type: 'guest' | 'staff'
|
|
17158
17182
|
cancelled: boolean
|
|
17159
17183
|
discarded: boolean
|
|
17160
17184
|
expired: boolean
|
|
@@ -17164,6 +17188,8 @@ export interface Routes {
|
|
|
17164
17188
|
card_format: 'TLCode' | 'rfid48'
|
|
17165
17189
|
card_holder?: string | undefined
|
|
17166
17190
|
number_of_issued_cards: number
|
|
17191
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
17192
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
17167
17193
|
}
|
|
17168
17194
|
| undefined
|
|
17169
17195
|
}
|
|
@@ -17804,7 +17830,7 @@ export interface Routes {
|
|
|
17804
17830
|
/** Snapshot of the card data read from the physical encoder. */
|
|
17805
17831
|
acs_credential_on_encoder: {
|
|
17806
17832
|
/** Date and time the credential was created. */
|
|
17807
|
-
created_at: string
|
|
17833
|
+
created_at: string | null
|
|
17808
17834
|
is_issued: boolean | null
|
|
17809
17835
|
/** Date and time the credential will become useable. */
|
|
17810
17836
|
starts_at: string | null
|
|
@@ -17815,7 +17841,6 @@ export interface Routes {
|
|
|
17815
17841
|
visionline_metadata?:
|
|
17816
17842
|
| {
|
|
17817
17843
|
card_id: string
|
|
17818
|
-
card_function_type: 'guest' | 'staff'
|
|
17819
17844
|
cancelled: boolean
|
|
17820
17845
|
discarded: boolean
|
|
17821
17846
|
expired: boolean
|
|
@@ -17825,6 +17850,8 @@ export interface Routes {
|
|
|
17825
17850
|
card_format: 'TLCode' | 'rfid48'
|
|
17826
17851
|
card_holder?: string | undefined
|
|
17827
17852
|
number_of_issued_cards: number
|
|
17853
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
17854
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
17828
17855
|
}
|
|
17829
17856
|
| undefined
|
|
17830
17857
|
}
|
|
@@ -18504,7 +18531,7 @@ export interface Routes {
|
|
|
18504
18531
|
/** Snapshot of the card data read from the physical encoder. */
|
|
18505
18532
|
acs_credential_on_encoder: {
|
|
18506
18533
|
/** Date and time the credential was created. */
|
|
18507
|
-
created_at: string
|
|
18534
|
+
created_at: string | null
|
|
18508
18535
|
is_issued: boolean | null
|
|
18509
18536
|
/** Date and time the credential will become useable. */
|
|
18510
18537
|
starts_at: string | null
|
|
@@ -18515,7 +18542,6 @@ export interface Routes {
|
|
|
18515
18542
|
visionline_metadata?:
|
|
18516
18543
|
| {
|
|
18517
18544
|
card_id: string
|
|
18518
|
-
card_function_type: 'guest' | 'staff'
|
|
18519
18545
|
cancelled: boolean
|
|
18520
18546
|
discarded: boolean
|
|
18521
18547
|
expired: boolean
|
|
@@ -18525,6 +18551,8 @@ export interface Routes {
|
|
|
18525
18551
|
card_format: 'TLCode' | 'rfid48'
|
|
18526
18552
|
card_holder?: string | undefined
|
|
18527
18553
|
number_of_issued_cards: number
|
|
18554
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
18555
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
18528
18556
|
}
|
|
18529
18557
|
| undefined
|
|
18530
18558
|
}
|
|
@@ -19361,7 +19389,7 @@ export interface Routes {
|
|
|
19361
19389
|
/** Snapshot of the card data read from the physical encoder. */
|
|
19362
19390
|
acs_credential_on_encoder: {
|
|
19363
19391
|
/** Date and time the credential was created. */
|
|
19364
|
-
created_at: string
|
|
19392
|
+
created_at: string | null
|
|
19365
19393
|
is_issued: boolean | null
|
|
19366
19394
|
/** Date and time the credential will become useable. */
|
|
19367
19395
|
starts_at: string | null
|
|
@@ -19372,7 +19400,6 @@ export interface Routes {
|
|
|
19372
19400
|
visionline_metadata?:
|
|
19373
19401
|
| {
|
|
19374
19402
|
card_id: string
|
|
19375
|
-
card_function_type: 'guest' | 'staff'
|
|
19376
19403
|
cancelled: boolean
|
|
19377
19404
|
discarded: boolean
|
|
19378
19405
|
expired: boolean
|
|
@@ -19382,6 +19409,8 @@ export interface Routes {
|
|
|
19382
19409
|
card_format: 'TLCode' | 'rfid48'
|
|
19383
19410
|
card_holder?: string | undefined
|
|
19384
19411
|
number_of_issued_cards: number
|
|
19412
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
19413
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
19385
19414
|
}
|
|
19386
19415
|
| undefined
|
|
19387
19416
|
}
|
|
@@ -20014,7 +20043,7 @@ export interface Routes {
|
|
|
20014
20043
|
/** Snapshot of the card data read from the physical encoder. */
|
|
20015
20044
|
acs_credential_on_encoder: {
|
|
20016
20045
|
/** Date and time the credential was created. */
|
|
20017
|
-
created_at: string
|
|
20046
|
+
created_at: string | null
|
|
20018
20047
|
is_issued: boolean | null
|
|
20019
20048
|
/** Date and time the credential will become useable. */
|
|
20020
20049
|
starts_at: string | null
|
|
@@ -20025,7 +20054,6 @@ export interface Routes {
|
|
|
20025
20054
|
visionline_metadata?:
|
|
20026
20055
|
| {
|
|
20027
20056
|
card_id: string
|
|
20028
|
-
card_function_type: 'guest' | 'staff'
|
|
20029
20057
|
cancelled: boolean
|
|
20030
20058
|
discarded: boolean
|
|
20031
20059
|
expired: boolean
|
|
@@ -20035,6 +20063,8 @@ export interface Routes {
|
|
|
20035
20063
|
card_format: 'TLCode' | 'rfid48'
|
|
20036
20064
|
card_holder?: string | undefined
|
|
20037
20065
|
number_of_issued_cards: number
|
|
20066
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
20067
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
20038
20068
|
}
|
|
20039
20069
|
| undefined
|
|
20040
20070
|
}
|
|
@@ -21034,6 +21064,7 @@ export interface Routes {
|
|
|
21034
21064
|
| {
|
|
21035
21065
|
gadget_name: string
|
|
21036
21066
|
gadget_id: string
|
|
21067
|
+
_member_group_id?: string | undefined
|
|
21037
21068
|
}
|
|
21038
21069
|
| undefined
|
|
21039
21070
|
}) &
|
|
@@ -21325,7 +21356,7 @@ export interface Routes {
|
|
|
21325
21356
|
/** Snapshot of the card data read from the physical encoder. */
|
|
21326
21357
|
acs_credential_on_encoder: {
|
|
21327
21358
|
/** Date and time the credential was created. */
|
|
21328
|
-
created_at: string
|
|
21359
|
+
created_at: string | null
|
|
21329
21360
|
is_issued: boolean | null
|
|
21330
21361
|
/** Date and time the credential will become useable. */
|
|
21331
21362
|
starts_at: string | null
|
|
@@ -21336,7 +21367,6 @@ export interface Routes {
|
|
|
21336
21367
|
visionline_metadata?:
|
|
21337
21368
|
| {
|
|
21338
21369
|
card_id: string
|
|
21339
|
-
card_function_type: 'guest' | 'staff'
|
|
21340
21370
|
cancelled: boolean
|
|
21341
21371
|
discarded: boolean
|
|
21342
21372
|
expired: boolean
|
|
@@ -21346,6 +21376,8 @@ export interface Routes {
|
|
|
21346
21376
|
card_format: 'TLCode' | 'rfid48'
|
|
21347
21377
|
card_holder?: string | undefined
|
|
21348
21378
|
number_of_issued_cards: number
|
|
21379
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
21380
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
21349
21381
|
}
|
|
21350
21382
|
| undefined
|
|
21351
21383
|
}
|
|
@@ -21980,7 +22012,7 @@ export interface Routes {
|
|
|
21980
22012
|
/** Snapshot of the card data read from the physical encoder. */
|
|
21981
22013
|
acs_credential_on_encoder: {
|
|
21982
22014
|
/** Date and time the credential was created. */
|
|
21983
|
-
created_at: string
|
|
22015
|
+
created_at: string | null
|
|
21984
22016
|
is_issued: boolean | null
|
|
21985
22017
|
/** Date and time the credential will become useable. */
|
|
21986
22018
|
starts_at: string | null
|
|
@@ -21991,7 +22023,6 @@ export interface Routes {
|
|
|
21991
22023
|
visionline_metadata?:
|
|
21992
22024
|
| {
|
|
21993
22025
|
card_id: string
|
|
21994
|
-
card_function_type: 'guest' | 'staff'
|
|
21995
22026
|
cancelled: boolean
|
|
21996
22027
|
discarded: boolean
|
|
21997
22028
|
expired: boolean
|
|
@@ -22001,6 +22032,8 @@ export interface Routes {
|
|
|
22001
22032
|
card_format: 'TLCode' | 'rfid48'
|
|
22002
22033
|
card_holder?: string | undefined
|
|
22003
22034
|
number_of_issued_cards: number
|
|
22035
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
22036
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
22004
22037
|
}
|
|
22005
22038
|
| undefined
|
|
22006
22039
|
}
|
|
@@ -23126,6 +23159,7 @@ export interface Routes {
|
|
|
23126
23159
|
| {
|
|
23127
23160
|
gadget_name: string
|
|
23128
23161
|
gadget_id: string
|
|
23162
|
+
_member_group_id?: string | undefined
|
|
23129
23163
|
}
|
|
23130
23164
|
| undefined
|
|
23131
23165
|
}) &
|
|
@@ -23739,6 +23773,7 @@ export interface Routes {
|
|
|
23739
23773
|
| {
|
|
23740
23774
|
gadget_name: string
|
|
23741
23775
|
gadget_id: string
|
|
23776
|
+
_member_group_id?: string | undefined
|
|
23742
23777
|
}
|
|
23743
23778
|
| undefined
|
|
23744
23779
|
}) &
|
|
@@ -24028,7 +24063,7 @@ export interface Routes {
|
|
|
24028
24063
|
/** Snapshot of the card data read from the physical encoder. */
|
|
24029
24064
|
acs_credential_on_encoder: {
|
|
24030
24065
|
/** Date and time the credential was created. */
|
|
24031
|
-
created_at: string
|
|
24066
|
+
created_at: string | null
|
|
24032
24067
|
is_issued: boolean | null
|
|
24033
24068
|
/** Date and time the credential will become useable. */
|
|
24034
24069
|
starts_at: string | null
|
|
@@ -24039,7 +24074,6 @@ export interface Routes {
|
|
|
24039
24074
|
visionline_metadata?:
|
|
24040
24075
|
| {
|
|
24041
24076
|
card_id: string
|
|
24042
|
-
card_function_type: 'guest' | 'staff'
|
|
24043
24077
|
cancelled: boolean
|
|
24044
24078
|
discarded: boolean
|
|
24045
24079
|
expired: boolean
|
|
@@ -24049,6 +24083,8 @@ export interface Routes {
|
|
|
24049
24083
|
card_format: 'TLCode' | 'rfid48'
|
|
24050
24084
|
card_holder?: string | undefined
|
|
24051
24085
|
number_of_issued_cards: number
|
|
24086
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
24087
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
24052
24088
|
}
|
|
24053
24089
|
| undefined
|
|
24054
24090
|
}
|
|
@@ -24800,7 +24836,7 @@ export interface Routes {
|
|
|
24800
24836
|
/** Snapshot of the card data read from the physical encoder. */
|
|
24801
24837
|
acs_credential_on_encoder: {
|
|
24802
24838
|
/** Date and time the credential was created. */
|
|
24803
|
-
created_at: string
|
|
24839
|
+
created_at: string | null
|
|
24804
24840
|
is_issued: boolean | null
|
|
24805
24841
|
/** Date and time the credential will become useable. */
|
|
24806
24842
|
starts_at: string | null
|
|
@@ -24811,7 +24847,6 @@ export interface Routes {
|
|
|
24811
24847
|
visionline_metadata?:
|
|
24812
24848
|
| {
|
|
24813
24849
|
card_id: string
|
|
24814
|
-
card_function_type: 'guest' | 'staff'
|
|
24815
24850
|
cancelled: boolean
|
|
24816
24851
|
discarded: boolean
|
|
24817
24852
|
expired: boolean
|
|
@@ -24821,6 +24856,8 @@ export interface Routes {
|
|
|
24821
24856
|
card_format: 'TLCode' | 'rfid48'
|
|
24822
24857
|
card_holder?: string | undefined
|
|
24823
24858
|
number_of_issued_cards: number
|
|
24859
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
24860
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
24824
24861
|
}
|
|
24825
24862
|
| undefined
|
|
24826
24863
|
}
|
|
@@ -25988,6 +26025,7 @@ export interface Routes {
|
|
|
25988
26025
|
| {
|
|
25989
26026
|
gadget_name: string
|
|
25990
26027
|
gadget_id: string
|
|
26028
|
+
_member_group_id?: string | undefined
|
|
25991
26029
|
}
|
|
25992
26030
|
| undefined
|
|
25993
26031
|
}) &
|
|
@@ -26603,6 +26641,7 @@ export interface Routes {
|
|
|
26603
26641
|
| {
|
|
26604
26642
|
gadget_name: string
|
|
26605
26643
|
gadget_id: string
|
|
26644
|
+
_member_group_id?: string | undefined
|
|
26606
26645
|
}
|
|
26607
26646
|
| undefined
|
|
26608
26647
|
}) &
|
|
@@ -26836,6 +26875,8 @@ export interface Routes {
|
|
|
26836
26875
|
| undefined
|
|
26837
26876
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
26838
26877
|
external_type_display_name?: string | undefined
|
|
26878
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
26879
|
+
is_credential_manager: boolean
|
|
26839
26880
|
visionline_metadata?:
|
|
26840
26881
|
| {
|
|
26841
26882
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -27319,7 +27360,7 @@ export interface Routes {
|
|
|
27319
27360
|
/** Snapshot of the card data read from the physical encoder. */
|
|
27320
27361
|
acs_credential_on_encoder: {
|
|
27321
27362
|
/** Date and time the credential was created. */
|
|
27322
|
-
created_at: string
|
|
27363
|
+
created_at: string | null
|
|
27323
27364
|
is_issued: boolean | null
|
|
27324
27365
|
/** Date and time the credential will become useable. */
|
|
27325
27366
|
starts_at: string | null
|
|
@@ -27330,7 +27371,6 @@ export interface Routes {
|
|
|
27330
27371
|
visionline_metadata?:
|
|
27331
27372
|
| {
|
|
27332
27373
|
card_id: string
|
|
27333
|
-
card_function_type: 'guest' | 'staff'
|
|
27334
27374
|
cancelled: boolean
|
|
27335
27375
|
discarded: boolean
|
|
27336
27376
|
expired: boolean
|
|
@@ -27340,6 +27380,8 @@ export interface Routes {
|
|
|
27340
27380
|
card_format: 'TLCode' | 'rfid48'
|
|
27341
27381
|
card_holder?: string | undefined
|
|
27342
27382
|
number_of_issued_cards: number
|
|
27383
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
27384
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
27343
27385
|
}
|
|
27344
27386
|
| undefined
|
|
27345
27387
|
}
|