@seamapi/types 1.28.0 → 1.30.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 +22 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +21 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -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 +25 -4
- package/src/lib/seam/connect/route-types.ts +8 -0
- package/src/lib/seam/connect/unstable/models/managed-device.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -680,6 +680,9 @@ declare const _default: {
|
|
|
680
680
|
serial_number: {
|
|
681
681
|
type: string;
|
|
682
682
|
};
|
|
683
|
+
supports_accessory_keypad: {
|
|
684
|
+
type: string;
|
|
685
|
+
};
|
|
683
686
|
august_metadata?: never;
|
|
684
687
|
avigilon_alta_metadata?: never;
|
|
685
688
|
brivo_metadata?: never;
|
|
@@ -1187,6 +1190,7 @@ declare const _default: {
|
|
|
1187
1190
|
name?: never;
|
|
1188
1191
|
online?: never;
|
|
1189
1192
|
serial_number?: never;
|
|
1193
|
+
supports_accessory_keypad?: never;
|
|
1190
1194
|
};
|
|
1191
1195
|
type: string;
|
|
1192
1196
|
required?: never;
|
|
@@ -7415,6 +7419,7 @@ declare const _default: {
|
|
|
7415
7419
|
type: string;
|
|
7416
7420
|
};
|
|
7417
7421
|
connected_account_id: {
|
|
7422
|
+
description: string;
|
|
7418
7423
|
format: string;
|
|
7419
7424
|
type: string;
|
|
7420
7425
|
};
|
|
@@ -7697,6 +7702,7 @@ declare const _default: {
|
|
|
7697
7702
|
type: string;
|
|
7698
7703
|
};
|
|
7699
7704
|
connected_account_id: {
|
|
7705
|
+
description: string;
|
|
7700
7706
|
format: string;
|
|
7701
7707
|
type: string;
|
|
7702
7708
|
};
|
|
@@ -8597,6 +8603,7 @@ declare const _default: {
|
|
|
8597
8603
|
type: string;
|
|
8598
8604
|
};
|
|
8599
8605
|
connected_account_id: {
|
|
8606
|
+
description: string;
|
|
8600
8607
|
format: string;
|
|
8601
8608
|
type: string;
|
|
8602
8609
|
};
|
|
@@ -10502,6 +10509,7 @@ declare const _default: {
|
|
|
10502
10509
|
type: string;
|
|
10503
10510
|
};
|
|
10504
10511
|
connected_account_id: {
|
|
10512
|
+
description: string;
|
|
10505
10513
|
format: string;
|
|
10506
10514
|
type: string;
|
|
10507
10515
|
};
|
|
@@ -12834,6 +12842,7 @@ interface Routes {
|
|
|
12834
12842
|
image_url?: string | undefined;
|
|
12835
12843
|
image_alt_text?: string | undefined;
|
|
12836
12844
|
serial_number?: string | undefined;
|
|
12845
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
12837
12846
|
} & {
|
|
12838
12847
|
august_metadata?: {
|
|
12839
12848
|
lock_id: string;
|
|
@@ -13207,6 +13216,7 @@ interface Routes {
|
|
|
13207
13216
|
queryParams: {};
|
|
13208
13217
|
jsonBody: {};
|
|
13209
13218
|
commonParams: {
|
|
13219
|
+
/** List all devices owned by this connected account */
|
|
13210
13220
|
connected_account_id?: string | undefined;
|
|
13211
13221
|
connected_account_ids?: string[] | undefined;
|
|
13212
13222
|
connect_webview_id?: string | undefined;
|
|
@@ -13241,6 +13251,7 @@ interface Routes {
|
|
|
13241
13251
|
image_url?: string | undefined;
|
|
13242
13252
|
image_alt_text?: string | undefined;
|
|
13243
13253
|
serial_number?: string | undefined;
|
|
13254
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
13244
13255
|
} & {
|
|
13245
13256
|
august_metadata?: {
|
|
13246
13257
|
lock_id: string;
|
|
@@ -13673,6 +13684,7 @@ interface Routes {
|
|
|
13673
13684
|
queryParams: {};
|
|
13674
13685
|
jsonBody: {};
|
|
13675
13686
|
commonParams: {
|
|
13687
|
+
/** List all devices owned by this connected account */
|
|
13676
13688
|
connected_account_id?: string | undefined;
|
|
13677
13689
|
connected_account_ids?: string[] | undefined;
|
|
13678
13690
|
connect_webview_id?: string | undefined;
|
|
@@ -13892,6 +13904,7 @@ interface Routes {
|
|
|
13892
13904
|
queryParams: {};
|
|
13893
13905
|
jsonBody: {};
|
|
13894
13906
|
commonParams: {
|
|
13907
|
+
/** List all devices owned by this connected account */
|
|
13895
13908
|
connected_account_id?: string | undefined;
|
|
13896
13909
|
connected_account_ids?: string[] | undefined;
|
|
13897
13910
|
connect_webview_id?: string | undefined;
|
|
@@ -14348,6 +14361,7 @@ interface Routes {
|
|
|
14348
14361
|
image_url?: string | undefined;
|
|
14349
14362
|
image_alt_text?: string | undefined;
|
|
14350
14363
|
serial_number?: string | undefined;
|
|
14364
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
14351
14365
|
} & {
|
|
14352
14366
|
august_metadata?: {
|
|
14353
14367
|
lock_id: string;
|
|
@@ -14751,6 +14765,7 @@ interface Routes {
|
|
|
14751
14765
|
queryParams: {};
|
|
14752
14766
|
jsonBody: {};
|
|
14753
14767
|
commonParams: {
|
|
14768
|
+
/** List all devices owned by this connected account */
|
|
14754
14769
|
connected_account_id?: string | undefined;
|
|
14755
14770
|
connected_account_ids?: string[] | undefined;
|
|
14756
14771
|
connect_webview_id?: string | undefined;
|
|
@@ -14785,6 +14800,7 @@ interface Routes {
|
|
|
14785
14800
|
image_url?: string | undefined;
|
|
14786
14801
|
image_alt_text?: string | undefined;
|
|
14787
14802
|
serial_number?: string | undefined;
|
|
14803
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
14788
14804
|
} & {
|
|
14789
14805
|
august_metadata?: {
|
|
14790
14806
|
lock_id: string;
|
|
@@ -629,6 +629,9 @@ declare const _default: {
|
|
|
629
629
|
serial_number: {
|
|
630
630
|
type: string;
|
|
631
631
|
};
|
|
632
|
+
supports_accessory_keypad: {
|
|
633
|
+
type: string;
|
|
634
|
+
};
|
|
632
635
|
august_metadata?: never;
|
|
633
636
|
avigilon_alta_metadata?: never;
|
|
634
637
|
brivo_metadata?: never;
|
|
@@ -1136,6 +1139,7 @@ declare const _default: {
|
|
|
1136
1139
|
name?: never;
|
|
1137
1140
|
online?: never;
|
|
1138
1141
|
serial_number?: never;
|
|
1142
|
+
supports_accessory_keypad?: never;
|
|
1139
1143
|
};
|
|
1140
1144
|
type: string;
|
|
1141
1145
|
required?: never;
|
|
@@ -7364,6 +7368,7 @@ declare const _default: {
|
|
|
7364
7368
|
type: string;
|
|
7365
7369
|
};
|
|
7366
7370
|
connected_account_id: {
|
|
7371
|
+
description: string;
|
|
7367
7372
|
format: string;
|
|
7368
7373
|
type: string;
|
|
7369
7374
|
};
|
|
@@ -7646,6 +7651,7 @@ declare const _default: {
|
|
|
7646
7651
|
type: string;
|
|
7647
7652
|
};
|
|
7648
7653
|
connected_account_id: {
|
|
7654
|
+
description: string;
|
|
7649
7655
|
format: string;
|
|
7650
7656
|
type: string;
|
|
7651
7657
|
};
|
|
@@ -8546,6 +8552,7 @@ declare const _default: {
|
|
|
8546
8552
|
type: string;
|
|
8547
8553
|
};
|
|
8548
8554
|
connected_account_id: {
|
|
8555
|
+
description: string;
|
|
8549
8556
|
format: string;
|
|
8550
8557
|
type: string;
|
|
8551
8558
|
};
|
|
@@ -10451,6 +10458,7 @@ declare const _default: {
|
|
|
10451
10458
|
type: string;
|
|
10452
10459
|
};
|
|
10453
10460
|
connected_account_id: {
|
|
10461
|
+
description: string;
|
|
10454
10462
|
format: string;
|
|
10455
10463
|
type: string;
|
|
10456
10464
|
};
|
|
@@ -443,6 +443,7 @@ export default {
|
|
|
443
443
|
name: { type: 'string' },
|
|
444
444
|
online: { type: 'boolean' },
|
|
445
445
|
serial_number: { type: 'string' },
|
|
446
|
+
supports_accessory_keypad: { type: 'boolean' },
|
|
446
447
|
},
|
|
447
448
|
required: ['online', 'name', 'model'],
|
|
448
449
|
type: 'object',
|
|
@@ -5043,7 +5044,11 @@ export default {
|
|
|
5043
5044
|
schema: {
|
|
5044
5045
|
properties: {
|
|
5045
5046
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
5046
|
-
connected_account_id: {
|
|
5047
|
+
connected_account_id: {
|
|
5048
|
+
description: 'List all devices owned by this connected account',
|
|
5049
|
+
format: 'uuid',
|
|
5050
|
+
type: 'string',
|
|
5051
|
+
},
|
|
5047
5052
|
connected_account_ids: {
|
|
5048
5053
|
items: { format: 'uuid', type: 'string' },
|
|
5049
5054
|
minItems: 1,
|
|
@@ -5348,7 +5353,11 @@ export default {
|
|
|
5348
5353
|
schema: {
|
|
5349
5354
|
properties: {
|
|
5350
5355
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
5351
|
-
connected_account_id: {
|
|
5356
|
+
connected_account_id: {
|
|
5357
|
+
description: 'List all devices owned by this connected account',
|
|
5358
|
+
format: 'uuid',
|
|
5359
|
+
type: 'string',
|
|
5360
|
+
},
|
|
5352
5361
|
connected_account_ids: {
|
|
5353
5362
|
items: { format: 'uuid', type: 'string' },
|
|
5354
5363
|
minItems: 1,
|
|
@@ -6145,7 +6154,11 @@ export default {
|
|
|
6145
6154
|
schema: {
|
|
6146
6155
|
properties: {
|
|
6147
6156
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
6148
|
-
connected_account_id: {
|
|
6157
|
+
connected_account_id: {
|
|
6158
|
+
description: 'List all devices owned by this connected account',
|
|
6159
|
+
format: 'uuid',
|
|
6160
|
+
type: 'string',
|
|
6161
|
+
},
|
|
6149
6162
|
connected_account_ids: {
|
|
6150
6163
|
items: { format: 'uuid', type: 'string' },
|
|
6151
6164
|
minItems: 1,
|
|
@@ -7491,7 +7504,11 @@ export default {
|
|
|
7491
7504
|
schema: {
|
|
7492
7505
|
properties: {
|
|
7493
7506
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
7494
|
-
connected_account_id: {
|
|
7507
|
+
connected_account_id: {
|
|
7508
|
+
description: 'List all devices owned by this connected account',
|
|
7509
|
+
format: 'uuid',
|
|
7510
|
+
type: 'string',
|
|
7511
|
+
},
|
|
7495
7512
|
connected_account_ids: {
|
|
7496
7513
|
items: { format: 'uuid', type: 'string' },
|
|
7497
7514
|
minItems: 1,
|