@seamapi/types 1.22.0 → 1.23.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 +17 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +13 -6
- package/dist/devicedb.cjs +1 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +6 -6
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +17 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -6
- package/lib/seam/connect/unstable/models/acs/access_group.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/access_group.js +6 -1
- package/lib/seam/connect/unstable/models/acs/access_group.js.map +1 -1
- package/lib/seam/connect/unstable/models/device-metadata.d.ts +5 -0
- package/lib/seam/connect/unstable/models/device-metadata.js +1 -0
- package/lib/seam/connect/unstable/models/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/managed-device.d.ts +9 -0
- package/lib/seam/devicedb/public-models/device-model-v1.d.ts +6 -6
- package/lib/seam/devicedb/public-models/device-model-v1.js +1 -1
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +17 -2
- package/src/lib/seam/connect/route-types.ts +34 -6
- package/src/lib/seam/connect/unstable/models/acs/access_group.ts +6 -1
- package/src/lib/seam/connect/unstable/models/device-metadata.ts +1 -0
- package/src/lib/seam/devicedb/public-models/device-model-v1.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -80,7 +80,12 @@ var openapi_default = {
|
|
|
80
80
|
properties: {
|
|
81
81
|
access_group_type: {
|
|
82
82
|
description: "deprecated: use external_type",
|
|
83
|
-
enum: [
|
|
83
|
+
enum: [
|
|
84
|
+
"pti_unit",
|
|
85
|
+
"pti_access_level",
|
|
86
|
+
"salto_access_group",
|
|
87
|
+
"brivo_group"
|
|
88
|
+
],
|
|
84
89
|
type: "string"
|
|
85
90
|
},
|
|
86
91
|
access_group_type_display_name: {
|
|
@@ -90,7 +95,15 @@ var openapi_default = {
|
|
|
90
95
|
acs_access_group_id: { format: "uuid", type: "string" },
|
|
91
96
|
acs_system_id: { format: "uuid", type: "string" },
|
|
92
97
|
created_at: { format: "date-time", type: "string" },
|
|
93
|
-
external_type: {
|
|
98
|
+
external_type: {
|
|
99
|
+
enum: [
|
|
100
|
+
"pti_unit",
|
|
101
|
+
"pti_access_level",
|
|
102
|
+
"salto_access_group",
|
|
103
|
+
"brivo_group"
|
|
104
|
+
],
|
|
105
|
+
type: "string"
|
|
106
|
+
},
|
|
94
107
|
external_type_display_name: { type: "string" },
|
|
95
108
|
name: { type: "string" },
|
|
96
109
|
workspace_id: { format: "uuid", type: "string" }
|
|
@@ -794,11 +807,13 @@ var openapi_default = {
|
|
|
794
807
|
device_info_model: { type: "string" },
|
|
795
808
|
device_name: { type: "string" },
|
|
796
809
|
product_model: { type: "string" },
|
|
810
|
+
product_name: { type: "string" },
|
|
797
811
|
product_type: { type: "string" }
|
|
798
812
|
},
|
|
799
813
|
required: [
|
|
800
814
|
"device_id",
|
|
801
815
|
"device_name",
|
|
816
|
+
"product_name",
|
|
802
817
|
"product_type",
|
|
803
818
|
"product_model",
|
|
804
819
|
"device_info_model"
|