@seamapi/types 1.256.0 → 1.258.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 +89 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +609 -0
- package/lib/seam/connect/models/acs/acs-credential.d.ts +10 -0
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js +1 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +134 -0
- package/lib/seam/connect/openapi.js +88 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +465 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/visionline.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +88 -0
- package/src/lib/seam/connect/route-types.ts +639 -0
|
@@ -286,6 +286,7 @@ export default {
|
|
|
286
286
|
starts_at: { type: 'string' },
|
|
287
287
|
visionline_metadata: {
|
|
288
288
|
properties: {
|
|
289
|
+
auto_join: { type: 'boolean' },
|
|
289
290
|
card_function_type: { enum: ['guest', 'staff'], type: 'string' },
|
|
290
291
|
card_id: { type: 'string' },
|
|
291
292
|
common_acs_entrance_ids: {
|
|
@@ -6650,6 +6651,7 @@ export default {
|
|
|
6650
6651
|
format: 'uuid',
|
|
6651
6652
|
type: 'string',
|
|
6652
6653
|
},
|
|
6654
|
+
auto_join: { type: 'boolean' },
|
|
6653
6655
|
card_format: {
|
|
6654
6656
|
enum: ['TLCode', 'rfid48'],
|
|
6655
6657
|
type: 'string',
|
|
@@ -7122,6 +7124,7 @@ export default {
|
|
|
7122
7124
|
starts_at: { type: 'string' },
|
|
7123
7125
|
visionline_metadata: {
|
|
7124
7126
|
properties: {
|
|
7127
|
+
auto_join: { type: 'boolean' },
|
|
7125
7128
|
card_function_type: {
|
|
7126
7129
|
enum: ['guest', 'staff'],
|
|
7127
7130
|
type: 'string',
|
|
@@ -7306,6 +7309,7 @@ export default {
|
|
|
7306
7309
|
starts_at: { type: 'string' },
|
|
7307
7310
|
visionline_metadata: {
|
|
7308
7311
|
properties: {
|
|
7312
|
+
auto_join: { type: 'boolean' },
|
|
7309
7313
|
card_function_type: {
|
|
7310
7314
|
enum: ['guest', 'staff'],
|
|
7311
7315
|
type: 'string',
|
|
@@ -7540,6 +7544,90 @@ export default {
|
|
|
7540
7544
|
'x-undocumented': 'Encoding a card is currently unimplemented.',
|
|
7541
7545
|
},
|
|
7542
7546
|
},
|
|
7547
|
+
'/acs/encoders/list': {
|
|
7548
|
+
post: {
|
|
7549
|
+
operationId: 'acsEncodersListPost',
|
|
7550
|
+
requestBody: {
|
|
7551
|
+
content: {
|
|
7552
|
+
'application/json': {
|
|
7553
|
+
schema: {
|
|
7554
|
+
oneOf: [
|
|
7555
|
+
{
|
|
7556
|
+
properties: {
|
|
7557
|
+
acs_system_ids: {
|
|
7558
|
+
items: { format: 'uuid', type: 'string' },
|
|
7559
|
+
type: 'array',
|
|
7560
|
+
},
|
|
7561
|
+
device_ids: {
|
|
7562
|
+
items: { format: 'uuid', type: 'string' },
|
|
7563
|
+
type: 'array',
|
|
7564
|
+
},
|
|
7565
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
7566
|
+
},
|
|
7567
|
+
required: ['acs_system_ids', 'device_ids'],
|
|
7568
|
+
type: 'object',
|
|
7569
|
+
},
|
|
7570
|
+
{
|
|
7571
|
+
properties: {
|
|
7572
|
+
device_ids: {
|
|
7573
|
+
items: { format: 'uuid', type: 'string' },
|
|
7574
|
+
type: 'array',
|
|
7575
|
+
},
|
|
7576
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
7577
|
+
},
|
|
7578
|
+
required: ['device_ids'],
|
|
7579
|
+
type: 'object',
|
|
7580
|
+
},
|
|
7581
|
+
{
|
|
7582
|
+
properties: {
|
|
7583
|
+
acs_system_ids: {
|
|
7584
|
+
items: { format: 'uuid', type: 'string' },
|
|
7585
|
+
type: 'array',
|
|
7586
|
+
},
|
|
7587
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
7588
|
+
},
|
|
7589
|
+
required: ['acs_system_ids'],
|
|
7590
|
+
type: 'object',
|
|
7591
|
+
},
|
|
7592
|
+
],
|
|
7593
|
+
},
|
|
7594
|
+
},
|
|
7595
|
+
},
|
|
7596
|
+
},
|
|
7597
|
+
responses: {
|
|
7598
|
+
200: {
|
|
7599
|
+
content: {
|
|
7600
|
+
'application/json': {
|
|
7601
|
+
schema: {
|
|
7602
|
+
properties: {
|
|
7603
|
+
devices: {
|
|
7604
|
+
items: { $ref: '#/components/schemas/device' },
|
|
7605
|
+
type: 'array',
|
|
7606
|
+
},
|
|
7607
|
+
ok: { type: 'boolean' },
|
|
7608
|
+
},
|
|
7609
|
+
required: ['devices', 'ok'],
|
|
7610
|
+
type: 'object',
|
|
7611
|
+
},
|
|
7612
|
+
},
|
|
7613
|
+
},
|
|
7614
|
+
description: 'OK',
|
|
7615
|
+
},
|
|
7616
|
+
400: { description: 'Bad Request' },
|
|
7617
|
+
401: { description: 'Unauthorized' },
|
|
7618
|
+
},
|
|
7619
|
+
security: [
|
|
7620
|
+
{ pat_with_workspace: [] },
|
|
7621
|
+
{ console_session: [] },
|
|
7622
|
+
{ api_key: [] },
|
|
7623
|
+
],
|
|
7624
|
+
summary: '/acs/encoders/list',
|
|
7625
|
+
tags: ['/acs'],
|
|
7626
|
+
'x-fern-sdk-group-name': ['acs', 'encoders'],
|
|
7627
|
+
'x-fern-sdk-method-name': 'list',
|
|
7628
|
+
'x-fern-sdk-return-value': 'devices',
|
|
7629
|
+
},
|
|
7630
|
+
},
|
|
7543
7631
|
'/acs/encoders/read_card': {
|
|
7544
7632
|
post: {
|
|
7545
7633
|
operationId: 'acsEncodersReadCardPost',
|