@seamapi/types 1.34.0 → 1.35.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 +7 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +25 -0
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +5 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +15 -0
- package/lib/seam/connect/unstable/models/managed-device.d.ts +10 -0
- package/lib/seam/connect/unstable/models/managed-device.js +1 -0
- package/lib/seam/connect/unstable/models/managed-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -0
- package/src/lib/seam/connect/route-types.ts +15 -0
- package/src/lib/seam/connect/unstable/models/managed-device.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -94,6 +94,12 @@ declare const _default: {
|
|
|
94
94
|
enum: boolean[];
|
|
95
95
|
type: string;
|
|
96
96
|
};
|
|
97
|
+
is_offline_access_code: {
|
|
98
|
+
type: string;
|
|
99
|
+
};
|
|
100
|
+
is_one_time_use: {
|
|
101
|
+
type: string;
|
|
102
|
+
};
|
|
97
103
|
is_scheduled_on_device: {
|
|
98
104
|
type: string;
|
|
99
105
|
};
|
|
@@ -683,6 +689,9 @@ declare const _default: {
|
|
|
683
689
|
supports_accessory_keypad: {
|
|
684
690
|
type: string;
|
|
685
691
|
};
|
|
692
|
+
supports_offline_access_codes: {
|
|
693
|
+
type: string;
|
|
694
|
+
};
|
|
686
695
|
august_metadata?: never;
|
|
687
696
|
avigilon_alta_metadata?: never;
|
|
688
697
|
brivo_metadata?: never;
|
|
@@ -1191,6 +1200,7 @@ declare const _default: {
|
|
|
1191
1200
|
online?: never;
|
|
1192
1201
|
serial_number?: never;
|
|
1193
1202
|
supports_accessory_keypad?: never;
|
|
1203
|
+
supports_offline_access_codes?: never;
|
|
1194
1204
|
};
|
|
1195
1205
|
type: string;
|
|
1196
1206
|
required?: never;
|
|
@@ -12354,6 +12364,8 @@ interface Routes {
|
|
|
12354
12364
|
is_backup?: boolean | undefined;
|
|
12355
12365
|
pulled_backup_access_code_id?: (string | null) | undefined;
|
|
12356
12366
|
is_external_modification_allowed: boolean;
|
|
12367
|
+
is_one_time_use: boolean;
|
|
12368
|
+
is_offline_access_code: boolean;
|
|
12357
12369
|
};
|
|
12358
12370
|
};
|
|
12359
12371
|
};
|
|
@@ -12397,6 +12409,8 @@ interface Routes {
|
|
|
12397
12409
|
is_backup?: boolean | undefined;
|
|
12398
12410
|
pulled_backup_access_code_id?: (string | null) | undefined;
|
|
12399
12411
|
is_external_modification_allowed: boolean;
|
|
12412
|
+
is_one_time_use: boolean;
|
|
12413
|
+
is_offline_access_code: boolean;
|
|
12400
12414
|
}>;
|
|
12401
12415
|
};
|
|
12402
12416
|
};
|
|
@@ -12484,6 +12498,8 @@ interface Routes {
|
|
|
12484
12498
|
is_backup?: boolean | undefined;
|
|
12485
12499
|
pulled_backup_access_code_id?: (string | null) | undefined;
|
|
12486
12500
|
is_external_modification_allowed: boolean;
|
|
12501
|
+
is_one_time_use: boolean;
|
|
12502
|
+
is_offline_access_code: boolean;
|
|
12487
12503
|
};
|
|
12488
12504
|
};
|
|
12489
12505
|
};
|
|
@@ -12519,6 +12535,8 @@ interface Routes {
|
|
|
12519
12535
|
is_backup?: boolean | undefined;
|
|
12520
12536
|
pulled_backup_access_code_id?: (string | null) | undefined;
|
|
12521
12537
|
is_external_modification_allowed: boolean;
|
|
12538
|
+
is_one_time_use: boolean;
|
|
12539
|
+
is_offline_access_code: boolean;
|
|
12522
12540
|
}>;
|
|
12523
12541
|
};
|
|
12524
12542
|
};
|
|
@@ -12552,6 +12570,8 @@ interface Routes {
|
|
|
12552
12570
|
is_backup?: boolean | undefined;
|
|
12553
12571
|
pulled_backup_access_code_id?: (string | null) | undefined;
|
|
12554
12572
|
is_external_modification_allowed: boolean;
|
|
12573
|
+
is_one_time_use: boolean;
|
|
12574
|
+
is_offline_access_code: boolean;
|
|
12555
12575
|
};
|
|
12556
12576
|
};
|
|
12557
12577
|
};
|
|
@@ -13593,6 +13613,7 @@ interface Routes {
|
|
|
13593
13613
|
image_alt_text?: string | undefined;
|
|
13594
13614
|
serial_number?: string | undefined;
|
|
13595
13615
|
supports_accessory_keypad?: boolean | undefined;
|
|
13616
|
+
supports_offline_access_codes?: boolean | undefined;
|
|
13596
13617
|
} & {
|
|
13597
13618
|
august_metadata?: {
|
|
13598
13619
|
lock_id: string;
|
|
@@ -14002,6 +14023,7 @@ interface Routes {
|
|
|
14002
14023
|
image_alt_text?: string | undefined;
|
|
14003
14024
|
serial_number?: string | undefined;
|
|
14004
14025
|
supports_accessory_keypad?: boolean | undefined;
|
|
14026
|
+
supports_offline_access_codes?: boolean | undefined;
|
|
14005
14027
|
} & {
|
|
14006
14028
|
august_metadata?: {
|
|
14007
14029
|
lock_id: string;
|
|
@@ -15112,6 +15134,7 @@ interface Routes {
|
|
|
15112
15134
|
image_alt_text?: string | undefined;
|
|
15113
15135
|
serial_number?: string | undefined;
|
|
15114
15136
|
supports_accessory_keypad?: boolean | undefined;
|
|
15137
|
+
supports_offline_access_codes?: boolean | undefined;
|
|
15115
15138
|
} & {
|
|
15116
15139
|
august_metadata?: {
|
|
15117
15140
|
lock_id: string;
|
|
@@ -15551,6 +15574,7 @@ interface Routes {
|
|
|
15551
15574
|
image_alt_text?: string | undefined;
|
|
15552
15575
|
serial_number?: string | undefined;
|
|
15553
15576
|
supports_accessory_keypad?: boolean | undefined;
|
|
15577
|
+
supports_offline_access_codes?: boolean | undefined;
|
|
15554
15578
|
} & {
|
|
15555
15579
|
august_metadata?: {
|
|
15556
15580
|
lock_id: string;
|
|
@@ -16062,6 +16086,7 @@ interface Routes {
|
|
|
16062
16086
|
image_alt_text?: string | undefined;
|
|
16063
16087
|
serial_number?: string | undefined;
|
|
16064
16088
|
supports_accessory_keypad?: boolean | undefined;
|
|
16089
|
+
supports_offline_access_codes?: boolean | undefined;
|
|
16065
16090
|
} & {
|
|
16066
16091
|
august_metadata?: {
|
|
16067
16092
|
lock_id: string;
|
|
@@ -43,6 +43,12 @@ declare const _default: {
|
|
|
43
43
|
enum: boolean[];
|
|
44
44
|
type: string;
|
|
45
45
|
};
|
|
46
|
+
is_offline_access_code: {
|
|
47
|
+
type: string;
|
|
48
|
+
};
|
|
49
|
+
is_one_time_use: {
|
|
50
|
+
type: string;
|
|
51
|
+
};
|
|
46
52
|
is_scheduled_on_device: {
|
|
47
53
|
type: string;
|
|
48
54
|
};
|
|
@@ -632,6 +638,9 @@ declare const _default: {
|
|
|
632
638
|
supports_accessory_keypad: {
|
|
633
639
|
type: string;
|
|
634
640
|
};
|
|
641
|
+
supports_offline_access_codes: {
|
|
642
|
+
type: string;
|
|
643
|
+
};
|
|
635
644
|
august_metadata?: never;
|
|
636
645
|
avigilon_alta_metadata?: never;
|
|
637
646
|
brivo_metadata?: never;
|
|
@@ -1140,6 +1149,7 @@ declare const _default: {
|
|
|
1140
1149
|
online?: never;
|
|
1141
1150
|
serial_number?: never;
|
|
1142
1151
|
supports_accessory_keypad?: never;
|
|
1152
|
+
supports_offline_access_codes?: never;
|
|
1143
1153
|
};
|
|
1144
1154
|
type: string;
|
|
1145
1155
|
required?: never;
|
|
@@ -14,6 +14,8 @@ export default {
|
|
|
14
14
|
is_backup_access_code_available: { type: 'boolean' },
|
|
15
15
|
is_external_modification_allowed: { type: 'boolean' },
|
|
16
16
|
is_managed: { enum: [true], type: 'boolean' },
|
|
17
|
+
is_offline_access_code: { type: 'boolean' },
|
|
18
|
+
is_one_time_use: { type: 'boolean' },
|
|
17
19
|
is_scheduled_on_device: { type: 'boolean' },
|
|
18
20
|
is_waiting_for_code_assignment: { type: 'boolean' },
|
|
19
21
|
name: { nullable: true, type: 'string' },
|
|
@@ -42,6 +44,8 @@ export default {
|
|
|
42
44
|
'status',
|
|
43
45
|
'is_backup_access_code_available',
|
|
44
46
|
'is_external_modification_allowed',
|
|
47
|
+
'is_one_time_use',
|
|
48
|
+
'is_offline_access_code',
|
|
45
49
|
],
|
|
46
50
|
type: 'object',
|
|
47
51
|
},
|
|
@@ -444,6 +448,7 @@ export default {
|
|
|
444
448
|
online: { type: 'boolean' },
|
|
445
449
|
serial_number: { type: 'string' },
|
|
446
450
|
supports_accessory_keypad: { type: 'boolean' },
|
|
451
|
+
supports_offline_access_codes: { type: 'boolean' },
|
|
447
452
|
},
|
|
448
453
|
required: ['online', 'name', 'model'],
|
|
449
454
|
type: 'object',
|