@seamapi/types 1.769.0 → 1.771.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 +777 -35
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1530 -269
- package/dist/index.cjs +777 -35
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +10 -10
- package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -6
- package/lib/seam/connect/models/access-grants/access-method.js +2 -2
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
- package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
- package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +6 -6
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -4
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js +11 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +38 -17
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -16
- package/lib/seam/connect/openapi.d.ts +952 -0
- package/lib/seam/connect/openapi.js +758 -27
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +336 -63
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +2 -2
- package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +4 -4
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +18 -0
- package/src/lib/seam/connect/openapi.ts +825 -27
- package/src/lib/seam/connect/route-types.ts +407 -63
|
@@ -357,8 +357,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
357
357
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
358
358
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
359
359
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
360
|
-
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
361
360
|
can_unlock_with_cloud_key: z.ZodOptional<z.ZodBoolean>;
|
|
361
|
+
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
362
362
|
}, "strip", z.ZodTypeAny, {
|
|
363
363
|
display_name: string;
|
|
364
364
|
created_at: string;
|
|
@@ -403,8 +403,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
403
403
|
can_unlock_with_code?: boolean | undefined;
|
|
404
404
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
405
405
|
can_unlock_with_card?: boolean | undefined;
|
|
406
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
407
406
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
407
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
408
408
|
latch_metadata?: {
|
|
409
409
|
door_name: string;
|
|
410
410
|
is_connected: boolean;
|
|
@@ -474,8 +474,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
474
474
|
can_unlock_with_code?: boolean | undefined;
|
|
475
475
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
476
476
|
can_unlock_with_card?: boolean | undefined;
|
|
477
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
478
477
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
478
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
479
479
|
latch_metadata?: {
|
|
480
480
|
door_name: string;
|
|
481
481
|
is_connected: boolean;
|
|
@@ -584,8 +584,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
584
584
|
can_unlock_with_code?: boolean | undefined;
|
|
585
585
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
586
586
|
can_unlock_with_card?: boolean | undefined;
|
|
587
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
588
587
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
588
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
589
589
|
latch_metadata?: {
|
|
590
590
|
door_name: string;
|
|
591
591
|
is_connected: boolean;
|
|
@@ -728,8 +728,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
728
728
|
can_unlock_with_code?: boolean | undefined;
|
|
729
729
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
730
730
|
can_unlock_with_card?: boolean | undefined;
|
|
731
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
732
731
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
732
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
733
733
|
latch_metadata?: {
|
|
734
734
|
door_name: string;
|
|
735
735
|
is_connected: boolean;
|
|
@@ -874,8 +874,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
874
874
|
can_unlock_with_code?: boolean | undefined;
|
|
875
875
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
876
876
|
can_unlock_with_card?: boolean | undefined;
|
|
877
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
878
877
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
878
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
879
879
|
latch_metadata?: {
|
|
880
880
|
door_name: string;
|
|
881
881
|
is_connected: boolean;
|
|
@@ -1026,8 +1026,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1026
1026
|
can_unlock_with_code?: boolean | undefined;
|
|
1027
1027
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1028
1028
|
can_unlock_with_card?: boolean | undefined;
|
|
1029
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1030
1029
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1030
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1031
1031
|
latch_metadata?: {
|
|
1032
1032
|
door_name: string;
|
|
1033
1033
|
is_connected: boolean;
|
|
@@ -1455,8 +1455,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1455
1455
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
1456
1456
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
1457
1457
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
1458
|
-
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
1459
1458
|
can_unlock_with_cloud_key: z.ZodOptional<z.ZodBoolean>;
|
|
1459
|
+
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
1460
1460
|
}, "strip", z.ZodTypeAny, {
|
|
1461
1461
|
display_name: string;
|
|
1462
1462
|
created_at: string;
|
|
@@ -1501,8 +1501,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1501
1501
|
can_unlock_with_code?: boolean | undefined;
|
|
1502
1502
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1503
1503
|
can_unlock_with_card?: boolean | undefined;
|
|
1504
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1505
1504
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1505
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1506
1506
|
latch_metadata?: {
|
|
1507
1507
|
door_name: string;
|
|
1508
1508
|
is_connected: boolean;
|
|
@@ -1572,8 +1572,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1572
1572
|
can_unlock_with_code?: boolean | undefined;
|
|
1573
1573
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1574
1574
|
can_unlock_with_card?: boolean | undefined;
|
|
1575
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1576
1575
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1576
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1577
1577
|
latch_metadata?: {
|
|
1578
1578
|
door_name: string;
|
|
1579
1579
|
is_connected: boolean;
|
|
@@ -1682,8 +1682,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1682
1682
|
can_unlock_with_code?: boolean | undefined;
|
|
1683
1683
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1684
1684
|
can_unlock_with_card?: boolean | undefined;
|
|
1685
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1686
1685
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1686
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1687
1687
|
latch_metadata?: {
|
|
1688
1688
|
door_name: string;
|
|
1689
1689
|
is_connected: boolean;
|
|
@@ -1826,8 +1826,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1826
1826
|
can_unlock_with_code?: boolean | undefined;
|
|
1827
1827
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1828
1828
|
can_unlock_with_card?: boolean | undefined;
|
|
1829
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1830
1829
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1830
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1831
1831
|
latch_metadata?: {
|
|
1832
1832
|
door_name: string;
|
|
1833
1833
|
is_connected: boolean;
|
|
@@ -1972,8 +1972,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1972
1972
|
can_unlock_with_code?: boolean | undefined;
|
|
1973
1973
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1974
1974
|
can_unlock_with_card?: boolean | undefined;
|
|
1975
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1976
1975
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1976
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1977
1977
|
latch_metadata?: {
|
|
1978
1978
|
door_name: string;
|
|
1979
1979
|
is_connected: boolean;
|
|
@@ -2124,8 +2124,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2124
2124
|
can_unlock_with_code?: boolean | undefined;
|
|
2125
2125
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
2126
2126
|
can_unlock_with_card?: boolean | undefined;
|
|
2127
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
2128
2127
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
2128
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
2129
2129
|
latch_metadata?: {
|
|
2130
2130
|
door_name: string;
|
|
2131
2131
|
is_connected: boolean;
|
|
@@ -2391,8 +2391,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2391
2391
|
can_unlock_with_code?: boolean | undefined;
|
|
2392
2392
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
2393
2393
|
can_unlock_with_card?: boolean | undefined;
|
|
2394
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
2395
2394
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
2395
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
2396
2396
|
latch_metadata?: {
|
|
2397
2397
|
door_name: string;
|
|
2398
2398
|
is_connected: boolean;
|
|
@@ -2574,8 +2574,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2574
2574
|
can_unlock_with_code?: boolean | undefined;
|
|
2575
2575
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
2576
2576
|
can_unlock_with_card?: boolean | undefined;
|
|
2577
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
2578
2577
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
2578
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
2579
2579
|
latch_metadata?: {
|
|
2580
2580
|
door_name: string;
|
|
2581
2581
|
is_connected: boolean;
|