@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
package/dist/connect.d.cts
CHANGED
|
@@ -1718,7 +1718,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1718
1718
|
action_type: z.ZodLiteral<"SCAN_CARD">;
|
|
1719
1719
|
result: z.ZodObject<{
|
|
1720
1720
|
acs_credential_on_encoder: z.ZodObject<{
|
|
1721
|
-
created_at: z.ZodString
|
|
1721
|
+
created_at: z.ZodNullable<z.ZodString>;
|
|
1722
1722
|
is_issued: z.ZodNullable<z.ZodBoolean>;
|
|
1723
1723
|
starts_at: z.ZodNullable<z.ZodString>;
|
|
1724
1724
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
@@ -1761,7 +1761,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1761
1761
|
card_holder?: string | undefined;
|
|
1762
1762
|
}>>;
|
|
1763
1763
|
}, "strip", z.ZodTypeAny, {
|
|
1764
|
-
created_at: string;
|
|
1764
|
+
created_at: string | null;
|
|
1765
1765
|
starts_at: string | null;
|
|
1766
1766
|
ends_at: string | null;
|
|
1767
1767
|
card_number: string | null;
|
|
@@ -1780,7 +1780,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1780
1780
|
card_holder?: string | undefined;
|
|
1781
1781
|
} | undefined;
|
|
1782
1782
|
}, {
|
|
1783
|
-
created_at: string;
|
|
1783
|
+
created_at: string | null;
|
|
1784
1784
|
starts_at: string | null;
|
|
1785
1785
|
ends_at: string | null;
|
|
1786
1786
|
card_number: string | null;
|
|
@@ -2104,7 +2104,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2104
2104
|
}>]>>;
|
|
2105
2105
|
}, "strip", z.ZodTypeAny, {
|
|
2106
2106
|
acs_credential_on_encoder: {
|
|
2107
|
-
created_at: string;
|
|
2107
|
+
created_at: string | null;
|
|
2108
2108
|
starts_at: string | null;
|
|
2109
2109
|
ends_at: string | null;
|
|
2110
2110
|
card_number: string | null;
|
|
@@ -2206,7 +2206,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2206
2206
|
} | null;
|
|
2207
2207
|
}, {
|
|
2208
2208
|
acs_credential_on_encoder: {
|
|
2209
|
-
created_at: string;
|
|
2209
|
+
created_at: string | null;
|
|
2210
2210
|
starts_at: string | null;
|
|
2211
2211
|
ends_at: string | null;
|
|
2212
2212
|
card_number: string | null;
|
|
@@ -2313,7 +2313,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2313
2313
|
error: null;
|
|
2314
2314
|
result: {
|
|
2315
2315
|
acs_credential_on_encoder: {
|
|
2316
|
-
created_at: string;
|
|
2316
|
+
created_at: string | null;
|
|
2317
2317
|
starts_at: string | null;
|
|
2318
2318
|
ends_at: string | null;
|
|
2319
2319
|
card_number: string | null;
|
|
@@ -2421,7 +2421,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2421
2421
|
error: null;
|
|
2422
2422
|
result: {
|
|
2423
2423
|
acs_credential_on_encoder: {
|
|
2424
|
-
created_at: string;
|
|
2424
|
+
created_at: string | null;
|
|
2425
2425
|
starts_at: string | null;
|
|
2426
2426
|
ends_at: string | null;
|
|
2427
2427
|
card_number: string | null;
|
|
@@ -4947,12 +4947,15 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4947
4947
|
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
4948
4948
|
gadget_name: z.ZodString;
|
|
4949
4949
|
gadget_id: z.ZodString;
|
|
4950
|
+
_member_group_id: z.ZodOptional<z.ZodString>;
|
|
4950
4951
|
}, "strip", z.ZodTypeAny, {
|
|
4951
4952
|
gadget_name: string;
|
|
4952
4953
|
gadget_id: string;
|
|
4954
|
+
_member_group_id?: string | undefined;
|
|
4953
4955
|
}, {
|
|
4954
4956
|
gadget_name: string;
|
|
4955
4957
|
gadget_id: string;
|
|
4958
|
+
_member_group_id?: string | undefined;
|
|
4956
4959
|
}>>;
|
|
4957
4960
|
}, "strip", z.ZodTypeAny, {
|
|
4958
4961
|
august_metadata?: {
|
|
@@ -5162,6 +5165,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5162
5165
|
akiles_metadata?: {
|
|
5163
5166
|
gadget_name: string;
|
|
5164
5167
|
gadget_id: string;
|
|
5168
|
+
_member_group_id?: string | undefined;
|
|
5165
5169
|
} | undefined;
|
|
5166
5170
|
}, {
|
|
5167
5171
|
august_metadata?: {
|
|
@@ -5371,6 +5375,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5371
5375
|
akiles_metadata?: {
|
|
5372
5376
|
gadget_name: string;
|
|
5373
5377
|
gadget_id: string;
|
|
5378
|
+
_member_group_id?: string | undefined;
|
|
5374
5379
|
} | undefined;
|
|
5375
5380
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
5376
5381
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -6107,6 +6112,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6107
6112
|
akiles_metadata?: {
|
|
6108
6113
|
gadget_name: string;
|
|
6109
6114
|
gadget_id: string;
|
|
6115
|
+
_member_group_id?: string | undefined;
|
|
6110
6116
|
} | undefined;
|
|
6111
6117
|
} & {
|
|
6112
6118
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -6494,6 +6500,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6494
6500
|
akiles_metadata?: {
|
|
6495
6501
|
gadget_name: string;
|
|
6496
6502
|
gadget_id: string;
|
|
6503
|
+
_member_group_id?: string | undefined;
|
|
6497
6504
|
} | undefined;
|
|
6498
6505
|
} & {
|
|
6499
6506
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -7577,12 +7584,15 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7577
7584
|
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
7578
7585
|
gadget_name: z.ZodString;
|
|
7579
7586
|
gadget_id: z.ZodString;
|
|
7587
|
+
_member_group_id: z.ZodOptional<z.ZodString>;
|
|
7580
7588
|
}, "strip", z.ZodTypeAny, {
|
|
7581
7589
|
gadget_name: string;
|
|
7582
7590
|
gadget_id: string;
|
|
7591
|
+
_member_group_id?: string | undefined;
|
|
7583
7592
|
}, {
|
|
7584
7593
|
gadget_name: string;
|
|
7585
7594
|
gadget_id: string;
|
|
7595
|
+
_member_group_id?: string | undefined;
|
|
7586
7596
|
}>>;
|
|
7587
7597
|
}, "strip", z.ZodTypeAny, {
|
|
7588
7598
|
august_metadata?: {
|
|
@@ -7792,6 +7802,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7792
7802
|
akiles_metadata?: {
|
|
7793
7803
|
gadget_name: string;
|
|
7794
7804
|
gadget_id: string;
|
|
7805
|
+
_member_group_id?: string | undefined;
|
|
7795
7806
|
} | undefined;
|
|
7796
7807
|
}, {
|
|
7797
7808
|
august_metadata?: {
|
|
@@ -8001,6 +8012,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8001
8012
|
akiles_metadata?: {
|
|
8002
8013
|
gadget_name: string;
|
|
8003
8014
|
gadget_id: string;
|
|
8015
|
+
_member_group_id?: string | undefined;
|
|
8004
8016
|
} | undefined;
|
|
8005
8017
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
8006
8018
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -11638,6 +11650,7 @@ declare const _default: {
|
|
|
11638
11650
|
created_at: {
|
|
11639
11651
|
description: string;
|
|
11640
11652
|
format: string;
|
|
11653
|
+
nullable: boolean;
|
|
11641
11654
|
type: string;
|
|
11642
11655
|
};
|
|
11643
11656
|
ends_at: {
|
|
@@ -12688,6 +12701,9 @@ declare const _default: {
|
|
|
12688
12701
|
properties: {
|
|
12689
12702
|
akiles_metadata: {
|
|
12690
12703
|
properties: {
|
|
12704
|
+
_member_group_id: {
|
|
12705
|
+
type: string;
|
|
12706
|
+
};
|
|
12691
12707
|
gadget_id: {
|
|
12692
12708
|
type: string;
|
|
12693
12709
|
};
|
|
@@ -29894,7 +29910,7 @@ interface Routes {
|
|
|
29894
29910
|
/** Snapshot of the card data read from the physical encoder. */
|
|
29895
29911
|
acs_credential_on_encoder: {
|
|
29896
29912
|
/** Date and time the credential was created. */
|
|
29897
|
-
created_at: string;
|
|
29913
|
+
created_at: string | null;
|
|
29898
29914
|
is_issued: boolean | null;
|
|
29899
29915
|
/** Date and time the credential will become useable. */
|
|
29900
29916
|
starts_at: string | null;
|
|
@@ -30606,7 +30622,7 @@ interface Routes {
|
|
|
30606
30622
|
/** Snapshot of the card data read from the physical encoder. */
|
|
30607
30623
|
acs_credential_on_encoder: {
|
|
30608
30624
|
/** Date and time the credential was created. */
|
|
30609
|
-
created_at: string;
|
|
30625
|
+
created_at: string | null;
|
|
30610
30626
|
is_issued: boolean | null;
|
|
30611
30627
|
/** Date and time the credential will become useable. */
|
|
30612
30628
|
starts_at: string | null;
|
|
@@ -31475,7 +31491,7 @@ interface Routes {
|
|
|
31475
31491
|
/** Snapshot of the card data read from the physical encoder. */
|
|
31476
31492
|
acs_credential_on_encoder: {
|
|
31477
31493
|
/** Date and time the credential was created. */
|
|
31478
|
-
created_at: string;
|
|
31494
|
+
created_at: string | null;
|
|
31479
31495
|
is_issued: boolean | null;
|
|
31480
31496
|
/** Date and time the credential will become useable. */
|
|
31481
31497
|
starts_at: string | null;
|
|
@@ -32174,7 +32190,7 @@ interface Routes {
|
|
|
32174
32190
|
/** Snapshot of the card data read from the physical encoder. */
|
|
32175
32191
|
acs_credential_on_encoder: {
|
|
32176
32192
|
/** Date and time the credential was created. */
|
|
32177
|
-
created_at: string;
|
|
32193
|
+
created_at: string | null;
|
|
32178
32194
|
is_issued: boolean | null;
|
|
32179
32195
|
/** Date and time the credential will become useable. */
|
|
32180
32196
|
starts_at: string | null;
|
|
@@ -33617,7 +33633,7 @@ interface Routes {
|
|
|
33617
33633
|
/** Snapshot of the card data read from the physical encoder. */
|
|
33618
33634
|
acs_credential_on_encoder: {
|
|
33619
33635
|
/** Date and time the credential was created. */
|
|
33620
|
-
created_at: string;
|
|
33636
|
+
created_at: string | null;
|
|
33621
33637
|
is_issued: boolean | null;
|
|
33622
33638
|
/** Date and time the credential will become useable. */
|
|
33623
33639
|
starts_at: string | null;
|
|
@@ -34417,6 +34433,7 @@ interface Routes {
|
|
|
34417
34433
|
akiles_metadata?: {
|
|
34418
34434
|
gadget_name: string;
|
|
34419
34435
|
gadget_id: string;
|
|
34436
|
+
_member_group_id?: string | undefined;
|
|
34420
34437
|
} | undefined;
|
|
34421
34438
|
}) & ({
|
|
34422
34439
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -34641,7 +34658,7 @@ interface Routes {
|
|
|
34641
34658
|
/** Snapshot of the card data read from the physical encoder. */
|
|
34642
34659
|
acs_credential_on_encoder: {
|
|
34643
34660
|
/** Date and time the credential was created. */
|
|
34644
|
-
created_at: string;
|
|
34661
|
+
created_at: string | null;
|
|
34645
34662
|
is_issued: boolean | null;
|
|
34646
34663
|
/** Date and time the credential will become useable. */
|
|
34647
34664
|
starts_at: string | null;
|
|
@@ -36360,7 +36377,7 @@ interface Routes {
|
|
|
36360
36377
|
/** Snapshot of the card data read from the physical encoder. */
|
|
36361
36378
|
acs_credential_on_encoder: {
|
|
36362
36379
|
/** Date and time the credential was created. */
|
|
36363
|
-
created_at: string;
|
|
36380
|
+
created_at: string | null;
|
|
36364
36381
|
is_issued: boolean | null;
|
|
36365
36382
|
/** Date and time the credential will become useable. */
|
|
36366
36383
|
starts_at: string | null;
|
|
@@ -36921,7 +36938,7 @@ interface Routes {
|
|
|
36921
36938
|
/** Snapshot of the card data read from the physical encoder. */
|
|
36922
36939
|
acs_credential_on_encoder: {
|
|
36923
36940
|
/** Date and time the credential was created. */
|
|
36924
|
-
created_at: string;
|
|
36941
|
+
created_at: string | null;
|
|
36925
36942
|
is_issued: boolean | null;
|
|
36926
36943
|
/** Date and time the credential will become useable. */
|
|
36927
36944
|
starts_at: string | null;
|
|
@@ -38139,6 +38156,7 @@ interface Routes {
|
|
|
38139
38156
|
akiles_metadata?: {
|
|
38140
38157
|
gadget_name: string;
|
|
38141
38158
|
gadget_id: string;
|
|
38159
|
+
_member_group_id?: string | undefined;
|
|
38142
38160
|
} | undefined;
|
|
38143
38161
|
}) & ({
|
|
38144
38162
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -38603,6 +38621,7 @@ interface Routes {
|
|
|
38603
38621
|
akiles_metadata?: {
|
|
38604
38622
|
gadget_name: string;
|
|
38605
38623
|
gadget_id: string;
|
|
38624
|
+
_member_group_id?: string | undefined;
|
|
38606
38625
|
} | undefined;
|
|
38607
38626
|
}) & ({
|
|
38608
38627
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -39465,6 +39484,7 @@ interface Routes {
|
|
|
39465
39484
|
akiles_metadata?: {
|
|
39466
39485
|
gadget_name: string;
|
|
39467
39486
|
gadget_id: string;
|
|
39487
|
+
_member_group_id?: string | undefined;
|
|
39468
39488
|
} | undefined;
|
|
39469
39489
|
}) & ({
|
|
39470
39490
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -39904,6 +39924,7 @@ interface Routes {
|
|
|
39904
39924
|
akiles_metadata?: {
|
|
39905
39925
|
gadget_name: string;
|
|
39906
39926
|
gadget_id: string;
|
|
39927
|
+
_member_group_id?: string | undefined;
|
|
39907
39928
|
} | undefined;
|
|
39908
39929
|
}) & ({
|
|
39909
39930
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -40368,6 +40389,7 @@ interface Routes {
|
|
|
40368
40389
|
akiles_metadata?: {
|
|
40369
40390
|
gadget_name: string;
|
|
40370
40391
|
gadget_id: string;
|
|
40392
|
+
_member_group_id?: string | undefined;
|
|
40371
40393
|
} | undefined;
|
|
40372
40394
|
}) & ({
|
|
40373
40395
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -40807,6 +40829,7 @@ interface Routes {
|
|
|
40807
40829
|
akiles_metadata?: {
|
|
40808
40830
|
gadget_name: string;
|
|
40809
40831
|
gadget_id: string;
|
|
40832
|
+
_member_group_id?: string | undefined;
|
|
40810
40833
|
} | undefined;
|
|
40811
40834
|
}) & ({
|
|
40812
40835
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -41028,7 +41051,7 @@ interface Routes {
|
|
|
41028
41051
|
/** Snapshot of the card data read from the physical encoder. */
|
|
41029
41052
|
acs_credential_on_encoder: {
|
|
41030
41053
|
/** Date and time the credential was created. */
|
|
41031
|
-
created_at: string;
|
|
41054
|
+
created_at: string | null;
|
|
41032
41055
|
is_issued: boolean | null;
|
|
41033
41056
|
/** Date and time the credential will become useable. */
|
|
41034
41057
|
starts_at: string | null;
|
|
@@ -41590,7 +41613,7 @@ interface Routes {
|
|
|
41590
41613
|
/** Snapshot of the card data read from the physical encoder. */
|
|
41591
41614
|
acs_credential_on_encoder: {
|
|
41592
41615
|
/** Date and time the credential was created. */
|
|
41593
|
-
created_at: string;
|
|
41616
|
+
created_at: string | null;
|
|
41594
41617
|
is_issued: boolean | null;
|
|
41595
41618
|
/** Date and time the credential will become useable. */
|
|
41596
41619
|
starts_at: string | null;
|
|
@@ -42429,6 +42452,7 @@ interface Routes {
|
|
|
42429
42452
|
akiles_metadata?: {
|
|
42430
42453
|
gadget_name: string;
|
|
42431
42454
|
gadget_id: string;
|
|
42455
|
+
_member_group_id?: string | undefined;
|
|
42432
42456
|
} | undefined;
|
|
42433
42457
|
}) & ({
|
|
42434
42458
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -42868,6 +42892,7 @@ interface Routes {
|
|
|
42868
42892
|
akiles_metadata?: {
|
|
42869
42893
|
gadget_name: string;
|
|
42870
42894
|
gadget_id: string;
|
|
42895
|
+
_member_group_id?: string | undefined;
|
|
42871
42896
|
} | undefined;
|
|
42872
42897
|
}) & ({
|
|
42873
42898
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -43094,7 +43119,7 @@ interface Routes {
|
|
|
43094
43119
|
/** Snapshot of the card data read from the physical encoder. */
|
|
43095
43120
|
acs_credential_on_encoder: {
|
|
43096
43121
|
/** Date and time the credential was created. */
|
|
43097
|
-
created_at: string;
|
|
43122
|
+
created_at: string | null;
|
|
43098
43123
|
is_issued: boolean | null;
|
|
43099
43124
|
/** Date and time the credential will become useable. */
|
|
43100
43125
|
starts_at: string | null;
|
|
@@ -43666,7 +43691,7 @@ interface Routes {
|
|
|
43666
43691
|
/** Snapshot of the card data read from the physical encoder. */
|
|
43667
43692
|
acs_credential_on_encoder: {
|
|
43668
43693
|
/** Date and time the credential was created. */
|
|
43669
|
-
created_at: string;
|
|
43694
|
+
created_at: string | null;
|
|
43670
43695
|
is_issued: boolean | null;
|
|
43671
43696
|
/** Date and time the credential will become useable. */
|
|
43672
43697
|
starts_at: string | null;
|
|
@@ -44277,7 +44302,7 @@ interface Routes {
|
|
|
44277
44302
|
/** Snapshot of the card data read from the physical encoder. */
|
|
44278
44303
|
acs_credential_on_encoder: {
|
|
44279
44304
|
/** Date and time the credential was created. */
|
|
44280
|
-
created_at: string;
|
|
44305
|
+
created_at: string | null;
|
|
44281
44306
|
is_issued: boolean | null;
|
|
44282
44307
|
/** Date and time the credential will become useable. */
|
|
44283
44308
|
starts_at: string | null;
|
|
@@ -45021,7 +45046,7 @@ interface Routes {
|
|
|
45021
45046
|
/** Snapshot of the card data read from the physical encoder. */
|
|
45022
45047
|
acs_credential_on_encoder: {
|
|
45023
45048
|
/** Date and time the credential was created. */
|
|
45024
|
-
created_at: string;
|
|
45049
|
+
created_at: string | null;
|
|
45025
45050
|
is_issued: boolean | null;
|
|
45026
45051
|
/** Date and time the credential will become useable. */
|
|
45027
45052
|
starts_at: string | null;
|
|
@@ -45585,7 +45610,7 @@ interface Routes {
|
|
|
45585
45610
|
/** Snapshot of the card data read from the physical encoder. */
|
|
45586
45611
|
acs_credential_on_encoder: {
|
|
45587
45612
|
/** Date and time the credential was created. */
|
|
45588
|
-
created_at: string;
|
|
45613
|
+
created_at: string | null;
|
|
45589
45614
|
is_issued: boolean | null;
|
|
45590
45615
|
/** Date and time the credential will become useable. */
|
|
45591
45616
|
starts_at: string | null;
|
|
@@ -46410,6 +46435,7 @@ interface Routes {
|
|
|
46410
46435
|
akiles_metadata?: {
|
|
46411
46436
|
gadget_name: string;
|
|
46412
46437
|
gadget_id: string;
|
|
46438
|
+
_member_group_id?: string | undefined;
|
|
46413
46439
|
} | undefined;
|
|
46414
46440
|
}) & ({
|
|
46415
46441
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -46633,7 +46659,7 @@ interface Routes {
|
|
|
46633
46659
|
/** Snapshot of the card data read from the physical encoder. */
|
|
46634
46660
|
acs_credential_on_encoder: {
|
|
46635
46661
|
/** Date and time the credential was created. */
|
|
46636
|
-
created_at: string;
|
|
46662
|
+
created_at: string | null;
|
|
46637
46663
|
is_issued: boolean | null;
|
|
46638
46664
|
/** Date and time the credential will become useable. */
|
|
46639
46665
|
starts_at: string | null;
|
|
@@ -47199,7 +47225,7 @@ interface Routes {
|
|
|
47199
47225
|
/** Snapshot of the card data read from the physical encoder. */
|
|
47200
47226
|
acs_credential_on_encoder: {
|
|
47201
47227
|
/** Date and time the credential was created. */
|
|
47202
|
-
created_at: string;
|
|
47228
|
+
created_at: string | null;
|
|
47203
47229
|
is_issued: boolean | null;
|
|
47204
47230
|
/** Date and time the credential will become useable. */
|
|
47205
47231
|
starts_at: string | null;
|
|
@@ -48004,6 +48030,7 @@ interface Routes {
|
|
|
48004
48030
|
akiles_metadata?: {
|
|
48005
48031
|
gadget_name: string;
|
|
48006
48032
|
gadget_id: string;
|
|
48033
|
+
_member_group_id?: string | undefined;
|
|
48007
48034
|
} | undefined;
|
|
48008
48035
|
}) & ({
|
|
48009
48036
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -48664,7 +48691,7 @@ interface Routes {
|
|
|
48664
48691
|
/** Snapshot of the card data read from the physical encoder. */
|
|
48665
48692
|
acs_credential_on_encoder: {
|
|
48666
48693
|
/** Date and time the credential was created. */
|
|
48667
|
-
created_at: string;
|
|
48694
|
+
created_at: string | null;
|
|
48668
48695
|
is_issued: boolean | null;
|
|
48669
48696
|
/** Date and time the credential will become useable. */
|
|
48670
48697
|
starts_at: string | null;
|
|
@@ -49347,7 +49374,7 @@ interface Routes {
|
|
|
49347
49374
|
/** Snapshot of the card data read from the physical encoder. */
|
|
49348
49375
|
acs_credential_on_encoder: {
|
|
49349
49376
|
/** Date and time the credential was created. */
|
|
49350
|
-
created_at: string;
|
|
49377
|
+
created_at: string | null;
|
|
49351
49378
|
is_issued: boolean | null;
|
|
49352
49379
|
/** Date and time the credential will become useable. */
|
|
49353
49380
|
starts_at: string | null;
|
|
@@ -50338,6 +50365,7 @@ interface Routes {
|
|
|
50338
50365
|
akiles_metadata?: {
|
|
50339
50366
|
gadget_name: string;
|
|
50340
50367
|
gadget_id: string;
|
|
50368
|
+
_member_group_id?: string | undefined;
|
|
50341
50369
|
} | undefined;
|
|
50342
50370
|
}) & ({
|
|
50343
50371
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -50779,6 +50807,7 @@ interface Routes {
|
|
|
50779
50807
|
akiles_metadata?: {
|
|
50780
50808
|
gadget_name: string;
|
|
50781
50809
|
gadget_id: string;
|
|
50810
|
+
_member_group_id?: string | undefined;
|
|
50782
50811
|
} | undefined;
|
|
50783
50812
|
}) & ({
|
|
50784
50813
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -51378,7 +51407,7 @@ interface Routes {
|
|
|
51378
51407
|
/** Snapshot of the card data read from the physical encoder. */
|
|
51379
51408
|
acs_credential_on_encoder: {
|
|
51380
51409
|
/** Date and time the credential was created. */
|
|
51381
|
-
created_at: string;
|
|
51410
|
+
created_at: string | null;
|
|
51382
51411
|
is_issued: boolean | null;
|
|
51383
51412
|
/** Date and time the credential will become useable. */
|
|
51384
51413
|
starts_at: string | null;
|
|
@@ -307,7 +307,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
307
307
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
308
308
|
}>;
|
|
309
309
|
export declare const acs_credential_on_encoder: z.ZodObject<{
|
|
310
|
-
created_at: z.ZodString
|
|
310
|
+
created_at: z.ZodNullable<z.ZodString>;
|
|
311
311
|
is_issued: z.ZodNullable<z.ZodBoolean>;
|
|
312
312
|
starts_at: z.ZodNullable<z.ZodString>;
|
|
313
313
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
@@ -350,7 +350,7 @@ export declare const acs_credential_on_encoder: z.ZodObject<{
|
|
|
350
350
|
card_holder?: string | undefined;
|
|
351
351
|
}>>;
|
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
|
353
|
-
created_at: string;
|
|
353
|
+
created_at: string | null;
|
|
354
354
|
starts_at: string | null;
|
|
355
355
|
ends_at: string | null;
|
|
356
356
|
card_number: string | null;
|
|
@@ -369,7 +369,7 @@ export declare const acs_credential_on_encoder: z.ZodObject<{
|
|
|
369
369
|
card_holder?: string | undefined;
|
|
370
370
|
} | undefined;
|
|
371
371
|
}, {
|
|
372
|
-
created_at: string;
|
|
372
|
+
created_at: string | null;
|
|
373
373
|
starts_at: string | null;
|
|
374
374
|
ends_at: string | null;
|
|
375
375
|
card_number: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
@@ -186,7 +186,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
186
186
|
action_type: z.ZodLiteral<"SCAN_CARD">;
|
|
187
187
|
result: z.ZodObject<{
|
|
188
188
|
acs_credential_on_encoder: z.ZodObject<{
|
|
189
|
-
created_at: z.ZodString
|
|
189
|
+
created_at: z.ZodNullable<z.ZodString>;
|
|
190
190
|
is_issued: z.ZodNullable<z.ZodBoolean>;
|
|
191
191
|
starts_at: z.ZodNullable<z.ZodString>;
|
|
192
192
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
@@ -229,7 +229,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
229
229
|
card_holder?: string | undefined;
|
|
230
230
|
}>>;
|
|
231
231
|
}, "strip", z.ZodTypeAny, {
|
|
232
|
-
created_at: string;
|
|
232
|
+
created_at: string | null;
|
|
233
233
|
starts_at: string | null;
|
|
234
234
|
ends_at: string | null;
|
|
235
235
|
card_number: string | null;
|
|
@@ -248,7 +248,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
248
248
|
card_holder?: string | undefined;
|
|
249
249
|
} | undefined;
|
|
250
250
|
}, {
|
|
251
|
-
created_at: string;
|
|
251
|
+
created_at: string | null;
|
|
252
252
|
starts_at: string | null;
|
|
253
253
|
ends_at: string | null;
|
|
254
254
|
card_number: string | null;
|
|
@@ -572,7 +572,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
572
572
|
}>]>>;
|
|
573
573
|
}, "strip", z.ZodTypeAny, {
|
|
574
574
|
acs_credential_on_encoder: {
|
|
575
|
-
created_at: string;
|
|
575
|
+
created_at: string | null;
|
|
576
576
|
starts_at: string | null;
|
|
577
577
|
ends_at: string | null;
|
|
578
578
|
card_number: string | null;
|
|
@@ -674,7 +674,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
674
674
|
} | null;
|
|
675
675
|
}, {
|
|
676
676
|
acs_credential_on_encoder: {
|
|
677
|
-
created_at: string;
|
|
677
|
+
created_at: string | null;
|
|
678
678
|
starts_at: string | null;
|
|
679
679
|
ends_at: string | null;
|
|
680
680
|
card_number: string | null;
|
|
@@ -781,7 +781,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
781
781
|
action_attempt_id: string;
|
|
782
782
|
result: {
|
|
783
783
|
acs_credential_on_encoder: {
|
|
784
|
-
created_at: string;
|
|
784
|
+
created_at: string | null;
|
|
785
785
|
starts_at: string | null;
|
|
786
786
|
ends_at: string | null;
|
|
787
787
|
card_number: string | null;
|
|
@@ -889,7 +889,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
889
889
|
action_attempt_id: string;
|
|
890
890
|
result: {
|
|
891
891
|
acs_credential_on_encoder: {
|
|
892
|
-
created_at: string;
|
|
892
|
+
created_at: string | null;
|
|
893
893
|
starts_at: string | null;
|
|
894
894
|
ends_at: string | null;
|
|
895
895
|
card_number: string | null;
|
|
@@ -30,7 +30,7 @@ export declare const scan_card_action_attempt: z.ZodDiscriminatedUnion<"status",
|
|
|
30
30
|
action_type: z.ZodLiteral<"SCAN_CARD">;
|
|
31
31
|
result: z.ZodObject<{
|
|
32
32
|
acs_credential_on_encoder: z.ZodObject<{
|
|
33
|
-
created_at: z.ZodString
|
|
33
|
+
created_at: z.ZodNullable<z.ZodString>;
|
|
34
34
|
is_issued: z.ZodNullable<z.ZodBoolean>;
|
|
35
35
|
starts_at: z.ZodNullable<z.ZodString>;
|
|
36
36
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
@@ -73,7 +73,7 @@ export declare const scan_card_action_attempt: z.ZodDiscriminatedUnion<"status",
|
|
|
73
73
|
card_holder?: string | undefined;
|
|
74
74
|
}>>;
|
|
75
75
|
}, "strip", z.ZodTypeAny, {
|
|
76
|
-
created_at: string;
|
|
76
|
+
created_at: string | null;
|
|
77
77
|
starts_at: string | null;
|
|
78
78
|
ends_at: string | null;
|
|
79
79
|
card_number: string | null;
|
|
@@ -92,7 +92,7 @@ export declare const scan_card_action_attempt: z.ZodDiscriminatedUnion<"status",
|
|
|
92
92
|
card_holder?: string | undefined;
|
|
93
93
|
} | undefined;
|
|
94
94
|
}, {
|
|
95
|
-
created_at: string;
|
|
95
|
+
created_at: string | null;
|
|
96
96
|
starts_at: string | null;
|
|
97
97
|
ends_at: string | null;
|
|
98
98
|
card_number: string | null;
|
|
@@ -416,7 +416,7 @@ export declare const scan_card_action_attempt: z.ZodDiscriminatedUnion<"status",
|
|
|
416
416
|
}>]>>;
|
|
417
417
|
}, "strip", z.ZodTypeAny, {
|
|
418
418
|
acs_credential_on_encoder: {
|
|
419
|
-
created_at: string;
|
|
419
|
+
created_at: string | null;
|
|
420
420
|
starts_at: string | null;
|
|
421
421
|
ends_at: string | null;
|
|
422
422
|
card_number: string | null;
|
|
@@ -518,7 +518,7 @@ export declare const scan_card_action_attempt: z.ZodDiscriminatedUnion<"status",
|
|
|
518
518
|
} | null;
|
|
519
519
|
}, {
|
|
520
520
|
acs_credential_on_encoder: {
|
|
521
|
-
created_at: string;
|
|
521
|
+
created_at: string | null;
|
|
522
522
|
starts_at: string | null;
|
|
523
523
|
ends_at: string | null;
|
|
524
524
|
card_number: string | null;
|
|
@@ -625,7 +625,7 @@ export declare const scan_card_action_attempt: z.ZodDiscriminatedUnion<"status",
|
|
|
625
625
|
action_attempt_id: string;
|
|
626
626
|
result: {
|
|
627
627
|
acs_credential_on_encoder: {
|
|
628
|
-
created_at: string;
|
|
628
|
+
created_at: string | null;
|
|
629
629
|
starts_at: string | null;
|
|
630
630
|
ends_at: string | null;
|
|
631
631
|
card_number: string | null;
|
|
@@ -733,7 +733,7 @@ export declare const scan_card_action_attempt: z.ZodDiscriminatedUnion<"status",
|
|
|
733
733
|
action_attempt_id: string;
|
|
734
734
|
result: {
|
|
735
735
|
acs_credential_on_encoder: {
|
|
736
|
-
created_at: string;
|
|
736
|
+
created_at: string | null;
|
|
737
737
|
starts_at: string | null;
|
|
738
738
|
ends_at: string | null;
|
|
739
739
|
card_number: string | null;
|
|
@@ -707,12 +707,18 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
707
707
|
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
708
708
|
gadget_name: z.ZodString;
|
|
709
709
|
gadget_id: z.ZodString;
|
|
710
|
+
/**
|
|
711
|
+
* Group ID to add users to for this device
|
|
712
|
+
*/
|
|
713
|
+
_member_group_id: z.ZodOptional<z.ZodString>;
|
|
710
714
|
}, "strip", z.ZodTypeAny, {
|
|
711
715
|
gadget_name: string;
|
|
712
716
|
gadget_id: string;
|
|
717
|
+
_member_group_id?: string | undefined;
|
|
713
718
|
}, {
|
|
714
719
|
gadget_name: string;
|
|
715
720
|
gadget_id: string;
|
|
721
|
+
_member_group_id?: string | undefined;
|
|
716
722
|
}>>;
|
|
717
723
|
}, "strip", z.ZodTypeAny, {
|
|
718
724
|
august_metadata?: {
|
|
@@ -922,6 +928,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
922
928
|
akiles_metadata?: {
|
|
923
929
|
gadget_name: string;
|
|
924
930
|
gadget_id: string;
|
|
931
|
+
_member_group_id?: string | undefined;
|
|
925
932
|
} | undefined;
|
|
926
933
|
}, {
|
|
927
934
|
august_metadata?: {
|
|
@@ -1131,6 +1138,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1131
1138
|
akiles_metadata?: {
|
|
1132
1139
|
gadget_name: string;
|
|
1133
1140
|
gadget_id: string;
|
|
1141
|
+
_member_group_id?: string | undefined;
|
|
1134
1142
|
} | undefined;
|
|
1135
1143
|
}>;
|
|
1136
1144
|
export type DeviceMetadata = z.infer<typeof device_metadata>;
|
|
@@ -213,6 +213,10 @@ export const device_metadata = z
|
|
|
213
213
|
akiles_metadata: z.object({
|
|
214
214
|
gadget_name: z.string(),
|
|
215
215
|
gadget_id: z.string(),
|
|
216
|
+
/**
|
|
217
|
+
* Group ID to add users to for this device
|
|
218
|
+
*/
|
|
219
|
+
_member_group_id: z.string().optional(),
|
|
216
220
|
}),
|
|
217
221
|
})
|
|
218
222
|
.partial();
|