@seamapi/types 1.91.3 → 1.92.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 +90 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +99 -0
- package/lib/seam/connect/openapi.d.ts +78 -0
- package/lib/seam/connect/openapi.js +84 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -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 +84 -0
- package/src/lib/seam/connect/route-types.ts +27 -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
|
},
|
|
@@ -5227,13 +5283,41 @@ var openapi_default = {
|
|
|
5227
5283
|
acs_entrance_id: { format: "uuid", type: "string" },
|
|
5228
5284
|
acs_system_id: { format: "uuid", type: "string" },
|
|
5229
5285
|
created_at: { format: "date-time", type: "string" },
|
|
5230
|
-
display_name: { type: "string" }
|
|
5286
|
+
display_name: { type: "string" },
|
|
5287
|
+
visionline_metadata: {
|
|
5288
|
+
nullable: true,
|
|
5289
|
+
properties: {
|
|
5290
|
+
door_name: { type: "string" },
|
|
5291
|
+
profiles: {
|
|
5292
|
+
items: {
|
|
5293
|
+
properties: {
|
|
5294
|
+
visionline_door_profile_id: {
|
|
5295
|
+
type: "string"
|
|
5296
|
+
},
|
|
5297
|
+
visionline_door_profile_type: {
|
|
5298
|
+
enum: ["BLE", "commonDoor", "touch"],
|
|
5299
|
+
type: "string"
|
|
5300
|
+
}
|
|
5301
|
+
},
|
|
5302
|
+
required: [
|
|
5303
|
+
"visionline_door_profile_id",
|
|
5304
|
+
"visionline_door_profile_type"
|
|
5305
|
+
],
|
|
5306
|
+
type: "object"
|
|
5307
|
+
},
|
|
5308
|
+
type: "array"
|
|
5309
|
+
}
|
|
5310
|
+
},
|
|
5311
|
+
required: ["door_name"],
|
|
5312
|
+
type: "object"
|
|
5313
|
+
}
|
|
5231
5314
|
},
|
|
5232
5315
|
required: [
|
|
5233
5316
|
"acs_entrance_id",
|
|
5234
5317
|
"display_name",
|
|
5235
5318
|
"acs_system_id",
|
|
5236
|
-
"created_at"
|
|
5319
|
+
"created_at",
|
|
5320
|
+
"visionline_metadata"
|
|
5237
5321
|
],
|
|
5238
5322
|
type: "object"
|
|
5239
5323
|
},
|