@seamapi/types 1.826.0 → 1.828.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 +51 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +99 -0
- package/dist/index.cjs +51 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +13 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +5 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -0
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +18 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +26 -0
- package/lib/seam/connect/models/events/access-grants.d.ts +6 -0
- package/lib/seam/connect/models/events/access-grants.js +4 -0
- package/lib/seam/connect/models/events/access-grants.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -0
- package/lib/seam/connect/openapi.js +40 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +52 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +7 -0
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +6 -0
- package/src/lib/seam/connect/models/events/access-grants.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +48 -0
- package/src/lib/seam/connect/route-types.ts +52 -0
|
@@ -232,6 +232,11 @@ const openapi = {
|
|
|
232
232
|
enum: [true],
|
|
233
233
|
type: 'boolean',
|
|
234
234
|
},
|
|
235
|
+
managed_access_code_id: {
|
|
236
|
+
description: 'ID of the managed access code that conflicts with this managed access code, when Seam can identify it.',
|
|
237
|
+
format: 'uuid',
|
|
238
|
+
type: 'string',
|
|
239
|
+
},
|
|
235
240
|
message: {
|
|
236
241
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
237
242
|
type: 'string',
|
|
@@ -1908,6 +1913,11 @@ const openapi = {
|
|
|
1908
1913
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
1909
1914
|
type: 'string',
|
|
1910
1915
|
},
|
|
1916
|
+
missing_device_ids: {
|
|
1917
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
1918
|
+
items: { format: 'uuid', type: 'string' },
|
|
1919
|
+
type: 'array',
|
|
1920
|
+
},
|
|
1911
1921
|
},
|
|
1912
1922
|
required: ['created_at', 'message', 'error_code'],
|
|
1913
1923
|
type: 'object',
|
|
@@ -16193,6 +16203,11 @@ const openapi = {
|
|
|
16193
16203
|
],
|
|
16194
16204
|
type: 'string',
|
|
16195
16205
|
},
|
|
16206
|
+
missing_device_ids: {
|
|
16207
|
+
description: 'IDs of the devices that did not receive a requested access method. Use these to identify which specific devices failed without having to fetch the Access Grant.',
|
|
16208
|
+
items: { format: 'uuid', type: 'string' },
|
|
16209
|
+
type: 'array',
|
|
16210
|
+
},
|
|
16196
16211
|
occurred_at: {
|
|
16197
16212
|
description: 'Date and time at which the event occurred.',
|
|
16198
16213
|
format: 'date-time',
|
|
@@ -23771,6 +23786,11 @@ const openapi = {
|
|
|
23771
23786
|
enum: [true],
|
|
23772
23787
|
type: 'boolean',
|
|
23773
23788
|
},
|
|
23789
|
+
managed_access_code_id: {
|
|
23790
|
+
description: 'ID of the managed access code that conflicts with this managed access code, when Seam can identify it.',
|
|
23791
|
+
format: 'uuid',
|
|
23792
|
+
type: 'string',
|
|
23793
|
+
},
|
|
23774
23794
|
message: {
|
|
23775
23795
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
23776
23796
|
type: 'string',
|
|
@@ -32324,6 +32344,11 @@ const openapi = {
|
|
|
32324
32344
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
32325
32345
|
type: 'string',
|
|
32326
32346
|
},
|
|
32347
|
+
missing_device_ids: {
|
|
32348
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
32349
|
+
items: { format: 'uuid', type: 'string' },
|
|
32350
|
+
type: 'array',
|
|
32351
|
+
},
|
|
32327
32352
|
},
|
|
32328
32353
|
required: [
|
|
32329
32354
|
'created_at',
|
|
@@ -32946,6 +32971,11 @@ const openapi = {
|
|
|
32946
32971
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
32947
32972
|
type: 'string',
|
|
32948
32973
|
},
|
|
32974
|
+
missing_device_ids: {
|
|
32975
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
32976
|
+
items: { format: 'uuid', type: 'string' },
|
|
32977
|
+
type: 'array',
|
|
32978
|
+
},
|
|
32949
32979
|
},
|
|
32950
32980
|
required: [
|
|
32951
32981
|
'created_at',
|
|
@@ -33610,6 +33640,11 @@ const openapi = {
|
|
|
33610
33640
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
33611
33641
|
type: 'string',
|
|
33612
33642
|
},
|
|
33643
|
+
missing_device_ids: {
|
|
33644
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
33645
|
+
items: { format: 'uuid', type: 'string' },
|
|
33646
|
+
type: 'array',
|
|
33647
|
+
},
|
|
33613
33648
|
},
|
|
33614
33649
|
required: [
|
|
33615
33650
|
'created_at',
|
|
@@ -34262,6 +34297,11 @@ const openapi = {
|
|
|
34262
34297
|
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
34263
34298
|
type: 'string',
|
|
34264
34299
|
},
|
|
34300
|
+
missing_device_ids: {
|
|
34301
|
+
description: 'IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure.',
|
|
34302
|
+
items: { format: 'uuid', type: 'string' },
|
|
34303
|
+
type: 'array',
|
|
34304
|
+
},
|
|
34265
34305
|
},
|
|
34266
34306
|
required: [
|
|
34267
34307
|
'created_at',
|