@seamapi/types 1.121.0 → 1.122.1
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 +6 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -5
- package/lib/seam/connect/openapi.d.ts +6 -4
- package/lib/seam/connect/openapi.js +5 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -1
- package/lib/seam/connect/unstable/models/acs/system.d.ts +6 -0
- package/lib/seam/connect/unstable/models/acs/system.js +2 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +9 -9
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -8
- package/src/lib/seam/connect/route-types.ts +6 -1
- package/src/lib/seam/connect/unstable/models/acs/system.ts +2 -0
package/dist/connect.cjs
CHANGED
|
@@ -230,6 +230,8 @@ var openapi_default = {
|
|
|
230
230
|
type: "string"
|
|
231
231
|
},
|
|
232
232
|
external_type_display_name: { type: "string" },
|
|
233
|
+
image_alt_text: { type: "string" },
|
|
234
|
+
image_url: { type: "string" },
|
|
233
235
|
name: { type: "string" },
|
|
234
236
|
system_type: {
|
|
235
237
|
description: "deprecated: use external_type",
|
|
@@ -259,7 +261,9 @@ var openapi_default = {
|
|
|
259
261
|
"name",
|
|
260
262
|
"created_at",
|
|
261
263
|
"workspace_id",
|
|
262
|
-
"connected_account_ids"
|
|
264
|
+
"connected_account_ids",
|
|
265
|
+
"image_url",
|
|
266
|
+
"image_alt_text"
|
|
263
267
|
],
|
|
264
268
|
type: "object"
|
|
265
269
|
},
|
|
@@ -9762,10 +9766,6 @@ var openapi_default = {
|
|
|
9762
9766
|
"application/json": {
|
|
9763
9767
|
schema: {
|
|
9764
9768
|
properties: {
|
|
9765
|
-
assa_abloy_credential_service_acs_system_id: {
|
|
9766
|
-
format: "uuid",
|
|
9767
|
-
type: "string"
|
|
9768
|
-
},
|
|
9769
9769
|
assa_abloy_metadata: {
|
|
9770
9770
|
default: {},
|
|
9771
9771
|
properties: {
|
|
@@ -9801,10 +9801,7 @@ var openapi_default = {
|
|
|
9801
9801
|
},
|
|
9802
9802
|
user_identity_id: { format: "uuid", type: "string" }
|
|
9803
9803
|
},
|
|
9804
|
-
required: [
|
|
9805
|
-
"assa_abloy_credential_service_acs_system_id",
|
|
9806
|
-
"user_identity_id"
|
|
9807
|
-
],
|
|
9804
|
+
required: ["user_identity_id"],
|
|
9808
9805
|
type: "object"
|
|
9809
9806
|
}
|
|
9810
9807
|
}
|