@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.
@@ -62,6 +62,8 @@ export interface Routes {
62
62
  is_backup?: boolean | undefined;
63
63
  pulled_backup_access_code_id?: (string | null) | undefined;
64
64
  is_external_modification_allowed: boolean;
65
+ is_one_time_use: boolean;
66
+ is_offline_access_code: boolean;
65
67
  };
66
68
  };
67
69
  };
@@ -105,6 +107,8 @@ export interface Routes {
105
107
  is_backup?: boolean | undefined;
106
108
  pulled_backup_access_code_id?: (string | null) | undefined;
107
109
  is_external_modification_allowed: boolean;
110
+ is_one_time_use: boolean;
111
+ is_offline_access_code: boolean;
108
112
  }>;
109
113
  };
110
114
  };
@@ -192,6 +196,8 @@ export interface Routes {
192
196
  is_backup?: boolean | undefined;
193
197
  pulled_backup_access_code_id?: (string | null) | undefined;
194
198
  is_external_modification_allowed: boolean;
199
+ is_one_time_use: boolean;
200
+ is_offline_access_code: boolean;
195
201
  };
196
202
  };
197
203
  };
@@ -227,6 +233,8 @@ export interface Routes {
227
233
  is_backup?: boolean | undefined;
228
234
  pulled_backup_access_code_id?: (string | null) | undefined;
229
235
  is_external_modification_allowed: boolean;
236
+ is_one_time_use: boolean;
237
+ is_offline_access_code: boolean;
230
238
  }>;
231
239
  };
232
240
  };
@@ -260,6 +268,8 @@ export interface Routes {
260
268
  is_backup?: boolean | undefined;
261
269
  pulled_backup_access_code_id?: (string | null) | undefined;
262
270
  is_external_modification_allowed: boolean;
271
+ is_one_time_use: boolean;
272
+ is_offline_access_code: boolean;
263
273
  };
264
274
  };
265
275
  };
