@seamapi/types 1.370.2 → 1.370.3

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.
@@ -15427,6 +15427,7 @@ export interface Routes {
15427
15427
  unlock_via_gateway: boolean;
15428
15428
  lock_command: boolean;
15429
15429
  incomplete_keyboard_passcode: boolean;
15430
+ wifi: boolean;
15430
15431
  };
15431
15432
  has_gateway?: boolean | undefined;
15432
15433
  wireless_keypads?: Array<{
@@ -16154,6 +16155,7 @@ export interface Routes {
16154
16155
  unlock_via_gateway: boolean;
16155
16156
  lock_command: boolean;
16156
16157
  incomplete_keyboard_passcode: boolean;
16158
+ wifi: boolean;
16157
16159
  };
16158
16160
  has_gateway?: boolean | undefined;
16159
16161
  wireless_keypads?: Array<{
@@ -20036,6 +20038,7 @@ export interface Routes {
20036
20038
  unlock_via_gateway: boolean;
20037
20039
  lock_command: boolean;
20038
20040
  incomplete_keyboard_passcode: boolean;
20041
+ wifi: boolean;
20039
20042
  };
20040
20043
  has_gateway?: boolean | undefined;
20041
20044
  wireless_keypads?: Array<{
@@ -20725,6 +20728,7 @@ export interface Routes {
20725
20728
  unlock_via_gateway: boolean;
20726
20729
  lock_command: boolean;
20727
20730
  incomplete_keyboard_passcode: boolean;
20731
+ wifi: boolean;
20728
20732
  };
20729
20733
  has_gateway?: boolean | undefined;
20730
20734
  wireless_keypads?: Array<{
@@ -21452,6 +21456,7 @@ export interface Routes {
21452
21456
  unlock_via_gateway: boolean;
21453
21457
  lock_command: boolean;
21454
21458
  incomplete_keyboard_passcode: boolean;
21459
+ wifi: boolean;
21455
21460
  };
21456
21461
  has_gateway?: boolean | undefined;
21457
21462
  wireless_keypads?: Array<{
@@ -22140,6 +22145,7 @@ export interface Routes {
22140
22145
  unlock_via_gateway: boolean;
22141
22146
  lock_command: boolean;
22142
22147
  incomplete_keyboard_passcode: boolean;
22148
+ wifi: boolean;
22143
22149
  };
22144
22150
  has_gateway?: boolean | undefined;
22145
22151
  wireless_keypads?: Array<{
@@ -24828,6 +24834,7 @@ export interface Routes {
24828
24834
  unlock_via_gateway: boolean;
24829
24835
  lock_command: boolean;
24830
24836
  incomplete_keyboard_passcode: boolean;
24837
+ wifi: boolean;
24831
24838
  };
24832
24839
  has_gateway?: boolean | undefined;
24833
24840
  wireless_keypads?: Array<{
@@ -25516,6 +25523,7 @@ export interface Routes {
25516
25523
  unlock_via_gateway: boolean;
25517
25524
  lock_command: boolean;
25518
25525
  incomplete_keyboard_passcode: boolean;
25526
+ wifi: boolean;
25519
25527
  };
25520
25528
  has_gateway?: boolean | undefined;
25521
25529
  wireless_keypads?: Array<{
@@ -31542,6 +31550,7 @@ export interface Routes {
31542
31550
  unlock_via_gateway: boolean;
31543
31551
  lock_command: boolean;
31544
31552
  incomplete_keyboard_passcode: boolean;
31553
+ wifi: boolean;
31545
31554
  };
31546
31555
  has_gateway?: boolean | undefined;
31547
31556
  wireless_keypads?: Array<{
@@ -34211,6 +34220,7 @@ export interface Routes {
34211
34220
  unlock_via_gateway: boolean;
34212
34221
  lock_command: boolean;
34213
34222
  incomplete_keyboard_passcode: boolean;
34223
+ wifi: boolean;
34214
34224
  };
34215
34225
  has_gateway?: boolean | undefined;
34216
34226
  wireless_keypads?: Array<{
@@ -34899,6 +34909,7 @@ export interface Routes {
34899
34909
  unlock_via_gateway: boolean;
34900
34910
  lock_command: boolean;
34901
34911
  incomplete_keyboard_passcode: boolean;
34912
+ wifi: boolean;
34902
34913
  };
34903
34914
  has_gateway?: boolean | undefined;
34904
34915
  wireless_keypads?: Array<{
@@ -39288,6 +39299,7 @@ export interface Routes {
39288
39299
  unlock_via_gateway: boolean;
39289
39300
  lock_command: boolean;
39290
39301
  incomplete_keyboard_passcode: boolean;
39302
+ wifi: boolean;
39291
39303
  };
39292
39304
  has_gateway?: boolean | undefined;
39293
39305
  wireless_keypads?: Array<{
@@ -39978,6 +39990,7 @@ export interface Routes {
39978
39990
  unlock_via_gateway: boolean;
39979
39991
  lock_command: boolean;
39980
39992
  incomplete_keyboard_passcode: boolean;
39993
+ wifi: boolean;
39981
39994
  };
39982
39995
  has_gateway?: boolean | undefined;
39983
39996
  wireless_keypads?: Array<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.370.2",
3
+ "version": "1.370.3",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -168,6 +168,7 @@ export const device_metadata = z
168
168
  unlock_via_gateway: z.boolean(),
169
169
  lock_command: z.boolean(),
170
170
  incomplete_keyboard_passcode: z.boolean(),
171
+ wifi: z.boolean(),
171
172
  }),
172
173
  has_gateway: z.boolean().optional(),
173
174
  wireless_keypads: z
@@ -7482,6 +7482,7 @@ export default {
7482
7482
  passcode: { type: 'boolean' },
7483
7483
  passcode_management: { type: 'boolean' },
7484
7484
  unlock_via_gateway: { type: 'boolean' },
7485
+ wifi: { type: 'boolean' },
7485
7486
  },
7486
7487
  required: [
7487
7488
  'passcode',
@@ -7489,6 +7490,7 @@ export default {
7489
7490
  'unlock_via_gateway',
7490
7491
  'lock_command',
7491
7492
  'incomplete_keyboard_passcode',
7493
+ 'wifi',
7492
7494
  ],
7493
7495
  type: 'object',
7494
7496
  },
@@ -18209,6 +18209,7 @@ export interface Routes {
18209
18209
  unlock_via_gateway: boolean
18210
18210
  lock_command: boolean
18211
18211
  incomplete_keyboard_passcode: boolean
18212
+ wifi: boolean
18212
18213
  }
18213
18214
  has_gateway?: boolean | undefined
18214
18215
  wireless_keypads?:
@@ -19302,6 +19303,7 @@ export interface Routes {
19302
19303
  unlock_via_gateway: boolean
19303
19304
  lock_command: boolean
19304
19305
  incomplete_keyboard_passcode: boolean
19306
+ wifi: boolean
19305
19307
  }
19306
19308
  has_gateway?: boolean | undefined
19307
19309
  wireless_keypads?:
@@ -24127,6 +24129,7 @@ export interface Routes {
24127
24129
  unlock_via_gateway: boolean
24128
24130
  lock_command: boolean
24129
24131
  incomplete_keyboard_passcode: boolean
24132
+ wifi: boolean
24130
24133
  }
24131
24134
  has_gateway?: boolean | undefined
24132
24135
  wireless_keypads?:
@@ -25035,6 +25038,7 @@ export interface Routes {
25035
25038
  unlock_via_gateway: boolean
25036
25039
  lock_command: boolean
25037
25040
  incomplete_keyboard_passcode: boolean
25041
+ wifi: boolean
25038
25042
  }
25039
25043
  has_gateway?: boolean | undefined
25040
25044
  wireless_keypads?:
@@ -26128,6 +26132,7 @@ export interface Routes {
26128
26132
  unlock_via_gateway: boolean
26129
26133
  lock_command: boolean
26130
26134
  incomplete_keyboard_passcode: boolean
26135
+ wifi: boolean
26131
26136
  }
26132
26137
  has_gateway?: boolean | undefined
26133
26138
  wireless_keypads?:
@@ -27035,6 +27040,7 @@ export interface Routes {
27035
27040
  unlock_via_gateway: boolean
27036
27041
  lock_command: boolean
27037
27042
  incomplete_keyboard_passcode: boolean
27043
+ wifi: boolean
27038
27044
  }
27039
27045
  has_gateway?: boolean | undefined
27040
27046
  wireless_keypads?:
@@ -30425,6 +30431,7 @@ export interface Routes {
30425
30431
  unlock_via_gateway: boolean
30426
30432
  lock_command: boolean
30427
30433
  incomplete_keyboard_passcode: boolean
30434
+ wifi: boolean
30428
30435
  }
30429
30436
  has_gateway?: boolean | undefined
30430
30437
  wireless_keypads?:
@@ -31332,6 +31339,7 @@ export interface Routes {
31332
31339
  unlock_via_gateway: boolean
31333
31340
  lock_command: boolean
31334
31341
  incomplete_keyboard_passcode: boolean
31342
+ wifi: boolean
31335
31343
  }
31336
31344
  has_gateway?: boolean | undefined
31337
31345
  wireless_keypads?:
@@ -38438,6 +38446,7 @@ export interface Routes {
38438
38446
  unlock_via_gateway: boolean
38439
38447
  lock_command: boolean
38440
38448
  incomplete_keyboard_passcode: boolean
38449
+ wifi: boolean
38441
38450
  }
38442
38451
  has_gateway?: boolean | undefined
38443
38452
  wireless_keypads?:
@@ -41809,6 +41818,7 @@ export interface Routes {
41809
41818
  unlock_via_gateway: boolean
41810
41819
  lock_command: boolean
41811
41820
  incomplete_keyboard_passcode: boolean
41821
+ wifi: boolean
41812
41822
  }
41813
41823
  has_gateway?: boolean | undefined
41814
41824
  wireless_keypads?:
@@ -42716,6 +42726,7 @@ export interface Routes {
42716
42726
  unlock_via_gateway: boolean
42717
42727
  lock_command: boolean
42718
42728
  incomplete_keyboard_passcode: boolean
42729
+ wifi: boolean
42719
42730
  }
42720
42731
  has_gateway?: boolean | undefined
42721
42732
  wireless_keypads?:
@@ -47857,6 +47868,7 @@ export interface Routes {
47857
47868
  unlock_via_gateway: boolean
47858
47869
  lock_command: boolean
47859
47870
  incomplete_keyboard_passcode: boolean
47871
+ wifi: boolean
47860
47872
  }
47861
47873
  has_gateway?: boolean | undefined
47862
47874
  wireless_keypads?:
@@ -48766,6 +48778,7 @@ export interface Routes {
48766
48778
  unlock_via_gateway: boolean
48767
48779
  lock_command: boolean
48768
48780
  incomplete_keyboard_passcode: boolean
48781
+ wifi: boolean
48769
48782
  }
48770
48783
  has_gateway?: boolean | undefined
48771
48784
  wireless_keypads?: