@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
|
@@ -9338,6 +9338,11 @@ export default {
|
|
|
9338
9338
|
},
|
|
9339
9339
|
type: 'array',
|
|
9340
9340
|
},
|
|
9341
|
+
image_url: {
|
|
9342
|
+
description: 'Logo URL for the connected account provider.',
|
|
9343
|
+
format: 'uri',
|
|
9344
|
+
type: 'string',
|
|
9345
|
+
},
|
|
9341
9346
|
user_identifier: {
|
|
9342
9347
|
deprecated: true,
|
|
9343
9348
|
description:
|
|
@@ -9675,6 +9680,62 @@ export default {
|
|
|
9675
9680
|
format: 'uuid',
|
|
9676
9681
|
type: 'string',
|
|
9677
9682
|
},
|
|
9683
|
+
device_manufacturer: {
|
|
9684
|
+
description:
|
|
9685
|
+
'Manufacturer of the device. Represents the hardware brand, which may differ from the provider.',
|
|
9686
|
+
properties: {
|
|
9687
|
+
display_name: {
|
|
9688
|
+
description:
|
|
9689
|
+
'Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on.',
|
|
9690
|
+
type: 'string',
|
|
9691
|
+
},
|
|
9692
|
+
image_url: {
|
|
9693
|
+
description: 'Image URL for the manufacturer logo.',
|
|
9694
|
+
format: 'uri',
|
|
9695
|
+
type: 'string',
|
|
9696
|
+
},
|
|
9697
|
+
manufacturer: {
|
|
9698
|
+
description:
|
|
9699
|
+
'Manufacturer identifier, such as `august`, `yale`, `salto`, and so on.',
|
|
9700
|
+
type: 'string',
|
|
9701
|
+
},
|
|
9702
|
+
},
|
|
9703
|
+
required: ['manufacturer', 'display_name'],
|
|
9704
|
+
type: 'object',
|
|
9705
|
+
'x-property-group-key': 'hardware',
|
|
9706
|
+
},
|
|
9707
|
+
device_provider: {
|
|
9708
|
+
description:
|
|
9709
|
+
'Provider of the device. Represents the third-party service through which the device is controlled.',
|
|
9710
|
+
properties: {
|
|
9711
|
+
device_provider_name: {
|
|
9712
|
+
description:
|
|
9713
|
+
'Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on.',
|
|
9714
|
+
type: 'string',
|
|
9715
|
+
},
|
|
9716
|
+
display_name: {
|
|
9717
|
+
description: 'Display name for the device provider type.',
|
|
9718
|
+
type: 'string',
|
|
9719
|
+
},
|
|
9720
|
+
image_url: {
|
|
9721
|
+
description: 'Image URL for the device provider.',
|
|
9722
|
+
format: 'uri',
|
|
9723
|
+
type: 'string',
|
|
9724
|
+
},
|
|
9725
|
+
provider_category: {
|
|
9726
|
+
description:
|
|
9727
|
+
'Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations.',
|
|
9728
|
+
type: 'string',
|
|
9729
|
+
},
|
|
9730
|
+
},
|
|
9731
|
+
required: [
|
|
9732
|
+
'provider_category',
|
|
9733
|
+
'device_provider_name',
|
|
9734
|
+
'display_name',
|
|
9735
|
+
],
|
|
9736
|
+
type: 'object',
|
|
9737
|
+
'x-property-group-key': 'hardware',
|
|
9738
|
+
},
|
|
9678
9739
|
device_type: {
|
|
9679
9740
|
description: 'Type of the device.',
|
|
9680
9741
|
oneOf: [
|
|
@@ -48033,6 +48094,98 @@ export default {
|
|
|
48033
48094
|
type: 'string',
|
|
48034
48095
|
},
|
|
48035
48096
|
},
|
|
48097
|
+
{
|
|
48098
|
+
in: 'query',
|
|
48099
|
+
name: 'access_grant_id',
|
|
48100
|
+
schema: {
|
|
48101
|
+
description:
|
|
48102
|
+
'ID of the access grant for which you want to list events.',
|
|
48103
|
+
format: 'uuid',
|
|
48104
|
+
type: 'string',
|
|
48105
|
+
},
|
|
48106
|
+
},
|
|
48107
|
+
{
|
|
48108
|
+
in: 'query',
|
|
48109
|
+
name: 'access_grant_ids',
|
|
48110
|
+
schema: {
|
|
48111
|
+
description:
|
|
48112
|
+
'IDs of the access grants for which you want to list events.',
|
|
48113
|
+
items: { format: 'uuid', type: 'string' },
|
|
48114
|
+
maxItems: 100,
|
|
48115
|
+
type: 'array',
|
|
48116
|
+
},
|
|
48117
|
+
},
|
|
48118
|
+
{
|
|
48119
|
+
in: 'query',
|
|
48120
|
+
name: 'access_method_id',
|
|
48121
|
+
schema: {
|
|
48122
|
+
description:
|
|
48123
|
+
'ID of the access method for which you want to list events.',
|
|
48124
|
+
format: 'uuid',
|
|
48125
|
+
type: 'string',
|
|
48126
|
+
},
|
|
48127
|
+
},
|
|
48128
|
+
{
|
|
48129
|
+
in: 'query',
|
|
48130
|
+
name: 'access_method_ids',
|
|
48131
|
+
schema: {
|
|
48132
|
+
description:
|
|
48133
|
+
'IDs of the access methods for which you want to list events.',
|
|
48134
|
+
items: { format: 'uuid', type: 'string' },
|
|
48135
|
+
maxItems: 100,
|
|
48136
|
+
type: 'array',
|
|
48137
|
+
},
|
|
48138
|
+
},
|
|
48139
|
+
{
|
|
48140
|
+
in: 'query',
|
|
48141
|
+
name: 'acs_credential_id',
|
|
48142
|
+
schema: {
|
|
48143
|
+
description:
|
|
48144
|
+
'ID of the ACS credential for which you want to list events.',
|
|
48145
|
+
format: 'uuid',
|
|
48146
|
+
type: 'string',
|
|
48147
|
+
},
|
|
48148
|
+
},
|
|
48149
|
+
{
|
|
48150
|
+
in: 'query',
|
|
48151
|
+
name: 'space_id',
|
|
48152
|
+
schema: {
|
|
48153
|
+
description: 'ID of the space for which you want to list events.',
|
|
48154
|
+
format: 'uuid',
|
|
48155
|
+
type: 'string',
|
|
48156
|
+
},
|
|
48157
|
+
},
|
|
48158
|
+
{
|
|
48159
|
+
in: 'query',
|
|
48160
|
+
name: 'space_ids',
|
|
48161
|
+
schema: {
|
|
48162
|
+
description:
|
|
48163
|
+
'IDs of the spaces for which you want to list events.',
|
|
48164
|
+
items: { format: 'uuid', type: 'string' },
|
|
48165
|
+
maxItems: 100,
|
|
48166
|
+
type: 'array',
|
|
48167
|
+
},
|
|
48168
|
+
},
|
|
48169
|
+
{
|
|
48170
|
+
in: 'query',
|
|
48171
|
+
name: 'acs_access_group_id',
|
|
48172
|
+
schema: {
|
|
48173
|
+
description:
|
|
48174
|
+
'ID of the ACS access group for which you want to list events.',
|
|
48175
|
+
format: 'uuid',
|
|
48176
|
+
type: 'string',
|
|
48177
|
+
},
|
|
48178
|
+
},
|
|
48179
|
+
{
|
|
48180
|
+
in: 'query',
|
|
48181
|
+
name: 'acs_encoder_id',
|
|
48182
|
+
schema: {
|
|
48183
|
+
description:
|
|
48184
|
+
'ID of the ACS encoder for which you want to list events.',
|
|
48185
|
+
format: 'uuid',
|
|
48186
|
+
type: 'string',
|
|
48187
|
+
},
|
|
48188
|
+
},
|
|
48036
48189
|
],
|
|
48037
48190
|
responses: {
|
|
48038
48191
|
200: {
|
|
@@ -48092,6 +48245,50 @@ export default {
|
|
|
48092
48245
|
items: { format: 'uuid', type: 'string' },
|
|
48093
48246
|
type: 'array',
|
|
48094
48247
|
},
|
|
48248
|
+
access_grant_id: {
|
|
48249
|
+
description:
|
|
48250
|
+
'ID of the access grant for which you want to list events.',
|
|
48251
|
+
format: 'uuid',
|
|
48252
|
+
type: 'string',
|
|
48253
|
+
},
|
|
48254
|
+
access_grant_ids: {
|
|
48255
|
+
description:
|
|
48256
|
+
'IDs of the access grants for which you want to list events.',
|
|
48257
|
+
items: { format: 'uuid', type: 'string' },
|
|
48258
|
+
maxItems: 100,
|
|
48259
|
+
type: 'array',
|
|
48260
|
+
},
|
|
48261
|
+
access_method_id: {
|
|
48262
|
+
description:
|
|
48263
|
+
'ID of the access method for which you want to list events.',
|
|
48264
|
+
format: 'uuid',
|
|
48265
|
+
type: 'string',
|
|
48266
|
+
},
|
|
48267
|
+
access_method_ids: {
|
|
48268
|
+
description:
|
|
48269
|
+
'IDs of the access methods for which you want to list events.',
|
|
48270
|
+
items: { format: 'uuid', type: 'string' },
|
|
48271
|
+
maxItems: 100,
|
|
48272
|
+
type: 'array',
|
|
48273
|
+
},
|
|
48274
|
+
acs_access_group_id: {
|
|
48275
|
+
description:
|
|
48276
|
+
'ID of the ACS access group for which you want to list events.',
|
|
48277
|
+
format: 'uuid',
|
|
48278
|
+
type: 'string',
|
|
48279
|
+
},
|
|
48280
|
+
acs_credential_id: {
|
|
48281
|
+
description:
|
|
48282
|
+
'ID of the ACS credential for which you want to list events.',
|
|
48283
|
+
format: 'uuid',
|
|
48284
|
+
type: 'string',
|
|
48285
|
+
},
|
|
48286
|
+
acs_encoder_id: {
|
|
48287
|
+
description:
|
|
48288
|
+
'ID of the ACS encoder for which you want to list events.',
|
|
48289
|
+
format: 'uuid',
|
|
48290
|
+
type: 'string',
|
|
48291
|
+
},
|
|
48095
48292
|
acs_entrance_id: {
|
|
48096
48293
|
description:
|
|
48097
48294
|
'ID of the ACS entrance for which you want to list events.',
|
|
@@ -48382,6 +48579,19 @@ export default {
|
|
|
48382
48579
|
'Timestamp to indicate the beginning generation time for the events that you want to list. You must include `since` or `between`.',
|
|
48383
48580
|
type: 'string',
|
|
48384
48581
|
},
|
|
48582
|
+
space_id: {
|
|
48583
|
+
description:
|
|
48584
|
+
'ID of the space for which you want to list events.',
|
|
48585
|
+
format: 'uuid',
|
|
48586
|
+
type: 'string',
|
|
48587
|
+
},
|
|
48588
|
+
space_ids: {
|
|
48589
|
+
description:
|
|
48590
|
+
'IDs of the spaces for which you want to list events.',
|
|
48591
|
+
items: { format: 'uuid', type: 'string' },
|
|
48592
|
+
maxItems: 100,
|
|
48593
|
+
type: 'array',
|
|
48594
|
+
},
|
|
48385
48595
|
unstable_offset: {
|
|
48386
48596
|
description: 'Offset for the events that you want to list.',
|
|
48387
48597
|
format: 'float',
|