@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.d.cts
CHANGED
|
@@ -83632,6 +83632,7 @@ declare const _default: {
|
|
|
83632
83632
|
manage: {
|
|
83633
83633
|
exclude: boolean;
|
|
83634
83634
|
exclude_reservation_management: boolean;
|
|
83635
|
+
exclude_staff_management: boolean;
|
|
83635
83636
|
};
|
|
83636
83637
|
manage_devices: {
|
|
83637
83638
|
exclude: boolean;
|
|
@@ -83709,6 +83710,11 @@ declare const _default: {
|
|
|
83709
83710
|
description: string;
|
|
83710
83711
|
type: string;
|
|
83711
83712
|
};
|
|
83713
|
+
exclude_staff_management: {
|
|
83714
|
+
default: boolean;
|
|
83715
|
+
description: string;
|
|
83716
|
+
type: string;
|
|
83717
|
+
};
|
|
83712
83718
|
};
|
|
83713
83719
|
type: string;
|
|
83714
83720
|
};
|
|
@@ -94790,6 +94796,11 @@ declare const _default: {
|
|
|
94790
94796
|
description: string;
|
|
94791
94797
|
type: string;
|
|
94792
94798
|
};
|
|
94799
|
+
exclude_staff_management: {
|
|
94800
|
+
default: boolean;
|
|
94801
|
+
description: string;
|
|
94802
|
+
type: string;
|
|
94803
|
+
};
|
|
94793
94804
|
};
|
|
94794
94805
|
type: string;
|
|
94795
94806
|
};
|
|
@@ -95181,6 +95192,11 @@ declare const _default: {
|
|
|
95181
95192
|
description: string;
|
|
95182
95193
|
type: string;
|
|
95183
95194
|
};
|
|
95195
|
+
exclude_staff_management: {
|
|
95196
|
+
default: boolean;
|
|
95197
|
+
description: string;
|
|
95198
|
+
type: string;
|
|
95199
|
+
};
|
|
95184
95200
|
};
|
|
95185
95201
|
type: string;
|
|
95186
95202
|
};
|
|
@@ -97417,7 +97433,6 @@ declare const _default: {
|
|
|
97417
97433
|
type: string;
|
|
97418
97434
|
};
|
|
97419
97435
|
device_type: {
|
|
97420
|
-
enum: string[];
|
|
97421
97436
|
type: string;
|
|
97422
97437
|
};
|
|
97423
97438
|
name: {
|
|
@@ -97531,7 +97546,6 @@ declare const _default: {
|
|
|
97531
97546
|
type: string;
|
|
97532
97547
|
};
|
|
97533
97548
|
device_type: {
|
|
97534
|
-
enum: string[];
|
|
97535
97549
|
type: string;
|
|
97536
97550
|
};
|
|
97537
97551
|
name: {
|
|
@@ -140984,6 +140998,8 @@ type Routes = {
|
|
|
140984
140998
|
exclude?: boolean;
|
|
140985
140999
|
/** Indicates whether the customer can manage reservations for their properties. */
|
|
140986
141000
|
exclude_reservation_management?: boolean;
|
|
141001
|
+
/** Indicates whether the customer can manage staff for their properties. */
|
|
141002
|
+
exclude_staff_management?: boolean;
|
|
140987
141003
|
};
|
|
140988
141004
|
/** Configuration for the manage devices feature.
|
|
140989
141005
|
---
|
|
@@ -168296,6 +168312,8 @@ type Routes = {
|
|
|
168296
168312
|
exclude?: boolean;
|
|
168297
168313
|
/** Indicates whether the customer can manage reservations for their properties. */
|
|
168298
168314
|
exclude_reservation_management?: boolean;
|
|
168315
|
+
/** Indicates whether the customer can manage staff for their properties. */
|
|
168316
|
+
exclude_staff_management?: boolean;
|
|
168299
168317
|
};
|
|
168300
168318
|
/** Configuration for the manage devices feature.
|
|
168301
168319
|
---
|
|
@@ -169206,7 +169224,7 @@ type Routes = {
|
|
|
169206
169224
|
parent_partner_resource_key?: string | undefined;
|
|
169207
169225
|
devices: {
|
|
169208
169226
|
device_id: string;
|
|
169209
|
-
device_type:
|
|
169227
|
+
device_type: string;
|
|
169210
169228
|
name: string;
|
|
169211
169229
|
}[];
|
|
169212
169230
|
acs_entrances: {
|
package/dist/index.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"],
|