@seamapi/types 1.703.0 → 1.705.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 +224 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +742 -56
- package/dist/index.cjs +224 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
- package/lib/seam/connect/models/batch.d.ts +140 -33
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +5 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +94 -12
- package/lib/seam/connect/models/devices/device.js +45 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +42 -13
- package/lib/seam/connect/openapi.d.ts +126 -0
- package/lib/seam/connect/openapi.js +187 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +370 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +5 -0
- package/src/lib/seam/connect/models/devices/device.ts +63 -0
- package/src/lib/seam/connect/openapi.ts +210 -0
- package/src/lib/seam/connect/route-types.ts +438 -0
|
@@ -8262,6 +8262,11 @@ export default {
|
|
|
8262
8262
|
},
|
|
8263
8263
|
type: 'array',
|
|
8264
8264
|
},
|
|
8265
|
+
image_url: {
|
|
8266
|
+
description: 'Logo URL for the connected account provider.',
|
|
8267
|
+
format: 'uri',
|
|
8268
|
+
type: 'string',
|
|
8269
|
+
},
|
|
8265
8270
|
user_identifier: {
|
|
8266
8271
|
deprecated: true,
|
|
8267
8272
|
description: 'User identifier associated with the connected account.',
|
|
@@ -8562,6 +8567,56 @@ export default {
|
|
|
8562
8567
|
format: 'uuid',
|
|
8563
8568
|
type: 'string',
|
|
8564
8569
|
},
|
|
8570
|
+
device_manufacturer: {
|
|
8571
|
+
description: 'Manufacturer of the device. Represents the hardware brand, which may differ from the provider.',
|
|
8572
|
+
properties: {
|
|
8573
|
+
display_name: {
|
|
8574
|
+
description: 'Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on.',
|
|
8575
|
+
type: 'string',
|
|
8576
|
+
},
|
|
8577
|
+
image_url: {
|
|
8578
|
+
description: 'Image URL for the manufacturer logo.',
|
|
8579
|
+
format: 'uri',
|
|
8580
|
+
type: 'string',
|
|
8581
|
+
},
|
|
8582
|
+
manufacturer: {
|
|
8583
|
+
description: 'Manufacturer identifier, such as `august`, `yale`, `salto`, and so on.',
|
|
8584
|
+
type: 'string',
|
|
8585
|
+
},
|
|
8586
|
+
},
|
|
8587
|
+
required: ['manufacturer', 'display_name'],
|
|
8588
|
+
type: 'object',
|
|
8589
|
+
'x-property-group-key': 'hardware',
|
|
8590
|
+
},
|
|
8591
|
+
device_provider: {
|
|
8592
|
+
description: 'Provider of the device. Represents the third-party service through which the device is controlled.',
|
|
8593
|
+
properties: {
|
|
8594
|
+
device_provider_name: {
|
|
8595
|
+
description: 'Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on.',
|
|
8596
|
+
type: 'string',
|
|
8597
|
+
},
|
|
8598
|
+
display_name: {
|
|
8599
|
+
description: 'Display name for the device provider type.',
|
|
8600
|
+
type: 'string',
|
|
8601
|
+
},
|
|
8602
|
+
image_url: {
|
|
8603
|
+
description: 'Image URL for the device provider.',
|
|
8604
|
+
format: 'uri',
|
|
8605
|
+
type: 'string',
|
|
8606
|
+
},
|
|
8607
|
+
provider_category: {
|
|
8608
|
+
description: 'Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations.',
|
|
8609
|
+
type: 'string',
|
|
8610
|
+
},
|
|
8611
|
+
},
|
|
8612
|
+
required: [
|
|
8613
|
+
'provider_category',
|
|
8614
|
+
'device_provider_name',
|
|
8615
|
+
'display_name',
|
|
8616
|
+
],
|
|
8617
|
+
type: 'object',
|
|
8618
|
+
'x-property-group-key': 'hardware',
|
|
8619
|
+
},
|
|
8565
8620
|
device_type: {
|
|
8566
8621
|
description: 'Type of the device.',
|
|
8567
8622
|
oneOf: [
|
|
@@ -43967,6 +44022,90 @@ export default {
|
|
|
43967
44022
|
type: 'string',
|
|
43968
44023
|
},
|
|
43969
44024
|
},
|
|
44025
|
+
{
|
|
44026
|
+
in: 'query',
|
|
44027
|
+
name: 'access_grant_id',
|
|
44028
|
+
schema: {
|
|
44029
|
+
description: 'ID of the access grant for which you want to list events.',
|
|
44030
|
+
format: 'uuid',
|
|
44031
|
+
type: 'string',
|
|
44032
|
+
},
|
|
44033
|
+
},
|
|
44034
|
+
{
|
|
44035
|
+
in: 'query',
|
|
44036
|
+
name: 'access_grant_ids',
|
|
44037
|
+
schema: {
|
|
44038
|
+
description: 'IDs of the access grants for which you want to list events.',
|
|
44039
|
+
items: { format: 'uuid', type: 'string' },
|
|
44040
|
+
maxItems: 100,
|
|
44041
|
+
type: 'array',
|
|
44042
|
+
},
|
|
44043
|
+
},
|
|
44044
|
+
{
|
|
44045
|
+
in: 'query',
|
|
44046
|
+
name: 'access_method_id',
|
|
44047
|
+
schema: {
|
|
44048
|
+
description: 'ID of the access method for which you want to list events.',
|
|
44049
|
+
format: 'uuid',
|
|
44050
|
+
type: 'string',
|
|
44051
|
+
},
|
|
44052
|
+
},
|
|
44053
|
+
{
|
|
44054
|
+
in: 'query',
|
|
44055
|
+
name: 'access_method_ids',
|
|
44056
|
+
schema: {
|
|
44057
|
+
description: 'IDs of the access methods for which you want to list events.',
|
|
44058
|
+
items: { format: 'uuid', type: 'string' },
|
|
44059
|
+
maxItems: 100,
|
|
44060
|
+
type: 'array',
|
|
44061
|
+
},
|
|
44062
|
+
},
|
|
44063
|
+
{
|
|
44064
|
+
in: 'query',
|
|
44065
|
+
name: 'acs_credential_id',
|
|
44066
|
+
schema: {
|
|
44067
|
+
description: 'ID of the ACS credential for which you want to list events.',
|
|
44068
|
+
format: 'uuid',
|
|
44069
|
+
type: 'string',
|
|
44070
|
+
},
|
|
44071
|
+
},
|
|
44072
|
+
{
|
|
44073
|
+
in: 'query',
|
|
44074
|
+
name: 'space_id',
|
|
44075
|
+
schema: {
|
|
44076
|
+
description: 'ID of the space for which you want to list events.',
|
|
44077
|
+
format: 'uuid',
|
|
44078
|
+
type: 'string',
|
|
44079
|
+
},
|
|
44080
|
+
},
|
|
44081
|
+
{
|
|
44082
|
+
in: 'query',
|
|
44083
|
+
name: 'space_ids',
|
|
44084
|
+
schema: {
|
|
44085
|
+
description: 'IDs of the spaces for which you want to list events.',
|
|
44086
|
+
items: { format: 'uuid', type: 'string' },
|
|
44087
|
+
maxItems: 100,
|
|
44088
|
+
type: 'array',
|
|
44089
|
+
},
|
|
44090
|
+
},
|
|
44091
|
+
{
|
|
44092
|
+
in: 'query',
|
|
44093
|
+
name: 'acs_access_group_id',
|
|
44094
|
+
schema: {
|
|
44095
|
+
description: 'ID of the ACS access group for which you want to list events.',
|
|
44096
|
+
format: 'uuid',
|
|
44097
|
+
type: 'string',
|
|
44098
|
+
},
|
|
44099
|
+
},
|
|
44100
|
+
{
|
|
44101
|
+
in: 'query',
|
|
44102
|
+
name: 'acs_encoder_id',
|
|
44103
|
+
schema: {
|
|
44104
|
+
description: 'ID of the ACS encoder for which you want to list events.',
|
|
44105
|
+
format: 'uuid',
|
|
44106
|
+
type: 'string',
|
|
44107
|
+
},
|
|
44108
|
+
},
|
|
43970
44109
|
],
|
|
43971
44110
|
responses: {
|
|
43972
44111
|
200: {
|
|
@@ -44023,6 +44162,43 @@ export default {
|
|
|
44023
44162
|
items: { format: 'uuid', type: 'string' },
|
|
44024
44163
|
type: 'array',
|
|
44025
44164
|
},
|
|
44165
|
+
access_grant_id: {
|
|
44166
|
+
description: 'ID of the access grant for which you want to list events.',
|
|
44167
|
+
format: 'uuid',
|
|
44168
|
+
type: 'string',
|
|
44169
|
+
},
|
|
44170
|
+
access_grant_ids: {
|
|
44171
|
+
description: 'IDs of the access grants for which you want to list events.',
|
|
44172
|
+
items: { format: 'uuid', type: 'string' },
|
|
44173
|
+
maxItems: 100,
|
|
44174
|
+
type: 'array',
|
|
44175
|
+
},
|
|
44176
|
+
access_method_id: {
|
|
44177
|
+
description: 'ID of the access method for which you want to list events.',
|
|
44178
|
+
format: 'uuid',
|
|
44179
|
+
type: 'string',
|
|
44180
|
+
},
|
|
44181
|
+
access_method_ids: {
|
|
44182
|
+
description: 'IDs of the access methods for which you want to list events.',
|
|
44183
|
+
items: { format: 'uuid', type: 'string' },
|
|
44184
|
+
maxItems: 100,
|
|
44185
|
+
type: 'array',
|
|
44186
|
+
},
|
|
44187
|
+
acs_access_group_id: {
|
|
44188
|
+
description: 'ID of the ACS access group for which you want to list events.',
|
|
44189
|
+
format: 'uuid',
|
|
44190
|
+
type: 'string',
|
|
44191
|
+
},
|
|
44192
|
+
acs_credential_id: {
|
|
44193
|
+
description: 'ID of the ACS credential for which you want to list events.',
|
|
44194
|
+
format: 'uuid',
|
|
44195
|
+
type: 'string',
|
|
44196
|
+
},
|
|
44197
|
+
acs_encoder_id: {
|
|
44198
|
+
description: 'ID of the ACS encoder for which you want to list events.',
|
|
44199
|
+
format: 'uuid',
|
|
44200
|
+
type: 'string',
|
|
44201
|
+
},
|
|
44026
44202
|
acs_entrance_id: {
|
|
44027
44203
|
description: 'ID of the ACS entrance for which you want to list events.',
|
|
44028
44204
|
format: 'uuid',
|
|
@@ -44301,6 +44477,17 @@ export default {
|
|
|
44301
44477
|
description: 'Timestamp to indicate the beginning generation time for the events that you want to list. You must include `since` or `between`.',
|
|
44302
44478
|
type: 'string',
|
|
44303
44479
|
},
|
|
44480
|
+
space_id: {
|
|
44481
|
+
description: 'ID of the space for which you want to list events.',
|
|
44482
|
+
format: 'uuid',
|
|
44483
|
+
type: 'string',
|
|
44484
|
+
},
|
|
44485
|
+
space_ids: {
|
|
44486
|
+
description: 'IDs of the spaces for which you want to list events.',
|
|
44487
|
+
items: { format: 'uuid', type: 'string' },
|
|
44488
|
+
maxItems: 100,
|
|
44489
|
+
type: 'array',
|
|
44490
|
+
},
|
|
44304
44491
|
unstable_offset: {
|
|
44305
44492
|
description: 'Offset for the events that you want to list.',
|
|
44306
44493
|
format: 'float',
|