@seamapi/types 1.577.0 → 1.578.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 +17 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +45 -30
- package/dist/index.cjs +17 -15
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +34 -28
- package/lib/seam/connect/openapi.js +15 -13
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -14
- package/src/lib/seam/connect/route-types.ts +11 -2
|
@@ -34828,8 +34828,6 @@ export type Routes = {
|
|
|
34828
34828
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest') | undefined;
|
|
34829
34829
|
/** Array of device IDs for which you want to list devices. */
|
|
34830
34830
|
device_ids?: string[] | undefined;
|
|
34831
|
-
/** Numerical limit on the number of devices to return. */
|
|
34832
|
-
limit?: number;
|
|
34833
34831
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
34834
34832
|
created_before?: Date | undefined;
|
|
34835
34833
|
/** Your own internal user ID for the user for which you want to list devices. */
|
|
@@ -34851,6 +34849,8 @@ export type Routes = {
|
|
|
34851
34849
|
space_id?: string | undefined;
|
|
34852
34850
|
/** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
|
|
34853
34851
|
search?: string | undefined;
|
|
34852
|
+
/** Numerical limit on the number of devices to return. */
|
|
34853
|
+
limit?: number;
|
|
34854
34854
|
};
|
|
34855
34855
|
formData: {};
|
|
34856
34856
|
jsonResponse: {
|
|
@@ -35234,6 +35234,15 @@ export type Routes = {
|
|
|
35234
35234
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
35235
35235
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
35236
35236
|
}[];
|
|
35237
|
+
/** Information about the current page of results. */
|
|
35238
|
+
pagination: {
|
|
35239
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
35240
|
+
next_page_cursor: string | null;
|
|
35241
|
+
/** Indicates whether there is another page of results after this one. */
|
|
35242
|
+
has_next_page: boolean;
|
|
35243
|
+
/** URL to get the next page of results. */
|
|
35244
|
+
next_page_url: string | null;
|
|
35245
|
+
};
|
|
35237
35246
|
};
|
|
35238
35247
|
};
|
|
35239
35248
|
'/devices/unmanaged/update': {
|
package/package.json
CHANGED
|
@@ -42456,17 +42456,6 @@ export default {
|
|
|
42456
42456
|
type: 'array',
|
|
42457
42457
|
},
|
|
42458
42458
|
},
|
|
42459
|
-
{
|
|
42460
|
-
in: 'query',
|
|
42461
|
-
name: 'limit',
|
|
42462
|
-
schema: {
|
|
42463
|
-
default: 500,
|
|
42464
|
-
description:
|
|
42465
|
-
'Numerical limit on the number of devices to return.',
|
|
42466
|
-
format: 'float',
|
|
42467
|
-
type: 'number',
|
|
42468
|
-
},
|
|
42469
|
-
},
|
|
42470
42459
|
{
|
|
42471
42460
|
in: 'query',
|
|
42472
42461
|
name: 'created_before',
|
|
@@ -42597,6 +42586,17 @@ export default {
|
|
|
42597
42586
|
type: 'string',
|
|
42598
42587
|
},
|
|
42599
42588
|
},
|
|
42589
|
+
{
|
|
42590
|
+
in: 'query',
|
|
42591
|
+
name: 'limit',
|
|
42592
|
+
schema: {
|
|
42593
|
+
default: 22_900,
|
|
42594
|
+
description:
|
|
42595
|
+
'Numerical limit on the number of devices to return.',
|
|
42596
|
+
format: 'float',
|
|
42597
|
+
type: 'number',
|
|
42598
|
+
},
|
|
42599
|
+
},
|
|
42600
42600
|
],
|
|
42601
42601
|
responses: {
|
|
42602
42602
|
200: {
|
|
@@ -42609,8 +42609,9 @@ export default {
|
|
|
42609
42609
|
type: 'array',
|
|
42610
42610
|
},
|
|
42611
42611
|
ok: { type: 'boolean' },
|
|
42612
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
42612
42613
|
},
|
|
42613
|
-
required: ['devices', 'ok'],
|
|
42614
|
+
required: ['devices', 'pagination', 'ok'],
|
|
42614
42615
|
type: 'object',
|
|
42615
42616
|
},
|
|
42616
42617
|
},
|
|
@@ -42875,7 +42876,7 @@ export default {
|
|
|
42875
42876
|
'x-undocumented': 'Only used internally.',
|
|
42876
42877
|
},
|
|
42877
42878
|
limit: {
|
|
42878
|
-
default:
|
|
42879
|
+
default: 22_900,
|
|
42879
42880
|
description:
|
|
42880
42881
|
'Numerical limit on the number of devices to return.',
|
|
42881
42882
|
format: 'float',
|
|
@@ -42975,8 +42976,9 @@ export default {
|
|
|
42975
42976
|
type: 'array',
|
|
42976
42977
|
},
|
|
42977
42978
|
ok: { type: 'boolean' },
|
|
42979
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
42978
42980
|
},
|
|
42979
|
-
required: ['devices', 'ok'],
|
|
42981
|
+
required: ['devices', 'pagination', 'ok'],
|
|
42980
42982
|
type: 'object',
|
|
42981
42983
|
},
|
|
42982
42984
|
},
|
|
@@ -41031,8 +41031,6 @@ export type Routes = {
|
|
|
41031
41031
|
| undefined
|
|
41032
41032
|
/** Array of device IDs for which you want to list devices. */
|
|
41033
41033
|
device_ids?: string[] | undefined
|
|
41034
|
-
/** Numerical limit on the number of devices to return. */
|
|
41035
|
-
limit?: number
|
|
41036
41034
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
41037
41035
|
created_before?: Date | undefined
|
|
41038
41036
|
/** Your own internal user ID for the user for which you want to list devices. */
|
|
@@ -41094,6 +41092,8 @@ export type Routes = {
|
|
|
41094
41092
|
space_id?: string | undefined
|
|
41095
41093
|
/** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
|
|
41096
41094
|
search?: string | undefined
|
|
41095
|
+
/** Numerical limit on the number of devices to return. */
|
|
41096
|
+
limit?: number
|
|
41097
41097
|
}
|
|
41098
41098
|
formData: {}
|
|
41099
41099
|
jsonResponse: {
|
|
@@ -41564,6 +41564,15 @@ export type Routes = {
|
|
|
41564
41564
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
41565
41565
|
can_simulate_paid_subscription?: boolean | undefined
|
|
41566
41566
|
}[]
|
|
41567
|
+
/** Information about the current page of results. */
|
|
41568
|
+
pagination: {
|
|
41569
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
41570
|
+
next_page_cursor: string | null
|
|
41571
|
+
/** Indicates whether there is another page of results after this one. */
|
|
41572
|
+
has_next_page: boolean
|
|
41573
|
+
/** URL to get the next page of results. */
|
|
41574
|
+
next_page_url: string | null
|
|
41575
|
+
}
|
|
41567
41576
|
}
|
|
41568
41577
|
}
|
|
41569
41578
|
'/devices/unmanaged/update': {
|