@seamapi/types 1.615.0 → 1.617.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 +19 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +21 -3
- package/dist/index.cjs +19 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +14 -0
- package/lib/seam/connect/models/customer/customer-portal.js +9 -1
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -2
- package/lib/seam/connect/openapi.js +18 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -1
- package/lib/seam/devicedb/route-specs.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +11 -1
- package/src/lib/seam/connect/openapi.ts +21 -8
- package/src/lib/seam/connect/route-types.ts +5 -1
package/dist/connect.cjs
CHANGED
|
@@ -43246,7 +43246,8 @@ var openapi_default = {
|
|
|
43246
43246
|
connect: { exclude: false },
|
|
43247
43247
|
manage: {
|
|
43248
43248
|
exclude: false,
|
|
43249
|
-
exclude_reservation_management: false
|
|
43249
|
+
exclude_reservation_management: false,
|
|
43250
|
+
exclude_staff_management: false
|
|
43250
43251
|
},
|
|
43251
43252
|
manage_devices: { exclude: false },
|
|
43252
43253
|
organize: { exclude: false }
|
|
@@ -43315,6 +43316,11 @@ var openapi_default = {
|
|
|
43315
43316
|
default: false,
|
|
43316
43317
|
description: "Indicates whether the customer can manage reservations for their properties.",
|
|
43317
43318
|
type: "boolean"
|
|
43319
|
+
},
|
|
43320
|
+
exclude_staff_management: {
|
|
43321
|
+
default: false,
|
|
43322
|
+
description: "Indicates whether the customer can manage staff for their properties.",
|
|
43323
|
+
type: "boolean"
|
|
43318
43324
|
}
|
|
43319
43325
|
},
|
|
43320
43326
|
type: "object"
|
|
@@ -54318,6 +54324,11 @@ var openapi_default = {
|
|
|
54318
54324
|
default: false,
|
|
54319
54325
|
description: "Indicates whether the customer can manage reservations for their properties.",
|
|
54320
54326
|
type: "boolean"
|
|
54327
|
+
},
|
|
54328
|
+
exclude_staff_management: {
|
|
54329
|
+
default: false,
|
|
54330
|
+
description: "Indicates whether the customer can manage staff for their properties.",
|
|
54331
|
+
type: "boolean"
|
|
54321
54332
|
}
|
|
54322
54333
|
},
|
|
54323
54334
|
type: "object"
|
|
@@ -54599,6 +54610,11 @@ var openapi_default = {
|
|
|
54599
54610
|
default: false,
|
|
54600
54611
|
description: "Indicates whether the customer can manage reservations for their properties.",
|
|
54601
54612
|
type: "boolean"
|
|
54613
|
+
},
|
|
54614
|
+
exclude_staff_management: {
|
|
54615
|
+
default: false,
|
|
54616
|
+
description: "Indicates whether the customer can manage staff for their properties.",
|
|
54617
|
+
type: "boolean"
|
|
54602
54618
|
}
|
|
54603
54619
|
},
|
|
54604
54620
|
type: "object"
|
|
@@ -56400,10 +56416,7 @@ var openapi_default = {
|
|
|
56400
56416
|
items: {
|
|
56401
56417
|
properties: {
|
|
56402
56418
|
device_id: { format: "uuid", type: "string" },
|
|
56403
|
-
device_type: {
|
|
56404
|
-
enum: ["lock", "thermostat", "sensor"],
|
|
56405
|
-
type: "string"
|
|
56406
|
-
},
|
|
56419
|
+
device_type: { type: "string" },
|
|
56407
56420
|
name: { type: "string" }
|
|
56408
56421
|
},
|
|
56409
56422
|
required: ["device_id", "device_type", "name"],
|
|
@@ -56500,10 +56513,7 @@ var openapi_default = {
|
|
|
56500
56513
|
items: {
|
|
56501
56514
|
properties: {
|
|
56502
56515
|
device_id: { format: "uuid", type: "string" },
|
|
56503
|
-
device_type: {
|
|
56504
|
-
enum: ["lock", "thermostat", "sensor"],
|
|
56505
|
-
type: "string"
|
|
56506
|
-
},
|
|
56516
|
+
device_type: { type: "string" },
|
|
56507
56517
|
name: { type: "string" }
|
|
56508
56518
|
},
|
|
56509
56519
|
required: ["device_id", "device_type", "name"],
|