@seamapi/types 1.91.3 → 1.93.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 +190 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +273 -0
- package/lib/seam/connect/openapi.d.ts +222 -0
- package/lib/seam/connect/openapi.js +184 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +51 -0
- package/lib/seam/connect/unstable/models/acs/entrance.d.ts +39 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js +15 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +184 -0
- package/src/lib/seam/connect/route-types.ts +64 -0
- package/src/lib/seam/connect/unstable/models/acs/entrance.ts +17 -0
|
@@ -4646,12 +4646,40 @@ export default {
|
|
|
4646
4646
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
4647
4647
|
created_at: { format: 'date-time', type: 'string' },
|
|
4648
4648
|
display_name: { type: 'string' },
|
|
4649
|
+
visionline_metadata: {
|
|
4650
|
+
nullable: true,
|
|
4651
|
+
properties: {
|
|
4652
|
+
door_name: { type: 'string' },
|
|
4653
|
+
profiles: {
|
|
4654
|
+
items: {
|
|
4655
|
+
properties: {
|
|
4656
|
+
visionline_door_profile_id: {
|
|
4657
|
+
type: 'string',
|
|
4658
|
+
},
|
|
4659
|
+
visionline_door_profile_type: {
|
|
4660
|
+
enum: ['BLE', 'commonDoor', 'touch'],
|
|
4661
|
+
type: 'string',
|
|
4662
|
+
},
|
|
4663
|
+
},
|
|
4664
|
+
required: [
|
|
4665
|
+
'visionline_door_profile_id',
|
|
4666
|
+
'visionline_door_profile_type',
|
|
4667
|
+
],
|
|
4668
|
+
type: 'object',
|
|
4669
|
+
},
|
|
4670
|
+
type: 'array',
|
|
4671
|
+
},
|
|
4672
|
+
},
|
|
4673
|
+
required: ['door_name'],
|
|
4674
|
+
type: 'object',
|
|
4675
|
+
},
|
|
4649
4676
|
},
|
|
4650
4677
|
required: [
|
|
4651
4678
|
'acs_entrance_id',
|
|
4652
4679
|
'display_name',
|
|
4653
4680
|
'acs_system_id',
|
|
4654
4681
|
'created_at',
|
|
4682
|
+
'visionline_metadata',
|
|
4655
4683
|
],
|
|
4656
4684
|
type: 'object',
|
|
4657
4685
|
},
|
|
@@ -4753,12 +4781,40 @@ export default {
|
|
|
4753
4781
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
4754
4782
|
created_at: { format: 'date-time', type: 'string' },
|
|
4755
4783
|
display_name: { type: 'string' },
|
|
4784
|
+
visionline_metadata: {
|
|
4785
|
+
nullable: true,
|
|
4786
|
+
properties: {
|
|
4787
|
+
door_name: { type: 'string' },
|
|
4788
|
+
profiles: {
|
|
4789
|
+
items: {
|
|
4790
|
+
properties: {
|
|
4791
|
+
visionline_door_profile_id: {
|
|
4792
|
+
type: 'string',
|
|
4793
|
+
},
|
|
4794
|
+
visionline_door_profile_type: {
|
|
4795
|
+
enum: ['BLE', 'commonDoor', 'touch'],
|
|
4796
|
+
type: 'string',
|
|
4797
|
+
},
|
|
4798
|
+
},
|
|
4799
|
+
required: [
|
|
4800
|
+
'visionline_door_profile_id',
|
|
4801
|
+
'visionline_door_profile_type',
|
|
4802
|
+
],
|
|
4803
|
+
type: 'object',
|
|
4804
|
+
},
|
|
4805
|
+
type: 'array',
|
|
4806
|
+
},
|
|
4807
|
+
},
|
|
4808
|
+
required: ['door_name'],
|
|
4809
|
+
type: 'object',
|
|
4810
|
+
},
|
|
4756
4811
|
},
|
|
4757
4812
|
required: [
|
|
4758
4813
|
'acs_entrance_id',
|
|
4759
4814
|
'display_name',
|
|
4760
4815
|
'acs_system_id',
|
|
4761
4816
|
'created_at',
|
|
4817
|
+
'visionline_metadata',
|
|
4762
4818
|
],
|
|
4763
4819
|
type: 'object',
|
|
4764
4820
|
},
|
|
@@ -4788,6 +4844,106 @@ export default {
|
|
|
4788
4844
|
'x-fern-sdk-method-name': 'list',
|
|
4789
4845
|
},
|
|
4790
4846
|
},
|
|
4847
|
+
'/acs/entrances/list_credentials_with_access': {
|
|
4848
|
+
post: {
|
|
4849
|
+
operationId: 'acsEntrancesListCredentialsWithAccessPost',
|
|
4850
|
+
requestBody: {
|
|
4851
|
+
content: {
|
|
4852
|
+
'application/json': {
|
|
4853
|
+
schema: {
|
|
4854
|
+
properties: {
|
|
4855
|
+
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
4856
|
+
acs_entrance_ids: {
|
|
4857
|
+
items: { format: 'uuid', type: 'string' },
|
|
4858
|
+
type: 'array',
|
|
4859
|
+
},
|
|
4860
|
+
include_if: {
|
|
4861
|
+
items: {
|
|
4862
|
+
enum: ['visionline_metadata.is_valid'],
|
|
4863
|
+
type: 'string',
|
|
4864
|
+
},
|
|
4865
|
+
type: 'array',
|
|
4866
|
+
},
|
|
4867
|
+
},
|
|
4868
|
+
type: 'object',
|
|
4869
|
+
},
|
|
4870
|
+
},
|
|
4871
|
+
},
|
|
4872
|
+
},
|
|
4873
|
+
responses: {
|
|
4874
|
+
200: {
|
|
4875
|
+
content: {
|
|
4876
|
+
'application/json': {
|
|
4877
|
+
schema: {
|
|
4878
|
+
properties: {
|
|
4879
|
+
acs_credentials: {
|
|
4880
|
+
items: {
|
|
4881
|
+
properties: {
|
|
4882
|
+
access_method: {
|
|
4883
|
+
enum: ['code', 'card', 'mobile_key'],
|
|
4884
|
+
type: 'string',
|
|
4885
|
+
},
|
|
4886
|
+
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
4887
|
+
acs_credential_pool_id: {
|
|
4888
|
+
format: 'uuid',
|
|
4889
|
+
type: 'string',
|
|
4890
|
+
},
|
|
4891
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
4892
|
+
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4893
|
+
code: { nullable: true, type: 'string' },
|
|
4894
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
4895
|
+
display_name: { minLength: 1, type: 'string' },
|
|
4896
|
+
ends_at: { type: 'string' },
|
|
4897
|
+
external_type: {
|
|
4898
|
+
enum: [
|
|
4899
|
+
'pti_card',
|
|
4900
|
+
'brivo_credential',
|
|
4901
|
+
'hid_credential',
|
|
4902
|
+
'visionline_card',
|
|
4903
|
+
],
|
|
4904
|
+
type: 'string',
|
|
4905
|
+
},
|
|
4906
|
+
external_type_display_name: { type: 'string' },
|
|
4907
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
4908
|
+
starts_at: { type: 'string' },
|
|
4909
|
+
workspace_id: { format: 'uuid', type: 'string' },
|
|
4910
|
+
},
|
|
4911
|
+
required: [
|
|
4912
|
+
'acs_credential_id',
|
|
4913
|
+
'acs_system_id',
|
|
4914
|
+
'display_name',
|
|
4915
|
+
'access_method',
|
|
4916
|
+
'created_at',
|
|
4917
|
+
'workspace_id',
|
|
4918
|
+
],
|
|
4919
|
+
type: 'object',
|
|
4920
|
+
},
|
|
4921
|
+
type: 'array',
|
|
4922
|
+
},
|
|
4923
|
+
ok: { type: 'boolean' },
|
|
4924
|
+
},
|
|
4925
|
+
required: ['acs_credentials', 'ok'],
|
|
4926
|
+
type: 'object',
|
|
4927
|
+
},
|
|
4928
|
+
},
|
|
4929
|
+
},
|
|
4930
|
+
description: 'OK',
|
|
4931
|
+
},
|
|
4932
|
+
400: { description: 'Bad Request' },
|
|
4933
|
+
401: { description: 'Unauthorized' },
|
|
4934
|
+
},
|
|
4935
|
+
security: [
|
|
4936
|
+
{ client_session: [] },
|
|
4937
|
+
{ pat_with_workspace: [] },
|
|
4938
|
+
{ console_session: [] },
|
|
4939
|
+
{ api_key: [] },
|
|
4940
|
+
],
|
|
4941
|
+
summary: '/acs/entrances/list_credentials_with_access',
|
|
4942
|
+
tags: ['/acs'],
|
|
4943
|
+
'x-fern-sdk-group-name': ['acs', 'entrances'],
|
|
4944
|
+
'x-fern-sdk-method-name': 'list_credentials_with_access',
|
|
4945
|
+
},
|
|
4946
|
+
},
|
|
4791
4947
|
'/acs/systems/get': {
|
|
4792
4948
|
post: {
|
|
4793
4949
|
operationId: 'acsSystemsGetPost',
|
|
@@ -5181,12 +5337,40 @@ export default {
|
|
|
5181
5337
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5182
5338
|
created_at: { format: 'date-time', type: 'string' },
|
|
5183
5339
|
display_name: { type: 'string' },
|
|
5340
|
+
visionline_metadata: {
|
|
5341
|
+
nullable: true,
|
|
5342
|
+
properties: {
|
|
5343
|
+
door_name: { type: 'string' },
|
|
5344
|
+
profiles: {
|
|
5345
|
+
items: {
|
|
5346
|
+
properties: {
|
|
5347
|
+
visionline_door_profile_id: {
|
|
5348
|
+
type: 'string',
|
|
5349
|
+
},
|
|
5350
|
+
visionline_door_profile_type: {
|
|
5351
|
+
enum: ['BLE', 'commonDoor', 'touch'],
|
|
5352
|
+
type: 'string',
|
|
5353
|
+
},
|
|
5354
|
+
},
|
|
5355
|
+
required: [
|
|
5356
|
+
'visionline_door_profile_id',
|
|
5357
|
+
'visionline_door_profile_type',
|
|
5358
|
+
],
|
|
5359
|
+
type: 'object',
|
|
5360
|
+
},
|
|
5361
|
+
type: 'array',
|
|
5362
|
+
},
|
|
5363
|
+
},
|
|
5364
|
+
required: ['door_name'],
|
|
5365
|
+
type: 'object',
|
|
5366
|
+
},
|
|
5184
5367
|
},
|
|
5185
5368
|
required: [
|
|
5186
5369
|
'acs_entrance_id',
|
|
5187
5370
|
'display_name',
|
|
5188
5371
|
'acs_system_id',
|
|
5189
5372
|
'created_at',
|
|
5373
|
+
'visionline_metadata',
|
|
5190
5374
|
],
|
|
5191
5375
|
type: 'object',
|
|
5192
5376
|
},
|