@seamapi/types 1.264.1 → 1.264.2
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 +8 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +56 -27
- package/lib/seam/connect/models/acs/acs-credential.d.ts +3 -3
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +7 -7
- package/lib/seam/connect/models/action-attempts/scan-card.d.ts +7 -7
- 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 +4 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +33 -20
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +33 -20
|
@@ -90,7 +90,7 @@ export interface Routes {
|
|
|
90
90
|
/** Snapshot of the card data read from the physical encoder. */
|
|
91
91
|
acs_credential_on_encoder: {
|
|
92
92
|
/** Date and time the credential was created. */
|
|
93
|
-
created_at: string;
|
|
93
|
+
created_at: string | null;
|
|
94
94
|
is_issued: boolean | null;
|
|
95
95
|
/** Date and time the credential will become useable. */
|
|
96
96
|
starts_at: string | null;
|
|
@@ -802,7 +802,7 @@ export interface Routes {
|
|
|
802
802
|
/** Snapshot of the card data read from the physical encoder. */
|
|
803
803
|
acs_credential_on_encoder: {
|
|
804
804
|
/** Date and time the credential was created. */
|
|
805
|
-
created_at: string;
|
|
805
|
+
created_at: string | null;
|
|
806
806
|
is_issued: boolean | null;
|
|
807
807
|
/** Date and time the credential will become useable. */
|
|
808
808
|
starts_at: string | null;
|
|
@@ -1671,7 +1671,7 @@ export interface Routes {
|
|
|
1671
1671
|
/** Snapshot of the card data read from the physical encoder. */
|
|
1672
1672
|
acs_credential_on_encoder: {
|
|
1673
1673
|
/** Date and time the credential was created. */
|
|
1674
|
-
created_at: string;
|
|
1674
|
+
created_at: string | null;
|
|
1675
1675
|
is_issued: boolean | null;
|
|
1676
1676
|
/** Date and time the credential will become useable. */
|
|
1677
1677
|
starts_at: string | null;
|
|
@@ -2370,7 +2370,7 @@ export interface Routes {
|
|
|
2370
2370
|
/** Snapshot of the card data read from the physical encoder. */
|
|
2371
2371
|
acs_credential_on_encoder: {
|
|
2372
2372
|
/** Date and time the credential was created. */
|
|
2373
|
-
created_at: string;
|
|
2373
|
+
created_at: string | null;
|
|
2374
2374
|
is_issued: boolean | null;
|
|
2375
2375
|
/** Date and time the credential will become useable. */
|
|
2376
2376
|
starts_at: string | null;
|
|
@@ -3813,7 +3813,7 @@ export interface Routes {
|
|
|
3813
3813
|
/** Snapshot of the card data read from the physical encoder. */
|
|
3814
3814
|
acs_credential_on_encoder: {
|
|
3815
3815
|
/** Date and time the credential was created. */
|
|
3816
|
-
created_at: string;
|
|
3816
|
+
created_at: string | null;
|
|
3817
3817
|
is_issued: boolean | null;
|
|
3818
3818
|
/** Date and time the credential will become useable. */
|
|
3819
3819
|
starts_at: string | null;
|
|
@@ -4613,6 +4613,7 @@ export interface Routes {
|
|
|
4613
4613
|
akiles_metadata?: {
|
|
4614
4614
|
gadget_name: string;
|
|
4615
4615
|
gadget_id: string;
|
|
4616
|
+
_member_group_id?: string | undefined;
|
|
4616
4617
|
} | undefined;
|
|
4617
4618
|
}) & ({
|
|
4618
4619
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -4837,7 +4838,7 @@ export interface Routes {
|
|
|
4837
4838
|
/** Snapshot of the card data read from the physical encoder. */
|
|
4838
4839
|
acs_credential_on_encoder: {
|
|
4839
4840
|
/** Date and time the credential was created. */
|
|
4840
|
-
created_at: string;
|
|
4841
|
+
created_at: string | null;
|
|
4841
4842
|
is_issued: boolean | null;
|
|
4842
4843
|
/** Date and time the credential will become useable. */
|
|
4843
4844
|
starts_at: string | null;
|
|
@@ -6556,7 +6557,7 @@ export interface Routes {
|
|
|
6556
6557
|
/** Snapshot of the card data read from the physical encoder. */
|
|
6557
6558
|
acs_credential_on_encoder: {
|
|
6558
6559
|
/** Date and time the credential was created. */
|
|
6559
|
-
created_at: string;
|
|
6560
|
+
created_at: string | null;
|
|
6560
6561
|
is_issued: boolean | null;
|
|
6561
6562
|
/** Date and time the credential will become useable. */
|
|
6562
6563
|
starts_at: string | null;
|
|
@@ -7117,7 +7118,7 @@ export interface Routes {
|
|
|
7117
7118
|
/** Snapshot of the card data read from the physical encoder. */
|
|
7118
7119
|
acs_credential_on_encoder: {
|
|
7119
7120
|
/** Date and time the credential was created. */
|
|
7120
|
-
created_at: string;
|
|
7121
|
+
created_at: string | null;
|
|
7121
7122
|
is_issued: boolean | null;
|
|
7122
7123
|
/** Date and time the credential will become useable. */
|
|
7123
7124
|
starts_at: string | null;
|
|
@@ -8335,6 +8336,7 @@ export interface Routes {
|
|
|
8335
8336
|
akiles_metadata?: {
|
|
8336
8337
|
gadget_name: string;
|
|
8337
8338
|
gadget_id: string;
|
|
8339
|
+
_member_group_id?: string | undefined;
|
|
8338
8340
|
} | undefined;
|
|
8339
8341
|
}) & ({
|
|
8340
8342
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -8799,6 +8801,7 @@ export interface Routes {
|
|
|
8799
8801
|
akiles_metadata?: {
|
|
8800
8802
|
gadget_name: string;
|
|
8801
8803
|
gadget_id: string;
|
|
8804
|
+
_member_group_id?: string | undefined;
|
|
8802
8805
|
} | undefined;
|
|
8803
8806
|
}) & ({
|
|
8804
8807
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -9661,6 +9664,7 @@ export interface Routes {
|
|
|
9661
9664
|
akiles_metadata?: {
|
|
9662
9665
|
gadget_name: string;
|
|
9663
9666
|
gadget_id: string;
|
|
9667
|
+
_member_group_id?: string | undefined;
|
|
9664
9668
|
} | undefined;
|
|
9665
9669
|
}) & ({
|
|
9666
9670
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -10100,6 +10104,7 @@ export interface Routes {
|
|
|
10100
10104
|
akiles_metadata?: {
|
|
10101
10105
|
gadget_name: string;
|
|
10102
10106
|
gadget_id: string;
|
|
10107
|
+
_member_group_id?: string | undefined;
|
|
10103
10108
|
} | undefined;
|
|
10104
10109
|
}) & ({
|
|
10105
10110
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -10564,6 +10569,7 @@ export interface Routes {
|
|
|
10564
10569
|
akiles_metadata?: {
|
|
10565
10570
|
gadget_name: string;
|
|
10566
10571
|
gadget_id: string;
|
|
10572
|
+
_member_group_id?: string | undefined;
|
|
10567
10573
|
} | undefined;
|
|
10568
10574
|
}) & ({
|
|
10569
10575
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -11003,6 +11009,7 @@ export interface Routes {
|
|
|
11003
11009
|
akiles_metadata?: {
|
|
11004
11010
|
gadget_name: string;
|
|
11005
11011
|
gadget_id: string;
|
|
11012
|
+
_member_group_id?: string | undefined;
|
|
11006
11013
|
} | undefined;
|
|
11007
11014
|
}) & ({
|
|
11008
11015
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -11224,7 +11231,7 @@ export interface Routes {
|
|
|
11224
11231
|
/** Snapshot of the card data read from the physical encoder. */
|
|
11225
11232
|
acs_credential_on_encoder: {
|
|
11226
11233
|
/** Date and time the credential was created. */
|
|
11227
|
-
created_at: string;
|
|
11234
|
+
created_at: string | null;
|
|
11228
11235
|
is_issued: boolean | null;
|
|
11229
11236
|
/** Date and time the credential will become useable. */
|
|
11230
11237
|
starts_at: string | null;
|
|
@@ -11786,7 +11793,7 @@ export interface Routes {
|
|
|
11786
11793
|
/** Snapshot of the card data read from the physical encoder. */
|
|
11787
11794
|
acs_credential_on_encoder: {
|
|
11788
11795
|
/** Date and time the credential was created. */
|
|
11789
|
-
created_at: string;
|
|
11796
|
+
created_at: string | null;
|
|
11790
11797
|
is_issued: boolean | null;
|
|
11791
11798
|
/** Date and time the credential will become useable. */
|
|
11792
11799
|
starts_at: string | null;
|
|
@@ -12625,6 +12632,7 @@ export interface Routes {
|
|
|
12625
12632
|
akiles_metadata?: {
|
|
12626
12633
|
gadget_name: string;
|
|
12627
12634
|
gadget_id: string;
|
|
12635
|
+
_member_group_id?: string | undefined;
|
|
12628
12636
|
} | undefined;
|
|
12629
12637
|
}) & ({
|
|
12630
12638
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -13064,6 +13072,7 @@ export interface Routes {
|
|
|
13064
13072
|
akiles_metadata?: {
|
|
13065
13073
|
gadget_name: string;
|
|
13066
13074
|
gadget_id: string;
|
|
13075
|
+
_member_group_id?: string | undefined;
|
|
13067
13076
|
} | undefined;
|
|
13068
13077
|
}) & ({
|
|
13069
13078
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -13290,7 +13299,7 @@ export interface Routes {
|
|
|
13290
13299
|
/** Snapshot of the card data read from the physical encoder. */
|
|
13291
13300
|
acs_credential_on_encoder: {
|
|
13292
13301
|
/** Date and time the credential was created. */
|
|
13293
|
-
created_at: string;
|
|
13302
|
+
created_at: string | null;
|
|
13294
13303
|
is_issued: boolean | null;
|
|
13295
13304
|
/** Date and time the credential will become useable. */
|
|
13296
13305
|
starts_at: string | null;
|
|
@@ -13862,7 +13871,7 @@ export interface Routes {
|
|
|
13862
13871
|
/** Snapshot of the card data read from the physical encoder. */
|
|
13863
13872
|
acs_credential_on_encoder: {
|
|
13864
13873
|
/** Date and time the credential was created. */
|
|
13865
|
-
created_at: string;
|
|
13874
|
+
created_at: string | null;
|
|
13866
13875
|
is_issued: boolean | null;
|
|
13867
13876
|
/** Date and time the credential will become useable. */
|
|
13868
13877
|
starts_at: string | null;
|
|
@@ -14473,7 +14482,7 @@ export interface Routes {
|
|
|
14473
14482
|
/** Snapshot of the card data read from the physical encoder. */
|
|
14474
14483
|
acs_credential_on_encoder: {
|
|
14475
14484
|
/** Date and time the credential was created. */
|
|
14476
|
-
created_at: string;
|
|
14485
|
+
created_at: string | null;
|
|
14477
14486
|
is_issued: boolean | null;
|
|
14478
14487
|
/** Date and time the credential will become useable. */
|
|
14479
14488
|
starts_at: string | null;
|
|
@@ -15217,7 +15226,7 @@ export interface Routes {
|
|
|
15217
15226
|
/** Snapshot of the card data read from the physical encoder. */
|
|
15218
15227
|
acs_credential_on_encoder: {
|
|
15219
15228
|
/** Date and time the credential was created. */
|
|
15220
|
-
created_at: string;
|
|
15229
|
+
created_at: string | null;
|
|
15221
15230
|
is_issued: boolean | null;
|
|
15222
15231
|
/** Date and time the credential will become useable. */
|
|
15223
15232
|
starts_at: string | null;
|
|
@@ -15781,7 +15790,7 @@ export interface Routes {
|
|
|
15781
15790
|
/** Snapshot of the card data read from the physical encoder. */
|
|
15782
15791
|
acs_credential_on_encoder: {
|
|
15783
15792
|
/** Date and time the credential was created. */
|
|
15784
|
-
created_at: string;
|
|
15793
|
+
created_at: string | null;
|
|
15785
15794
|
is_issued: boolean | null;
|
|
15786
15795
|
/** Date and time the credential will become useable. */
|
|
15787
15796
|
starts_at: string | null;
|
|
@@ -16606,6 +16615,7 @@ export interface Routes {
|
|
|
16606
16615
|
akiles_metadata?: {
|
|
16607
16616
|
gadget_name: string;
|
|
16608
16617
|
gadget_id: string;
|
|
16618
|
+
_member_group_id?: string | undefined;
|
|
16609
16619
|
} | undefined;
|
|
16610
16620
|
}) & ({
|
|
16611
16621
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -16829,7 +16839,7 @@ export interface Routes {
|
|
|
16829
16839
|
/** Snapshot of the card data read from the physical encoder. */
|
|
16830
16840
|
acs_credential_on_encoder: {
|
|
16831
16841
|
/** Date and time the credential was created. */
|
|
16832
|
-
created_at: string;
|
|
16842
|
+
created_at: string | null;
|
|
16833
16843
|
is_issued: boolean | null;
|
|
16834
16844
|
/** Date and time the credential will become useable. */
|
|
16835
16845
|
starts_at: string | null;
|
|
@@ -17395,7 +17405,7 @@ export interface Routes {
|
|
|
17395
17405
|
/** Snapshot of the card data read from the physical encoder. */
|
|
17396
17406
|
acs_credential_on_encoder: {
|
|
17397
17407
|
/** Date and time the credential was created. */
|
|
17398
|
-
created_at: string;
|
|
17408
|
+
created_at: string | null;
|
|
17399
17409
|
is_issued: boolean | null;
|
|
17400
17410
|
/** Date and time the credential will become useable. */
|
|
17401
17411
|
starts_at: string | null;
|
|
@@ -18200,6 +18210,7 @@ export interface Routes {
|
|
|
18200
18210
|
akiles_metadata?: {
|
|
18201
18211
|
gadget_name: string;
|
|
18202
18212
|
gadget_id: string;
|
|
18213
|
+
_member_group_id?: string | undefined;
|
|
18203
18214
|
} | undefined;
|
|
18204
18215
|
}) & ({
|
|
18205
18216
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -18860,7 +18871,7 @@ export interface Routes {
|
|
|
18860
18871
|
/** Snapshot of the card data read from the physical encoder. */
|
|
18861
18872
|
acs_credential_on_encoder: {
|
|
18862
18873
|
/** Date and time the credential was created. */
|
|
18863
|
-
created_at: string;
|
|
18874
|
+
created_at: string | null;
|
|
18864
18875
|
is_issued: boolean | null;
|
|
18865
18876
|
/** Date and time the credential will become useable. */
|
|
18866
18877
|
starts_at: string | null;
|
|
@@ -19543,7 +19554,7 @@ export interface Routes {
|
|
|
19543
19554
|
/** Snapshot of the card data read from the physical encoder. */
|
|
19544
19555
|
acs_credential_on_encoder: {
|
|
19545
19556
|
/** Date and time the credential was created. */
|
|
19546
|
-
created_at: string;
|
|
19557
|
+
created_at: string | null;
|
|
19547
19558
|
is_issued: boolean | null;
|
|
19548
19559
|
/** Date and time the credential will become useable. */
|
|
19549
19560
|
starts_at: string | null;
|
|
@@ -20534,6 +20545,7 @@ export interface Routes {
|
|
|
20534
20545
|
akiles_metadata?: {
|
|
20535
20546
|
gadget_name: string;
|
|
20536
20547
|
gadget_id: string;
|
|
20548
|
+
_member_group_id?: string | undefined;
|
|
20537
20549
|
} | undefined;
|
|
20538
20550
|
}) & ({
|
|
20539
20551
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -20975,6 +20987,7 @@ export interface Routes {
|
|
|
20975
20987
|
akiles_metadata?: {
|
|
20976
20988
|
gadget_name: string;
|
|
20977
20989
|
gadget_id: string;
|
|
20990
|
+
_member_group_id?: string | undefined;
|
|
20978
20991
|
} | undefined;
|
|
20979
20992
|
}) & ({
|
|
20980
20993
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -21574,7 +21587,7 @@ export interface Routes {
|
|
|
21574
21587
|
/** Snapshot of the card data read from the physical encoder. */
|
|
21575
21588
|
acs_credential_on_encoder: {
|
|
21576
21589
|
/** Date and time the credential was created. */
|
|
21577
|
-
created_at: string;
|
|
21590
|
+
created_at: string | null;
|
|
21578
21591
|
is_issued: boolean | null;
|
|
21579
21592
|
/** Date and time the credential will become useable. */
|
|
21580
21593
|
starts_at: string | null;
|
package/package.json
CHANGED
|
@@ -245,6 +245,11 @@ export const device_metadata = z
|
|
|
245
245
|
akiles_metadata: z.object({
|
|
246
246
|
gadget_name: z.string(),
|
|
247
247
|
gadget_id: z.string(),
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* Group ID to add users to for this device
|
|
251
|
+
*/
|
|
252
|
+
_member_group_id: z.string().optional(),
|
|
248
253
|
}),
|
|
249
254
|
})
|
|
250
255
|
.partial()
|
|
@@ -1264,6 +1264,7 @@ export default {
|
|
|
1264
1264
|
description:
|
|
1265
1265
|
'Date and time the credential was created.',
|
|
1266
1266
|
format: 'date-time',
|
|
1267
|
+
nullable: true,
|
|
1267
1268
|
type: 'string',
|
|
1268
1269
|
},
|
|
1269
1270
|
ends_at: {
|
|
@@ -3296,6 +3297,7 @@ export default {
|
|
|
3296
3297
|
properties: {
|
|
3297
3298
|
akiles_metadata: {
|
|
3298
3299
|
properties: {
|
|
3300
|
+
_member_group_id: { type: 'string' },
|
|
3299
3301
|
gadget_id: { type: 'string' },
|
|
3300
3302
|
gadget_name: { type: 'string' },
|
|
3301
3303
|
},
|
|
@@ -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
|
|
@@ -907,7 +907,7 @@ export interface Routes {
|
|
|
907
907
|
/** Snapshot of the card data read from the physical encoder. */
|
|
908
908
|
acs_credential_on_encoder: {
|
|
909
909
|
/** Date and time the credential was created. */
|
|
910
|
-
created_at: string
|
|
910
|
+
created_at: string | null
|
|
911
911
|
is_issued: boolean | null
|
|
912
912
|
/** Date and time the credential will become useable. */
|
|
913
913
|
starts_at: string | null
|
|
@@ -1881,7 +1881,7 @@ export interface Routes {
|
|
|
1881
1881
|
/** Snapshot of the card data read from the physical encoder. */
|
|
1882
1882
|
acs_credential_on_encoder: {
|
|
1883
1883
|
/** Date and time the credential was created. */
|
|
1884
|
-
created_at: string
|
|
1884
|
+
created_at: string | null
|
|
1885
1885
|
is_issued: boolean | null
|
|
1886
1886
|
/** Date and time the credential will become useable. */
|
|
1887
1887
|
starts_at: string | null
|
|
@@ -2677,7 +2677,7 @@ export interface Routes {
|
|
|
2677
2677
|
/** Snapshot of the card data read from the physical encoder. */
|
|
2678
2678
|
acs_credential_on_encoder: {
|
|
2679
2679
|
/** Date and time the credential was created. */
|
|
2680
|
-
created_at: string
|
|
2680
|
+
created_at: string | null
|
|
2681
2681
|
is_issued: boolean | null
|
|
2682
2682
|
/** Date and time the credential will become useable. */
|
|
2683
2683
|
starts_at: string | null
|
|
@@ -4381,7 +4381,7 @@ export interface Routes {
|
|
|
4381
4381
|
/** Snapshot of the card data read from the physical encoder. */
|
|
4382
4382
|
acs_credential_on_encoder: {
|
|
4383
4383
|
/** Date and time the credential was created. */
|
|
4384
|
-
created_at: string
|
|
4384
|
+
created_at: string | null
|
|
4385
4385
|
is_issued: boolean | null
|
|
4386
4386
|
/** Date and time the credential will become useable. */
|
|
4387
4387
|
starts_at: string | null
|
|
@@ -5379,6 +5379,7 @@ export interface Routes {
|
|
|
5379
5379
|
| {
|
|
5380
5380
|
gadget_name: string
|
|
5381
5381
|
gadget_id: string
|
|
5382
|
+
_member_group_id?: string | undefined
|
|
5382
5383
|
}
|
|
5383
5384
|
| undefined
|
|
5384
5385
|
}) &
|
|
@@ -5673,7 +5674,7 @@ export interface Routes {
|
|
|
5673
5674
|
/** Snapshot of the card data read from the physical encoder. */
|
|
5674
5675
|
acs_credential_on_encoder: {
|
|
5675
5676
|
/** Date and time the credential was created. */
|
|
5676
|
-
created_at: string
|
|
5677
|
+
created_at: string | null
|
|
5677
5678
|
is_issued: boolean | null
|
|
5678
5679
|
/** Date and time the credential will become useable. */
|
|
5679
5680
|
starts_at: string | null
|
|
@@ -7719,7 +7720,7 @@ export interface Routes {
|
|
|
7719
7720
|
/** Snapshot of the card data read from the physical encoder. */
|
|
7720
7721
|
acs_credential_on_encoder: {
|
|
7721
7722
|
/** Date and time the credential was created. */
|
|
7722
|
-
created_at: string
|
|
7723
|
+
created_at: string | null
|
|
7723
7724
|
is_issued: boolean | null
|
|
7724
7725
|
/** Date and time the credential will become useable. */
|
|
7725
7726
|
starts_at: string | null
|
|
@@ -8369,7 +8370,7 @@ export interface Routes {
|
|
|
8369
8370
|
/** Snapshot of the card data read from the physical encoder. */
|
|
8370
8371
|
acs_credential_on_encoder: {
|
|
8371
8372
|
/** Date and time the credential was created. */
|
|
8372
|
-
created_at: string
|
|
8373
|
+
created_at: string | null
|
|
8373
8374
|
is_issued: boolean | null
|
|
8374
8375
|
/** Date and time the credential will become useable. */
|
|
8375
8376
|
starts_at: string | null
|
|
@@ -9844,6 +9845,7 @@ export interface Routes {
|
|
|
9844
9845
|
| {
|
|
9845
9846
|
gadget_name: string
|
|
9846
9847
|
gadget_id: string
|
|
9848
|
+
_member_group_id?: string | undefined
|
|
9847
9849
|
}
|
|
9848
9850
|
| undefined
|
|
9849
9851
|
}) &
|
|
@@ -10628,6 +10630,7 @@ export interface Routes {
|
|
|
10628
10630
|
| {
|
|
10629
10631
|
gadget_name: string
|
|
10630
10632
|
gadget_id: string
|
|
10633
|
+
_member_group_id?: string | undefined
|
|
10631
10634
|
}
|
|
10632
10635
|
| undefined
|
|
10633
10636
|
}) &
|
|
@@ -12106,6 +12109,7 @@ export interface Routes {
|
|
|
12106
12109
|
| {
|
|
12107
12110
|
gadget_name: string
|
|
12108
12111
|
gadget_id: string
|
|
12112
|
+
_member_group_id?: string | undefined
|
|
12109
12113
|
}
|
|
12110
12114
|
| undefined
|
|
12111
12115
|
}) &
|
|
@@ -12719,6 +12723,7 @@ export interface Routes {
|
|
|
12719
12723
|
| {
|
|
12720
12724
|
gadget_name: string
|
|
12721
12725
|
gadget_id: string
|
|
12726
|
+
_member_group_id?: string | undefined
|
|
12722
12727
|
}
|
|
12723
12728
|
| undefined
|
|
12724
12729
|
}) &
|
|
@@ -13503,6 +13508,7 @@ export interface Routes {
|
|
|
13503
13508
|
| {
|
|
13504
13509
|
gadget_name: string
|
|
13505
13510
|
gadget_id: string
|
|
13511
|
+
_member_group_id?: string | undefined
|
|
13506
13512
|
}
|
|
13507
13513
|
| undefined
|
|
13508
13514
|
}) &
|
|
@@ -14116,6 +14122,7 @@ export interface Routes {
|
|
|
14116
14122
|
| {
|
|
14117
14123
|
gadget_name: string
|
|
14118
14124
|
gadget_id: string
|
|
14125
|
+
_member_group_id?: string | undefined
|
|
14119
14126
|
}
|
|
14120
14127
|
| undefined
|
|
14121
14128
|
}) &
|
|
@@ -14405,7 +14412,7 @@ export interface Routes {
|
|
|
14405
14412
|
/** Snapshot of the card data read from the physical encoder. */
|
|
14406
14413
|
acs_credential_on_encoder: {
|
|
14407
14414
|
/** Date and time the credential was created. */
|
|
14408
|
-
created_at: string
|
|
14415
|
+
created_at: string | null
|
|
14409
14416
|
is_issued: boolean | null
|
|
14410
14417
|
/** Date and time the credential will become useable. */
|
|
14411
14418
|
starts_at: string | null
|
|
@@ -15056,7 +15063,7 @@ export interface Routes {
|
|
|
15056
15063
|
/** Snapshot of the card data read from the physical encoder. */
|
|
15057
15064
|
acs_credential_on_encoder: {
|
|
15058
15065
|
/** Date and time the credential was created. */
|
|
15059
|
-
created_at: string
|
|
15066
|
+
created_at: string | null
|
|
15060
15067
|
is_issued: boolean | null
|
|
15061
15068
|
/** Date and time the credential will become useable. */
|
|
15062
15069
|
starts_at: string | null
|
|
@@ -16236,6 +16243,7 @@ export interface Routes {
|
|
|
16236
16243
|
| {
|
|
16237
16244
|
gadget_name: string
|
|
16238
16245
|
gadget_id: string
|
|
16246
|
+
_member_group_id?: string | undefined
|
|
16239
16247
|
}
|
|
16240
16248
|
| undefined
|
|
16241
16249
|
}) &
|
|
@@ -16849,6 +16857,7 @@ export interface Routes {
|
|
|
16849
16857
|
| {
|
|
16850
16858
|
gadget_name: string
|
|
16851
16859
|
gadget_id: string
|
|
16860
|
+
_member_group_id?: string | undefined
|
|
16852
16861
|
}
|
|
16853
16862
|
| undefined
|
|
16854
16863
|
}) &
|
|
@@ -17143,7 +17152,7 @@ export interface Routes {
|
|
|
17143
17152
|
/** Snapshot of the card data read from the physical encoder. */
|
|
17144
17153
|
acs_credential_on_encoder: {
|
|
17145
17154
|
/** Date and time the credential was created. */
|
|
17146
|
-
created_at: string
|
|
17155
|
+
created_at: string | null
|
|
17147
17156
|
is_issued: boolean | null
|
|
17148
17157
|
/** Date and time the credential will become useable. */
|
|
17149
17158
|
starts_at: string | null
|
|
@@ -17804,7 +17813,7 @@ export interface Routes {
|
|
|
17804
17813
|
/** Snapshot of the card data read from the physical encoder. */
|
|
17805
17814
|
acs_credential_on_encoder: {
|
|
17806
17815
|
/** Date and time the credential was created. */
|
|
17807
|
-
created_at: string
|
|
17816
|
+
created_at: string | null
|
|
17808
17817
|
is_issued: boolean | null
|
|
17809
17818
|
/** Date and time the credential will become useable. */
|
|
17810
17819
|
starts_at: string | null
|
|
@@ -18504,7 +18513,7 @@ export interface Routes {
|
|
|
18504
18513
|
/** Snapshot of the card data read from the physical encoder. */
|
|
18505
18514
|
acs_credential_on_encoder: {
|
|
18506
18515
|
/** Date and time the credential was created. */
|
|
18507
|
-
created_at: string
|
|
18516
|
+
created_at: string | null
|
|
18508
18517
|
is_issued: boolean | null
|
|
18509
18518
|
/** Date and time the credential will become useable. */
|
|
18510
18519
|
starts_at: string | null
|
|
@@ -19361,7 +19370,7 @@ export interface Routes {
|
|
|
19361
19370
|
/** Snapshot of the card data read from the physical encoder. */
|
|
19362
19371
|
acs_credential_on_encoder: {
|
|
19363
19372
|
/** Date and time the credential was created. */
|
|
19364
|
-
created_at: string
|
|
19373
|
+
created_at: string | null
|
|
19365
19374
|
is_issued: boolean | null
|
|
19366
19375
|
/** Date and time the credential will become useable. */
|
|
19367
19376
|
starts_at: string | null
|
|
@@ -20014,7 +20023,7 @@ export interface Routes {
|
|
|
20014
20023
|
/** Snapshot of the card data read from the physical encoder. */
|
|
20015
20024
|
acs_credential_on_encoder: {
|
|
20016
20025
|
/** Date and time the credential was created. */
|
|
20017
|
-
created_at: string
|
|
20026
|
+
created_at: string | null
|
|
20018
20027
|
is_issued: boolean | null
|
|
20019
20028
|
/** Date and time the credential will become useable. */
|
|
20020
20029
|
starts_at: string | null
|
|
@@ -21034,6 +21043,7 @@ export interface Routes {
|
|
|
21034
21043
|
| {
|
|
21035
21044
|
gadget_name: string
|
|
21036
21045
|
gadget_id: string
|
|
21046
|
+
_member_group_id?: string | undefined
|
|
21037
21047
|
}
|
|
21038
21048
|
| undefined
|
|
21039
21049
|
}) &
|
|
@@ -21325,7 +21335,7 @@ export interface Routes {
|
|
|
21325
21335
|
/** Snapshot of the card data read from the physical encoder. */
|
|
21326
21336
|
acs_credential_on_encoder: {
|
|
21327
21337
|
/** Date and time the credential was created. */
|
|
21328
|
-
created_at: string
|
|
21338
|
+
created_at: string | null
|
|
21329
21339
|
is_issued: boolean | null
|
|
21330
21340
|
/** Date and time the credential will become useable. */
|
|
21331
21341
|
starts_at: string | null
|
|
@@ -21980,7 +21990,7 @@ export interface Routes {
|
|
|
21980
21990
|
/** Snapshot of the card data read from the physical encoder. */
|
|
21981
21991
|
acs_credential_on_encoder: {
|
|
21982
21992
|
/** Date and time the credential was created. */
|
|
21983
|
-
created_at: string
|
|
21993
|
+
created_at: string | null
|
|
21984
21994
|
is_issued: boolean | null
|
|
21985
21995
|
/** Date and time the credential will become useable. */
|
|
21986
21996
|
starts_at: string | null
|
|
@@ -23126,6 +23136,7 @@ export interface Routes {
|
|
|
23126
23136
|
| {
|
|
23127
23137
|
gadget_name: string
|
|
23128
23138
|
gadget_id: string
|
|
23139
|
+
_member_group_id?: string | undefined
|
|
23129
23140
|
}
|
|
23130
23141
|
| undefined
|
|
23131
23142
|
}) &
|
|
@@ -24028,7 +24039,7 @@ export interface Routes {
|
|
|
24028
24039
|
/** Snapshot of the card data read from the physical encoder. */
|
|
24029
24040
|
acs_credential_on_encoder: {
|
|
24030
24041
|
/** Date and time the credential was created. */
|
|
24031
|
-
created_at: string
|
|
24042
|
+
created_at: string | null
|
|
24032
24043
|
is_issued: boolean | null
|
|
24033
24044
|
/** Date and time the credential will become useable. */
|
|
24034
24045
|
starts_at: string | null
|
|
@@ -24800,7 +24811,7 @@ export interface Routes {
|
|
|
24800
24811
|
/** Snapshot of the card data read from the physical encoder. */
|
|
24801
24812
|
acs_credential_on_encoder: {
|
|
24802
24813
|
/** Date and time the credential was created. */
|
|
24803
|
-
created_at: string
|
|
24814
|
+
created_at: string | null
|
|
24804
24815
|
is_issued: boolean | null
|
|
24805
24816
|
/** Date and time the credential will become useable. */
|
|
24806
24817
|
starts_at: string | null
|
|
@@ -25988,6 +25999,7 @@ export interface Routes {
|
|
|
25988
25999
|
| {
|
|
25989
26000
|
gadget_name: string
|
|
25990
26001
|
gadget_id: string
|
|
26002
|
+
_member_group_id?: string | undefined
|
|
25991
26003
|
}
|
|
25992
26004
|
| undefined
|
|
25993
26005
|
}) &
|
|
@@ -26603,6 +26615,7 @@ export interface Routes {
|
|
|
26603
26615
|
| {
|
|
26604
26616
|
gadget_name: string
|
|
26605
26617
|
gadget_id: string
|
|
26618
|
+
_member_group_id?: string | undefined
|
|
26606
26619
|
}
|
|
26607
26620
|
| undefined
|
|
26608
26621
|
}) &
|
|
@@ -27319,7 +27332,7 @@ export interface Routes {
|
|
|
27319
27332
|
/** Snapshot of the card data read from the physical encoder. */
|
|
27320
27333
|
acs_credential_on_encoder: {
|
|
27321
27334
|
/** Date and time the credential was created. */
|
|
27322
|
-
created_at: string
|
|
27335
|
+
created_at: string | null
|
|
27323
27336
|
is_issued: boolean | null
|
|
27324
27337
|
/** Date and time the credential will become useable. */
|
|
27325
27338
|
starts_at: string | null
|