@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
package/dist/connect.cjs
CHANGED
|
@@ -4692,13 +4692,41 @@ var openapi_default = {
|
|
|
4692
4692
|
acs_entrance_id: { format: "uuid", type: "string" },
|
|
4693
4693
|
acs_system_id: { format: "uuid", type: "string" },
|
|
4694
4694
|
created_at: { format: "date-time", type: "string" },
|
|
4695
|
-
display_name: { type: "string" }
|
|
4695
|
+
display_name: { type: "string" },
|
|
4696
|
+
visionline_metadata: {
|
|
4697
|
+
nullable: true,
|
|
4698
|
+
properties: {
|
|
4699
|
+
door_name: { type: "string" },
|
|
4700
|
+
profiles: {
|
|
4701
|
+
items: {
|
|
4702
|
+
properties: {
|
|
4703
|
+
visionline_door_profile_id: {
|
|
4704
|
+
type: "string"
|
|
4705
|
+
},
|
|
4706
|
+
visionline_door_profile_type: {
|
|
4707
|
+
enum: ["BLE", "commonDoor", "touch"],
|
|
4708
|
+
type: "string"
|
|
4709
|
+
}
|
|
4710
|
+
},
|
|
4711
|
+
required: [
|
|
4712
|
+
"visionline_door_profile_id",
|
|
4713
|
+
"visionline_door_profile_type"
|
|
4714
|
+
],
|
|
4715
|
+
type: "object"
|
|
4716
|
+
},
|
|
4717
|
+
type: "array"
|
|
4718
|
+
}
|
|
4719
|
+
},
|
|
4720
|
+
required: ["door_name"],
|
|
4721
|
+
type: "object"
|
|
4722
|
+
}
|
|
4696
4723
|
},
|
|
4697
4724
|
required: [
|
|
4698
4725
|
"acs_entrance_id",
|
|
4699
4726
|
"display_name",
|
|
4700
4727
|
"acs_system_id",
|
|
4701
|
-
"created_at"
|
|
4728
|
+
"created_at",
|
|
4729
|
+
"visionline_metadata"
|
|
4702
4730
|
],
|
|
4703
4731
|
type: "object"
|
|
4704
4732
|
},
|
|
@@ -4799,13 +4827,41 @@ var openapi_default = {
|
|
|
4799
4827
|
acs_entrance_id: { format: "uuid", type: "string" },
|
|
4800
4828
|
acs_system_id: { format: "uuid", type: "string" },
|
|
4801
4829
|
created_at: { format: "date-time", type: "string" },
|
|
4802
|
-
display_name: { type: "string" }
|
|
4830
|
+
display_name: { type: "string" },
|
|
4831
|
+
visionline_metadata: {
|
|
4832
|
+
nullable: true,
|
|
4833
|
+
properties: {
|
|
4834
|
+
door_name: { type: "string" },
|
|
4835
|
+
profiles: {
|
|
4836
|
+
items: {
|
|
4837
|
+
properties: {
|
|
4838
|
+
visionline_door_profile_id: {
|
|
4839
|
+
type: "string"
|
|
4840
|
+
},
|
|
4841
|
+
visionline_door_profile_type: {
|
|
4842
|
+
enum: ["BLE", "commonDoor", "touch"],
|
|
4843
|
+
type: "string"
|
|
4844
|
+
}
|
|
4845
|
+
},
|
|
4846
|
+
required: [
|
|
4847
|
+
"visionline_door_profile_id",
|
|
4848
|
+
"visionline_door_profile_type"
|
|
4849
|
+
],
|
|
4850
|
+
type: "object"
|
|
4851
|
+
},
|
|
4852
|
+
type: "array"
|
|
4853
|
+
}
|
|
4854
|
+
},
|
|
4855
|
+
required: ["door_name"],
|
|
4856
|
+
type: "object"
|
|
4857
|
+
}
|
|
4803
4858
|
},
|
|
4804
4859
|
required: [
|
|
4805
4860
|
"acs_entrance_id",
|
|
4806
4861
|
"display_name",
|
|
4807
4862
|
"acs_system_id",
|
|
4808
|
-
"created_at"
|
|
4863
|
+
"created_at",
|
|
4864
|
+
"visionline_metadata"
|
|
4809
4865
|
],
|
|
4810
4866
|
type: "object"
|
|
4811
4867
|
},
|
|
@@ -4835,6 +4891,106 @@ var openapi_default = {
|
|
|
4835
4891
|
"x-fern-sdk-method-name": "list"
|
|
4836
4892
|
}
|
|
4837
4893
|
},
|
|
4894
|
+
"/acs/entrances/list_credentials_with_access": {
|
|
4895
|
+
post: {
|
|
4896
|
+
operationId: "acsEntrancesListCredentialsWithAccessPost",
|
|
4897
|
+
requestBody: {
|
|
4898
|
+
content: {
|
|
4899
|
+
"application/json": {
|
|
4900
|
+
schema: {
|
|
4901
|
+
properties: {
|
|
4902
|
+
acs_entrance_id: { format: "uuid", type: "string" },
|
|
4903
|
+
acs_entrance_ids: {
|
|
4904
|
+
items: { format: "uuid", type: "string" },
|
|
4905
|
+
type: "array"
|
|
4906
|
+
},
|
|
4907
|
+
include_if: {
|
|
4908
|
+
items: {
|
|
4909
|
+
enum: ["visionline_metadata.is_valid"],
|
|
4910
|
+
type: "string"
|
|
4911
|
+
},
|
|
4912
|
+
type: "array"
|
|
4913
|
+
}
|
|
4914
|
+
},
|
|
4915
|
+
type: "object"
|
|
4916
|
+
}
|
|
4917
|
+
}
|
|
4918
|
+
}
|
|
4919
|
+
},
|
|
4920
|
+
responses: {
|
|
4921
|
+
200: {
|
|
4922
|
+
content: {
|
|
4923
|
+
"application/json": {
|
|
4924
|
+
schema: {
|
|
4925
|
+
properties: {
|
|
4926
|
+
acs_credentials: {
|
|
4927
|
+
items: {
|
|
4928
|
+
properties: {
|
|
4929
|
+
access_method: {
|
|
4930
|
+
enum: ["code", "card", "mobile_key"],
|
|
4931
|
+
type: "string"
|
|
4932
|
+
},
|
|
4933
|
+
acs_credential_id: { format: "uuid", type: "string" },
|
|
4934
|
+
acs_credential_pool_id: {
|
|
4935
|
+
format: "uuid",
|
|
4936
|
+
type: "string"
|
|
4937
|
+
},
|
|
4938
|
+
acs_system_id: { format: "uuid", type: "string" },
|
|
4939
|
+
acs_user_id: { format: "uuid", type: "string" },
|
|
4940
|
+
code: { nullable: true, type: "string" },
|
|
4941
|
+
created_at: { format: "date-time", type: "string" },
|
|
4942
|
+
display_name: { minLength: 1, type: "string" },
|
|
4943
|
+
ends_at: { type: "string" },
|
|
4944
|
+
external_type: {
|
|
4945
|
+
enum: [
|
|
4946
|
+
"pti_card",
|
|
4947
|
+
"brivo_credential",
|
|
4948
|
+
"hid_credential",
|
|
4949
|
+
"visionline_card"
|
|
4950
|
+
],
|
|
4951
|
+
type: "string"
|
|
4952
|
+
},
|
|
4953
|
+
external_type_display_name: { type: "string" },
|
|
4954
|
+
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4955
|
+
starts_at: { type: "string" },
|
|
4956
|
+
workspace_id: { format: "uuid", type: "string" }
|
|
4957
|
+
},
|
|
4958
|
+
required: [
|
|
4959
|
+
"acs_credential_id",
|
|
4960
|
+
"acs_system_id",
|
|
4961
|
+
"display_name",
|
|
4962
|
+
"access_method",
|
|
4963
|
+
"created_at",
|
|
4964
|
+
"workspace_id"
|
|
4965
|
+
],
|
|
4966
|
+
type: "object"
|
|
4967
|
+
},
|
|
4968
|
+
type: "array"
|
|
4969
|
+
},
|
|
4970
|
+
ok: { type: "boolean" }
|
|
4971
|
+
},
|
|
4972
|
+
required: ["acs_credentials", "ok"],
|
|
4973
|
+
type: "object"
|
|
4974
|
+
}
|
|
4975
|
+
}
|
|
4976
|
+
},
|
|
4977
|
+
description: "OK"
|
|
4978
|
+
},
|
|
4979
|
+
400: { description: "Bad Request" },
|
|
4980
|
+
401: { description: "Unauthorized" }
|
|
4981
|
+
},
|
|
4982
|
+
security: [
|
|
4983
|
+
{ client_session: [] },
|
|
4984
|
+
{ pat_with_workspace: [] },
|
|
4985
|
+
{ console_session: [] },
|
|
4986
|
+
{ api_key: [] }
|
|
4987
|
+
],
|
|
4988
|
+
summary: "/acs/entrances/list_credentials_with_access",
|
|
4989
|
+
tags: ["/acs"],
|
|
4990
|
+
"x-fern-sdk-group-name": ["acs", "entrances"],
|
|
4991
|
+
"x-fern-sdk-method-name": "list_credentials_with_access"
|
|
4992
|
+
}
|
|
4993
|
+
},
|
|
4838
4994
|
"/acs/systems/get": {
|
|
4839
4995
|
post: {
|
|
4840
4996
|
operationId: "acsSystemsGetPost",
|
|
@@ -5227,13 +5383,41 @@ var openapi_default = {
|
|
|
5227
5383
|
acs_entrance_id: { format: "uuid", type: "string" },
|
|
5228
5384
|
acs_system_id: { format: "uuid", type: "string" },
|
|
5229
5385
|
created_at: { format: "date-time", type: "string" },
|
|
5230
|
-
display_name: { type: "string" }
|
|
5386
|
+
display_name: { type: "string" },
|
|
5387
|
+
visionline_metadata: {
|
|
5388
|
+
nullable: true,
|
|
5389
|
+
properties: {
|
|
5390
|
+
door_name: { type: "string" },
|
|
5391
|
+
profiles: {
|
|
5392
|
+
items: {
|
|
5393
|
+
properties: {
|
|
5394
|
+
visionline_door_profile_id: {
|
|
5395
|
+
type: "string"
|
|
5396
|
+
},
|
|
5397
|
+
visionline_door_profile_type: {
|
|
5398
|
+
enum: ["BLE", "commonDoor", "touch"],
|
|
5399
|
+
type: "string"
|
|
5400
|
+
}
|
|
5401
|
+
},
|
|
5402
|
+
required: [
|
|
5403
|
+
"visionline_door_profile_id",
|
|
5404
|
+
"visionline_door_profile_type"
|
|
5405
|
+
],
|
|
5406
|
+
type: "object"
|
|
5407
|
+
},
|
|
5408
|
+
type: "array"
|
|
5409
|
+
}
|
|
5410
|
+
},
|
|
5411
|
+
required: ["door_name"],
|
|
5412
|
+
type: "object"
|
|
5413
|
+
}
|
|
5231
5414
|
},
|
|
5232
5415
|
required: [
|
|
5233
5416
|
"acs_entrance_id",
|
|
5234
5417
|
"display_name",
|
|
5235
5418
|
"acs_system_id",
|
|
5236
|
-
"created_at"
|
|
5419
|
+
"created_at",
|
|
5420
|
+
"visionline_metadata"
|
|
5237
5421
|
],
|
|
5238
5422
|
type: "object"
|
|
5239
5423
|
},
|