@@ -1301,6 +1311,7 @@ export interface Routes {
1301
1311
  image_alt_text?: string | undefined;
1302
1312
  serial_number?: string | undefined;
1303
1313
  supports_accessory_keypad?: boolean | undefined;
1314
+ supports_offline_access_codes?: boolean | undefined;
1304
1315
  } & {
1305
1316
  august_metadata?: {
1306
1317
  lock_id: string;
@@ -1710,6 +1721,7 @@ export interface Routes {
1710
1721
  image_alt_text?: string | undefined;
1711
1722
  serial_number?: string | undefined;
1712
1723
  supports_accessory_keypad?: boolean | undefined;
1724
+ supports_offline_access_codes?: boolean | undefined;
1713
1725
  } & {
1714
1726
  august_metadata?: {
1715
1727
  lock_id: string;
@@ -2820,6 +2832,7 @@ export interface Routes {
2820
2832
  image_alt_text?: string | undefined;
2821
2833
  serial_number?: string | undefined;
2822
2834
  supports_accessory_keypad?: boolean | undefined;
2835
+ supports_offline_access_codes?: boolean | undefined;
2823
2836
  } & {
2824
2837
  august_metadata?: {
2825
2838
  lock_id: string;
@@ -3259,6 +3272,7 @@ export interface Routes {
3259
3272
  image_alt_text?: string | undefined;
3260
3273
  serial_number?: string | undefined;
3261
3274
  supports_accessory_keypad?: boolean | undefined;
3275
+ supports_offline_access_codes?: boolean | undefined;
3262
3276
  } & {
3263
3277
  august_metadata?: {
3264
3278
  lock_id: string;
@@ -3770,6 +3784,7 @@ export interface Routes {
3770
3784
  image_alt_text?: string | undefined;
3771
3785
  serial_number?: string | undefined;
3772
3786
  supports_accessory_keypad?: boolean | undefined;
3787
+ supports_offline_access_codes?: boolean | undefined;
3773
3788
  } & {
3774
3789
  august_metadata?: {
3775
3790
  lock_id: string;
@@ -33,6 +33,7 @@ export declare const common_device_properties: z.ZodObject<{
33
33
  image_alt_text: z.ZodOptional<z.ZodString>;
34
34
  serial_number: z.ZodOptional<z.ZodString>;
35
35
  supports_accessory_keypad: z.ZodOptional<z.ZodBoolean>;
36
+ supports_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
36
37
  }, "strip", z.ZodTypeAny, {
37
38
  name: string;
38
39
  online: boolean;
@@ -51,6 +52,7 @@ export declare const common_device_properties: z.ZodObject<{
51
52
  image_alt_text?: string | undefined;
52
53
  serial_number?: string | undefined;
53
54
  supports_accessory_keypad?: boolean | undefined;
55
+ supports_offline_access_codes?: boolean | undefined;
54
56
  }, {
55
57
  name: string;
56
58
  online: boolean;
@@ -69,6 +71,7 @@ export declare const common_device_properties: z.ZodObject<{
69
71
  image_alt_text?: string | undefined;
70
72
  serial_number?: string | undefined;
71
73
  supports_accessory_keypad?: boolean | undefined;
74
+ supports_offline_access_codes?: boolean | undefined;
72
75
  }>;
73
76
  export declare const managed_device: z.ZodObject<{
74
77
  device_id: z.ZodString;
@@ -104,6 +107,7 @@ export declare const managed_device: z.ZodObject<{
104
107
  image_alt_text: z.ZodOptional<z.ZodString>;
105
108
  serial_number: z.ZodOptional<z.ZodString>;
106
109
  supports_accessory_keypad: z.ZodOptional<z.ZodBoolean>;
110
+ supports_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
107
111
  }, "strip", z.ZodTypeAny, {
108
112
  name: string;
109
113
  online: boolean;
@@ -122,6 +126,7 @@ export declare const managed_device: z.ZodObject<{
122
126
  image_alt_text?: string | undefined;
123
127
  serial_number?: string | undefined;
124
128
  supports_accessory_keypad?: boolean | undefined;
129
+ supports_offline_access_codes?: boolean | undefined;
125
130
  }, {
126
131
  name: string;
127
132
  online: boolean;
@@ -140,6 +145,7 @@ export declare const managed_device: z.ZodObject<{
140
145
  image_alt_text?: string | undefined;
141
146
  serial_number?: string | undefined;
142
147
  supports_accessory_keypad?: boolean | undefined;
148
+ supports_offline_access_codes?: boolean | undefined;
143
149
  }>, z.ZodObject<{
144
150
  august_metadata: z.ZodOptional<z.ZodObject<{
145
151
  lock_id: z.ZodString;
@@ -1798,6 +1804,7 @@ export declare const managed_device: z.ZodObject<{
1798
1804
  image_alt_text?: string | undefined;
1799
1805
  serial_number?: string | undefined;
1800
1806
  supports_accessory_keypad?: boolean | undefined;
1807
+ supports_offline_access_codes?: boolean | undefined;
1801
1808
  } & {
1802
1809
  august_metadata?: {
1803
1810
  lock_id: string;
@@ -2163,6 +2170,7 @@ export declare const managed_device: z.ZodObject<{
2163
2170
  image_alt_text?: string | undefined;
2164
2171
  serial_number?: string | undefined;
2165
2172
  supports_accessory_keypad?: boolean | undefined;
2173
+ supports_offline_access_codes?: boolean | undefined;
2166
2174
  } & {
2167
2175
  august_metadata?: {
2168
2176
  lock_id: string;
@@ -2549,6 +2557,7 @@ export declare const managed_device: z.ZodObject<{
2549
2557
  image_alt_text?: string | undefined;
2550
2558
  serial_number?: string | undefined;
2551
2559
  supports_accessory_keypad?: boolean | undefined;
2560
+ supports_offline_access_codes?: boolean | undefined;
2552
2561
  } & {
2553
2562
  august_metadata?: {
2554
2563
  lock_id: string;
@@ -2914,6 +2923,7 @@ export declare const managed_device: z.ZodObject<{
2914
2923
  image_alt_text?: string | undefined;
2915
2924
  serial_number?: string | undefined;
2916
2925
  supports_accessory_keypad?: boolean | undefined;
2926
+ supports_offline_access_codes?: boolean | undefined;
2917
2927
  } & {
2918
2928
  august_metadata?: {
2919
2929
  lock_id: string;
@@ -25,6 +25,7 @@ export const common_device_properties = z.object({
25
25
  image_alt_text: z.string().optional(),
26
26
  serial_number: z.string().optional(),
27
27
  supports_accessory_keypad: z.boolean().optional(),
28
+ supports_offline_access_codes: z.boolean().optional(),
28
29
  });
29
30
  export const managed_device = z.object({
30
31
  device_id: z.string().uuid(),
@@ -1 +1 @@
1
- {"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/unstable/models/managed-device.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/unstable/models/managed-device.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.34.0",
3
+ "version": "1.35.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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',
@@ -65,6 +65,8 @@ export interface Routes {
65
65
  is_backup?: boolean | undefined
66
66
  pulled_backup_access_code_id?: (string | null) | undefined
67
67
  is_external_modification_allowed: boolean
68
+ is_one_time_use: boolean
69
+ is_offline_access_code: boolean
68
70
  }
69
71
  }
70
72
  }
@@ -108,6 +110,8 @@ export interface Routes {
108
110
  is_backup?: boolean | undefined
109
111
  pulled_backup_access_code_id?: (string | null) | undefined
110
112
  is_external_modification_allowed: boolean
113
+ is_one_time_use: boolean
114
+ is_offline_access_code: boolean
111
115
  }>
112
116
  }
113
117
  }
@@ -198,6 +202,8 @@ export interface Routes {
198
202
  is_backup?: boolean | undefined
199
203
  pulled_backup_access_code_id?: (string | null) | undefined
200
204
  is_external_modification_allowed: boolean
205
+ is_one_time_use: boolean
206
+ is_offline_access_code: boolean
201
207
  }
202
208
  }
203
209
  }
@@ -233,6 +239,8 @@ export interface Routes {
233
239
  is_backup?: boolean | undefined
234
240
  pulled_backup_access_code_id?: (string | null) | undefined
235
241
  is_external_modification_allowed: boolean
242
+ is_one_time_use: boolean
243
+ is_offline_access_code: boolean
236
244
  }>
237
245
  }
238
246
  }
@@ -266,6 +274,8 @@ export interface Routes {
266
274
  is_backup?: boolean | undefined
267
275
  pulled_backup_access_code_id?: (string | null) | undefined
268
276
  is_external_modification_allowed: boolean
277
+ is_one_time_use: boolean
278
+ is_offline_access_code: boolean
269
279
  }
270
280
  }
271
281
  }
@@ -1427,6 +1437,7 @@ export interface Routes {
1427
1437
  image_alt_text?: string | undefined
1428
1438
  serial_number?: string | undefined
1429
1439
  supports_accessory_keypad?: boolean | undefined
1440
+ supports_offline_access_codes?: boolean | undefined
1430
1441
  } & {
1431
1442
  august_metadata?:
1432
1443
  | {
@@ -2124,6 +2135,7 @@ export interface Routes {
2124
2135
  image_alt_text?: string | undefined
2125
2136
  serial_number?: string | undefined
2126
2137
  supports_accessory_keypad?: boolean | undefined
2138
+ supports_offline_access_codes?: boolean | undefined
2127
2139
  } & {
2128
2140
  august_metadata?:
2129
2141
  | {
@@ -3794,6 +3806,7 @@ export interface Routes {
3794
3806
  image_alt_text?: string | undefined
3795
3807
  serial_number?: string | undefined
3796
3808
  supports_accessory_keypad?: boolean | undefined
3809
+ supports_offline_access_codes?: boolean | undefined
3797
3810
  } & {
3798
3811
  august_metadata?:
3799
3812
  | {
@@ -4521,6 +4534,7 @@ export interface Routes {
4521
4534
  image_alt_text?: string | undefined
4522
4535
  serial_number?: string | undefined
4523
4536
  supports_accessory_keypad?: boolean | undefined
4537
+ supports_offline_access_codes?: boolean | undefined
4524
4538
  } & {
4525
4539
  august_metadata?:
4526
4540
  | {
@@ -5223,6 +5237,7 @@ export interface Routes {
5223
5237
  image_alt_text?: string | undefined
5224
5238
  serial_number?: string | undefined
5225
5239
  supports_accessory_keypad?: boolean | undefined
5240
+ supports_offline_access_codes?: boolean | undefined
5226
5241
  } & {
5227
5242
  august_metadata?:
5228
5243
  | {
@@ -31,6 +31,7 @@ export const common_device_properties = z.object({
31
31
  image_alt_text: z.string().optional(),
32
32
  serial_number: z.string().optional(),
33
33
  supports_accessory_keypad: z.boolean().optional(),
34
+ supports_offline_access_codes: z.boolean().optional(),
34
35
  })
35
36
 
36
37
  export const managed_device = z.object({