@seamapi/types 1.618.0 → 1.620.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 +478 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +657 -15
- package/dist/index.cjs +478 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +50 -5
- package/lib/seam/connect/models/customer/user-identity-resources.d.ts +60 -6
- package/lib/seam/connect/models/customer/user-identity-resources.js +37 -0
- package/lib/seam/connect/models/customer/user-identity-resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +535 -2
- package/lib/seam/connect/openapi.js +450 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +92 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/user-identity-resources.ts +55 -0
- package/src/lib/seam/connect/openapi.ts +489 -9
- package/src/lib/seam/connect/route-types.ts +114 -10
package/dist/index.cjs
CHANGED
|
@@ -5752,7 +5752,34 @@ var user_resource = base_user_identity_resource.extend({
|
|
|
5752
5752
|
});
|
|
5753
5753
|
var staff_member_resource = base_user_identity_resource.extend({
|
|
5754
5754
|
staff_member_key: zod.z.string().describe("Your unique identifier for the staff."),
|
|
5755
|
-
|
|
5755
|
+
space_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5756
|
+
"List of unique identifiers for the spaces the staff member is associated with."
|
|
5757
|
+
),
|
|
5758
|
+
property_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5759
|
+
"List of unique identifiers for the properties the staff member is associated with."
|
|
5760
|
+
),
|
|
5761
|
+
room_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5762
|
+
"List of unique identifiers for the rooms the staff member is associated with."
|
|
5763
|
+
),
|
|
5764
|
+
common_area_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5765
|
+
"List of unique identifiers for the common areas the staff member is associated with."
|
|
5766
|
+
),
|
|
5767
|
+
unit_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5768
|
+
"List of unique identifiers for the units the staff member is associated with."
|
|
5769
|
+
),
|
|
5770
|
+
facility_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5771
|
+
"List of unique identifiers for the facilities the staff member is associated with."
|
|
5772
|
+
),
|
|
5773
|
+
building_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5774
|
+
"List of unique identifiers for the buildings the staff member is associated with."
|
|
5775
|
+
),
|
|
5776
|
+
listing_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5777
|
+
"List of unique identifiers for the listings the staff member is associated with."
|
|
5778
|
+
),
|
|
5779
|
+
property_listing_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5780
|
+
"List of unique identifiers for the property listings the staff member is associated with."
|
|
5781
|
+
),
|
|
5782
|
+
site_keys: zod.z.array(zod.z.string()).optional().describe(
|
|
5756
5783
|
"List of unique identifiers for the sites the staff member is associated with."
|
|
5757
5784
|
)
|
|
5758
5785
|
}).describe(`
|
|
@@ -24668,10 +24695,30 @@ var openapi_default = {
|
|
|
24668
24695
|
staff_member: {
|
|
24669
24696
|
description: "Represents a staff member for a specific customer.",
|
|
24670
24697
|
properties: {
|
|
24698
|
+
building_keys: {
|
|
24699
|
+
description: "List of unique identifiers for the buildings the staff member is associated with.",
|
|
24700
|
+
items: { type: "string" },
|
|
24701
|
+
type: "array"
|
|
24702
|
+
},
|
|
24703
|
+
common_area_keys: {
|
|
24704
|
+
description: "List of unique identifiers for the common areas the staff member is associated with.",
|
|
24705
|
+
items: { type: "string" },
|
|
24706
|
+
type: "array"
|
|
24707
|
+
},
|
|
24671
24708
|
email_address: {
|
|
24672
24709
|
description: "Email address associated with the user identity.",
|
|
24673
24710
|
type: "string"
|
|
24674
24711
|
},
|
|
24712
|
+
facility_keys: {
|
|
24713
|
+
description: "List of unique identifiers for the facilities the staff member is associated with.",
|
|
24714
|
+
items: { type: "string" },
|
|
24715
|
+
type: "array"
|
|
24716
|
+
},
|
|
24717
|
+
listing_keys: {
|
|
24718
|
+
description: "List of unique identifiers for the listings the staff member is associated with.",
|
|
24719
|
+
items: { type: "string" },
|
|
24720
|
+
type: "array"
|
|
24721
|
+
},
|
|
24675
24722
|
name: {
|
|
24676
24723
|
description: "Your display name for this user identity resource.",
|
|
24677
24724
|
type: "string"
|
|
@@ -24680,17 +24727,42 @@ var openapi_default = {
|
|
|
24680
24727
|
description: "Phone number associated with the user identity.",
|
|
24681
24728
|
type: "string"
|
|
24682
24729
|
},
|
|
24730
|
+
property_keys: {
|
|
24731
|
+
description: "List of unique identifiers for the properties the staff member is associated with.",
|
|
24732
|
+
items: { type: "string" },
|
|
24733
|
+
type: "array"
|
|
24734
|
+
},
|
|
24735
|
+
property_listing_keys: {
|
|
24736
|
+
description: "List of unique identifiers for the property listings the staff member is associated with.",
|
|
24737
|
+
items: { type: "string" },
|
|
24738
|
+
type: "array"
|
|
24739
|
+
},
|
|
24740
|
+
room_keys: {
|
|
24741
|
+
description: "List of unique identifiers for the rooms the staff member is associated with.",
|
|
24742
|
+
items: { type: "string" },
|
|
24743
|
+
type: "array"
|
|
24744
|
+
},
|
|
24683
24745
|
site_keys: {
|
|
24684
24746
|
description: "List of unique identifiers for the sites the staff member is associated with.",
|
|
24685
24747
|
items: { type: "string" },
|
|
24686
24748
|
type: "array"
|
|
24687
24749
|
},
|
|
24750
|
+
space_keys: {
|
|
24751
|
+
description: "List of unique identifiers for the spaces the staff member is associated with.",
|
|
24752
|
+
items: { type: "string" },
|
|
24753
|
+
type: "array"
|
|
24754
|
+
},
|
|
24688
24755
|
staff_member_key: {
|
|
24689
24756
|
description: "Your unique identifier for the staff.",
|
|
24690
24757
|
type: "string"
|
|
24758
|
+
},
|
|
24759
|
+
unit_keys: {
|
|
24760
|
+
description: "List of unique identifiers for the units the staff member is associated with.",
|
|
24761
|
+
items: { type: "string" },
|
|
24762
|
+
type: "array"
|
|
24691
24763
|
}
|
|
24692
24764
|
},
|
|
24693
|
-
required: ["name", "staff_member_key"
|
|
24765
|
+
required: ["name", "staff_member_key"],
|
|
24694
24766
|
type: "object",
|
|
24695
24767
|
"x-route-path": "/seam/customer/v1/staff_members"
|
|
24696
24768
|
},
|
|
@@ -44005,10 +44077,30 @@ var openapi_default = {
|
|
|
44005
44077
|
items: {
|
|
44006
44078
|
description: "Represents a staff member for a specific customer.",
|
|
44007
44079
|
properties: {
|
|
44080
|
+
building_keys: {
|
|
44081
|
+
description: "List of unique identifiers for the buildings the staff member is associated with.",
|
|
44082
|
+
items: { type: "string" },
|
|
44083
|
+
type: "array"
|
|
44084
|
+
},
|
|
44085
|
+
common_area_keys: {
|
|
44086
|
+
description: "List of unique identifiers for the common areas the staff member is associated with.",
|
|
44087
|
+
items: { type: "string" },
|
|
44088
|
+
type: "array"
|
|
44089
|
+
},
|
|
44008
44090
|
email_address: {
|
|
44009
44091
|
description: "Email address associated with the user identity.",
|
|
44010
44092
|
type: "string"
|
|
44011
44093
|
},
|
|
44094
|
+
facility_keys: {
|
|
44095
|
+
description: "List of unique identifiers for the facilities the staff member is associated with.",
|
|
44096
|
+
items: { type: "string" },
|
|
44097
|
+
type: "array"
|
|
44098
|
+
},
|
|
44099
|
+
listing_keys: {
|
|
44100
|
+
description: "List of unique identifiers for the listings the staff member is associated with.",
|
|
44101
|
+
items: { type: "string" },
|
|
44102
|
+
type: "array"
|
|
44103
|
+
},
|
|
44012
44104
|
name: {
|
|
44013
44105
|
description: "Your display name for this user identity resource.",
|
|
44014
44106
|
type: "string"
|
|
@@ -44017,21 +44109,42 @@ var openapi_default = {
|
|
|
44017
44109
|
description: "Phone number associated with the user identity.",
|
|
44018
44110
|
type: "string"
|
|
44019
44111
|
},
|
|
44112
|
+
property_keys: {
|
|
44113
|
+
description: "List of unique identifiers for the properties the staff member is associated with.",
|
|
44114
|
+
items: { type: "string" },
|
|
44115
|
+
type: "array"
|
|
44116
|
+
},
|
|
44117
|
+
property_listing_keys: {
|
|
44118
|
+
description: "List of unique identifiers for the property listings the staff member is associated with.",
|
|
44119
|
+
items: { type: "string" },
|
|
44120
|
+
type: "array"
|
|
44121
|
+
},
|
|
44122
|
+
room_keys: {
|
|
44123
|
+
description: "List of unique identifiers for the rooms the staff member is associated with.",
|
|
44124
|
+
items: { type: "string" },
|
|
44125
|
+
type: "array"
|
|
44126
|
+
},
|
|
44020
44127
|
site_keys: {
|
|
44021
44128
|
description: "List of unique identifiers for the sites the staff member is associated with.",
|
|
44022
44129
|
items: { type: "string" },
|
|
44023
44130
|
type: "array"
|
|
44024
44131
|
},
|
|
44132
|
+
space_keys: {
|
|
44133
|
+
description: "List of unique identifiers for the spaces the staff member is associated with.",
|
|
44134
|
+
items: { type: "string" },
|
|
44135
|
+
type: "array"
|
|
44136
|
+
},
|
|
44025
44137
|
staff_member_key: {
|
|
44026
44138
|
description: "Your unique identifier for the staff.",
|
|
44027
44139
|
type: "string"
|
|
44140
|
+
},
|
|
44141
|
+
unit_keys: {
|
|
44142
|
+
description: "List of unique identifiers for the units the staff member is associated with.",
|
|
44143
|
+
items: { type: "string" },
|
|
44144
|
+
type: "array"
|
|
44028
44145
|
}
|
|
44029
44146
|
},
|
|
44030
|
-
required: [
|
|
44031
|
-
"name",
|
|
44032
|
-
"staff_member_key",
|
|
44033
|
-
"site_keys"
|
|
44034
|
-
],
|
|
44147
|
+
required: ["name", "staff_member_key"],
|
|
44035
44148
|
type: "object",
|
|
44036
44149
|
"x-route-path": "/seam/customer/v1/staff_members"
|
|
44037
44150
|
},
|
|
@@ -45043,10 +45156,30 @@ var openapi_default = {
|
|
|
45043
45156
|
items: {
|
|
45044
45157
|
description: "Represents a staff member for a specific customer.",
|
|
45045
45158
|
properties: {
|
|
45159
|
+
building_keys: {
|
|
45160
|
+
description: "List of unique identifiers for the buildings the staff member is associated with.",
|
|
45161
|
+
items: { type: "string" },
|
|
45162
|
+
type: "array"
|
|
45163
|
+
},
|
|
45164
|
+
common_area_keys: {
|
|
45165
|
+
description: "List of unique identifiers for the common areas the staff member is associated with.",
|
|
45166
|
+
items: { type: "string" },
|
|
45167
|
+
type: "array"
|
|
45168
|
+
},
|
|
45046
45169
|
email_address: {
|
|
45047
45170
|
description: "Email address associated with the user identity.",
|
|
45048
45171
|
type: "string"
|
|
45049
45172
|
},
|
|
45173
|
+
facility_keys: {
|
|
45174
|
+
description: "List of unique identifiers for the facilities the staff member is associated with.",
|
|
45175
|
+
items: { type: "string" },
|
|
45176
|
+
type: "array"
|
|
45177
|
+
},
|
|
45178
|
+
listing_keys: {
|
|
45179
|
+
description: "List of unique identifiers for the listings the staff member is associated with.",
|
|
45180
|
+
items: { type: "string" },
|
|
45181
|
+
type: "array"
|
|
45182
|
+
},
|
|
45050
45183
|
name: {
|
|
45051
45184
|
description: "Your display name for this user identity resource.",
|
|
45052
45185
|
type: "string"
|
|
@@ -45055,17 +45188,42 @@ var openapi_default = {
|
|
|
45055
45188
|
description: "Phone number associated with the user identity.",
|
|
45056
45189
|
type: "string"
|
|
45057
45190
|
},
|
|
45191
|
+
property_keys: {
|
|
45192
|
+
description: "List of unique identifiers for the properties the staff member is associated with.",
|
|
45193
|
+
items: { type: "string" },
|
|
45194
|
+
type: "array"
|
|
45195
|
+
},
|
|
45196
|
+
property_listing_keys: {
|
|
45197
|
+
description: "List of unique identifiers for the property listings the staff member is associated with.",
|
|
45198
|
+
items: { type: "string" },
|
|
45199
|
+
type: "array"
|
|
45200
|
+
},
|
|
45201
|
+
room_keys: {
|
|
45202
|
+
description: "List of unique identifiers for the rooms the staff member is associated with.",
|
|
45203
|
+
items: { type: "string" },
|
|
45204
|
+
type: "array"
|
|
45205
|
+
},
|
|
45058
45206
|
site_keys: {
|
|
45059
45207
|
description: "List of unique identifiers for the sites the staff member is associated with.",
|
|
45060
45208
|
items: { type: "string" },
|
|
45061
45209
|
type: "array"
|
|
45062
45210
|
},
|
|
45211
|
+
space_keys: {
|
|
45212
|
+
description: "List of unique identifiers for the spaces the staff member is associated with.",
|
|
45213
|
+
items: { type: "string" },
|
|
45214
|
+
type: "array"
|
|
45215
|
+
},
|
|
45063
45216
|
staff_member_key: {
|
|
45064
45217
|
description: "Your unique identifier for the staff.",
|
|
45065
45218
|
type: "string"
|
|
45219
|
+
},
|
|
45220
|
+
unit_keys: {
|
|
45221
|
+
description: "List of unique identifiers for the units the staff member is associated with.",
|
|
45222
|
+
items: { type: "string" },
|
|
45223
|
+
type: "array"
|
|
45066
45224
|
}
|
|
45067
45225
|
},
|
|
45068
|
-
required: ["name", "staff_member_key"
|
|
45226
|
+
required: ["name", "staff_member_key"],
|
|
45069
45227
|
type: "object",
|
|
45070
45228
|
"x-route-path": "/seam/customer/v1/staff_members"
|
|
45071
45229
|
},
|
|
@@ -53138,6 +53296,69 @@ var openapi_default = {
|
|
|
53138
53296
|
},
|
|
53139
53297
|
type: "object"
|
|
53140
53298
|
},
|
|
53299
|
+
climate_rules: {
|
|
53300
|
+
properties: {
|
|
53301
|
+
rules: {
|
|
53302
|
+
properties: {
|
|
53303
|
+
delete_on_reservation_end: {
|
|
53304
|
+
properties: { enabled: { type: "boolean" } },
|
|
53305
|
+
required: ["enabled"],
|
|
53306
|
+
type: "object"
|
|
53307
|
+
},
|
|
53308
|
+
reservation_created: {
|
|
53309
|
+
properties: {
|
|
53310
|
+
enabled: { type: "boolean" },
|
|
53311
|
+
fallback_preset: {
|
|
53312
|
+
properties: {
|
|
53313
|
+
fan_mode: {
|
|
53314
|
+
enum: ["on", "auto", "circulate"],
|
|
53315
|
+
type: "string"
|
|
53316
|
+
},
|
|
53317
|
+
is_override_allowed: { type: "boolean" },
|
|
53318
|
+
mode: {
|
|
53319
|
+
enum: ["heat", "cool", "auto"],
|
|
53320
|
+
type: "string"
|
|
53321
|
+
},
|
|
53322
|
+
override_period_minutes: {
|
|
53323
|
+
format: "float",
|
|
53324
|
+
type: "number"
|
|
53325
|
+
},
|
|
53326
|
+
temperature: {
|
|
53327
|
+
format: "float",
|
|
53328
|
+
type: "number"
|
|
53329
|
+
},
|
|
53330
|
+
temperature_unit: {
|
|
53331
|
+
enum: ["celsius", "fahrenheit"],
|
|
53332
|
+
type: "string"
|
|
53333
|
+
}
|
|
53334
|
+
},
|
|
53335
|
+
required: [
|
|
53336
|
+
"mode",
|
|
53337
|
+
"temperature",
|
|
53338
|
+
"temperature_unit",
|
|
53339
|
+
"fan_mode",
|
|
53340
|
+
"is_override_allowed",
|
|
53341
|
+
"override_period_minutes"
|
|
53342
|
+
],
|
|
53343
|
+
type: "object"
|
|
53344
|
+
},
|
|
53345
|
+
occupied_preset_key: { type: "string" }
|
|
53346
|
+
},
|
|
53347
|
+
required: ["enabled"],
|
|
53348
|
+
type: "object"
|
|
53349
|
+
},
|
|
53350
|
+
update_on_time_change: {
|
|
53351
|
+
properties: { enabled: { type: "boolean" } },
|
|
53352
|
+
required: ["enabled"],
|
|
53353
|
+
type: "object"
|
|
53354
|
+
}
|
|
53355
|
+
},
|
|
53356
|
+
type: "object"
|
|
53357
|
+
}
|
|
53358
|
+
},
|
|
53359
|
+
required: ["rules"],
|
|
53360
|
+
type: "object"
|
|
53361
|
+
},
|
|
53141
53362
|
ok: { type: "boolean" }
|
|
53142
53363
|
},
|
|
53143
53364
|
required: ["ok"],
|
|
@@ -53264,6 +53485,69 @@ var openapi_default = {
|
|
|
53264
53485
|
},
|
|
53265
53486
|
type: "object"
|
|
53266
53487
|
},
|
|
53488
|
+
climate_rules: {
|
|
53489
|
+
properties: {
|
|
53490
|
+
rules: {
|
|
53491
|
+
properties: {
|
|
53492
|
+
delete_on_reservation_end: {
|
|
53493
|
+
properties: { enabled: { type: "boolean" } },
|
|
53494
|
+
required: ["enabled"],
|
|
53495
|
+
type: "object"
|
|
53496
|
+
},
|
|
53497
|
+
reservation_created: {
|
|
53498
|
+
properties: {
|
|
53499
|
+
enabled: { type: "boolean" },
|
|
53500
|
+
fallback_preset: {
|
|
53501
|
+
properties: {
|
|
53502
|
+
fan_mode: {
|
|
53503
|
+
enum: ["on", "auto", "circulate"],
|
|
53504
|
+
type: "string"
|
|
53505
|
+
},
|
|
53506
|
+
is_override_allowed: { type: "boolean" },
|
|
53507
|
+
mode: {
|
|
53508
|
+
enum: ["heat", "cool", "auto"],
|
|
53509
|
+
type: "string"
|
|
53510
|
+
},
|
|
53511
|
+
override_period_minutes: {
|
|
53512
|
+
format: "float",
|
|
53513
|
+
type: "number"
|
|
53514
|
+
},
|
|
53515
|
+
temperature: {
|
|
53516
|
+
format: "float",
|
|
53517
|
+
type: "number"
|
|
53518
|
+
},
|
|
53519
|
+
temperature_unit: {
|
|
53520
|
+
enum: ["celsius", "fahrenheit"],
|
|
53521
|
+
type: "string"
|
|
53522
|
+
}
|
|
53523
|
+
},
|
|
53524
|
+
required: [
|
|
53525
|
+
"mode",
|
|
53526
|
+
"temperature",
|
|
53527
|
+
"temperature_unit",
|
|
53528
|
+
"fan_mode",
|
|
53529
|
+
"is_override_allowed",
|
|
53530
|
+
"override_period_minutes"
|
|
53531
|
+
],
|
|
53532
|
+
type: "object"
|
|
53533
|
+
},
|
|
53534
|
+
occupied_preset_key: { type: "string" }
|
|
53535
|
+
},
|
|
53536
|
+
required: ["enabled"],
|
|
53537
|
+
type: "object"
|
|
53538
|
+
},
|
|
53539
|
+
update_on_time_change: {
|
|
53540
|
+
properties: { enabled: { type: "boolean" } },
|
|
53541
|
+
required: ["enabled"],
|
|
53542
|
+
type: "object"
|
|
53543
|
+
}
|
|
53544
|
+
},
|
|
53545
|
+
type: "object"
|
|
53546
|
+
}
|
|
53547
|
+
},
|
|
53548
|
+
required: ["rules"],
|
|
53549
|
+
type: "object"
|
|
53550
|
+
},
|
|
53267
53551
|
ok: { type: "boolean" }
|
|
53268
53552
|
},
|
|
53269
53553
|
required: ["ok"],
|
|
@@ -53383,6 +53667,69 @@ var openapi_default = {
|
|
|
53383
53667
|
}
|
|
53384
53668
|
},
|
|
53385
53669
|
type: "object"
|
|
53670
|
+
},
|
|
53671
|
+
climate_rules: {
|
|
53672
|
+
description: "Climate automation rules configuration.",
|
|
53673
|
+
properties: {
|
|
53674
|
+
rules: {
|
|
53675
|
+
properties: {
|
|
53676
|
+
delete_on_reservation_end: {
|
|
53677
|
+
properties: { enabled: { type: "boolean" } },
|
|
53678
|
+
required: ["enabled"],
|
|
53679
|
+
type: "object"
|
|
53680
|
+
},
|
|
53681
|
+
reservation_created: {
|
|
53682
|
+
properties: {
|
|
53683
|
+
enabled: { type: "boolean" },
|
|
53684
|
+
fallback_preset: {
|
|
53685
|
+
properties: {
|
|
53686
|
+
fan_mode: {
|
|
53687
|
+
enum: ["on", "auto", "circulate"],
|
|
53688
|
+
type: "string"
|
|
53689
|
+
},
|
|
53690
|
+
is_override_allowed: { type: "boolean" },
|
|
53691
|
+
mode: {
|
|
53692
|
+
enum: ["heat", "cool", "auto"],
|
|
53693
|
+
type: "string"
|
|
53694
|
+
},
|
|
53695
|
+
override_period_minutes: {
|
|
53696
|
+
format: "float",
|
|
53697
|
+
type: "number"
|
|
53698
|
+
},
|
|
53699
|
+
temperature: {
|
|
53700
|
+
format: "float",
|
|
53701
|
+
type: "number"
|
|
53702
|
+
},
|
|
53703
|
+
temperature_unit: {
|
|
53704
|
+
enum: ["celsius", "fahrenheit"],
|
|
53705
|
+
type: "string"
|
|
53706
|
+
}
|
|
53707
|
+
},
|
|
53708
|
+
required: [
|
|
53709
|
+
"mode",
|
|
53710
|
+
"temperature",
|
|
53711
|
+
"temperature_unit",
|
|
53712
|
+
"fan_mode",
|
|
53713
|
+
"is_override_allowed",
|
|
53714
|
+
"override_period_minutes"
|
|
53715
|
+
],
|
|
53716
|
+
type: "object"
|
|
53717
|
+
},
|
|
53718
|
+
occupied_preset_key: { type: "string" }
|
|
53719
|
+
},
|
|
53720
|
+
required: ["enabled"],
|
|
53721
|
+
type: "object"
|
|
53722
|
+
},
|
|
53723
|
+
update_on_time_change: {
|
|
53724
|
+
properties: { enabled: { type: "boolean" } },
|
|
53725
|
+
required: ["enabled"],
|
|
53726
|
+
type: "object"
|
|
53727
|
+
}
|
|
53728
|
+
},
|
|
53729
|
+
type: "object"
|
|
53730
|
+
}
|
|
53731
|
+
},
|
|
53732
|
+
type: "object"
|
|
53386
53733
|
}
|
|
53387
53734
|
},
|
|
53388
53735
|
type: "object"
|
|
@@ -53511,6 +53858,69 @@ var openapi_default = {
|
|
|
53511
53858
|
}
|
|
53512
53859
|
},
|
|
53513
53860
|
type: "object"
|
|
53861
|
+
},
|
|
53862
|
+
climate_rules: {
|
|
53863
|
+
description: "Climate automation rules configuration.",
|
|
53864
|
+
properties: {
|
|
53865
|
+
rules: {
|
|
53866
|
+
properties: {
|
|
53867
|
+
delete_on_reservation_end: {
|
|
53868
|
+
properties: { enabled: { type: "boolean" } },
|
|
53869
|
+
required: ["enabled"],
|
|
53870
|
+
type: "object"
|
|
53871
|
+
},
|
|
53872
|
+
reservation_created: {
|
|
53873
|
+
properties: {
|
|
53874
|
+
enabled: { type: "boolean" },
|
|
53875
|
+
fallback_preset: {
|
|
53876
|
+
properties: {
|
|
53877
|
+
fan_mode: {
|
|
53878
|
+
enum: ["on", "auto", "circulate"],
|
|
53879
|
+
type: "string"
|
|
53880
|
+
},
|
|
53881
|
+
is_override_allowed: { type: "boolean" },
|
|
53882
|
+
mode: {
|
|
53883
|
+
enum: ["heat", "cool", "auto"],
|
|
53884
|
+
type: "string"
|
|
53885
|
+
},
|
|
53886
|
+
override_period_minutes: {
|
|
53887
|
+
format: "float",
|
|
53888
|
+
type: "number"
|
|
53889
|
+
},
|
|
53890
|
+
temperature: {
|
|
53891
|
+
format: "float",
|
|
53892
|
+
type: "number"
|
|
53893
|
+
},
|
|
53894
|
+
temperature_unit: {
|
|
53895
|
+
enum: ["celsius", "fahrenheit"],
|
|
53896
|
+
type: "string"
|
|
53897
|
+
}
|
|
53898
|
+
},
|
|
53899
|
+
required: [
|
|
53900
|
+
"mode",
|
|
53901
|
+
"temperature",
|
|
53902
|
+
"temperature_unit",
|
|
53903
|
+
"fan_mode",
|
|
53904
|
+
"is_override_allowed",
|
|
53905
|
+
"override_period_minutes"
|
|
53906
|
+
],
|
|
53907
|
+
type: "object"
|
|
53908
|
+
},
|
|
53909
|
+
occupied_preset_key: { type: "string" }
|
|
53910
|
+
},
|
|
53911
|
+
required: ["enabled"],
|
|
53912
|
+
type: "object"
|
|
53913
|
+
},
|
|
53914
|
+
update_on_time_change: {
|
|
53915
|
+
properties: { enabled: { type: "boolean" } },
|
|
53916
|
+
required: ["enabled"],
|
|
53917
|
+
type: "object"
|
|
53918
|
+
}
|
|
53919
|
+
},
|
|
53920
|
+
type: "object"
|
|
53921
|
+
}
|
|
53922
|
+
},
|
|
53923
|
+
type: "object"
|
|
53514
53924
|
}
|
|
53515
53925
|
},
|
|
53516
53926
|
type: "object"
|
|
@@ -55800,7 +56210,36 @@ var openapi_default = {
|
|
|
55800
56210
|
ok: { type: "boolean" },
|
|
55801
56211
|
pagination: { $ref: "#/components/schemas/pagination" },
|
|
55802
56212
|
staff_members: {
|
|
55803
|
-
items: {
|
|
56213
|
+
items: {
|
|
56214
|
+
description: "Represents a staff member for a specific customer.",
|
|
56215
|
+
properties: {
|
|
56216
|
+
email_address: {
|
|
56217
|
+
description: "Email address associated with the user identity.",
|
|
56218
|
+
type: "string"
|
|
56219
|
+
},
|
|
56220
|
+
name: {
|
|
56221
|
+
description: "Your display name for this user identity resource.",
|
|
56222
|
+
type: "string"
|
|
56223
|
+
},
|
|
56224
|
+
phone_number: {
|
|
56225
|
+
description: "Phone number associated with the user identity.",
|
|
56226
|
+
type: "string"
|
|
56227
|
+
},
|
|
56228
|
+
space_keys: {
|
|
56229
|
+
description: "List of unique identifiers for the spaces the staff member is associated with.",
|
|
56230
|
+
items: { type: "string" },
|
|
56231
|
+
type: "array"
|
|
56232
|
+
},
|
|
56233
|
+
staff_member_key: {
|
|
56234
|
+
description: "Your unique identifier for the staff.",
|
|
56235
|
+
type: "string"
|
|
56236
|
+
},
|
|
56237
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
56238
|
+
},
|
|
56239
|
+
required: ["staff_member_key", "name"],
|
|
56240
|
+
type: "object",
|
|
56241
|
+
"x-route-path": "/seam/customer/v1/staff_members"
|
|
56242
|
+
},
|
|
55804
56243
|
type: "array"
|
|
55805
56244
|
}
|
|
55806
56245
|
},
|
|
@@ -55873,7 +56312,36 @@ var openapi_default = {
|
|
|
55873
56312
|
ok: { type: "boolean" },
|
|
55874
56313
|
pagination: { $ref: "#/components/schemas/pagination" },
|
|
55875
56314
|
staff_members: {
|
|
55876
|
-
items: {
|
|
56315
|
+
items: {
|
|
56316
|
+
description: "Represents a staff member for a specific customer.",
|
|
56317
|
+
properties: {
|
|
56318
|
+
email_address: {
|
|
56319
|
+
description: "Email address associated with the user identity.",
|
|
56320
|
+
type: "string"
|
|
56321
|
+
},
|
|
56322
|
+
name: {
|
|
56323
|
+
description: "Your display name for this user identity resource.",
|
|
56324
|
+
type: "string"
|
|
56325
|
+
},
|
|
56326
|
+
phone_number: {
|
|
56327
|
+
description: "Phone number associated with the user identity.",
|
|
56328
|
+
type: "string"
|
|
56329
|
+
},
|
|
56330
|
+
space_keys: {
|
|
56331
|
+
description: "List of unique identifiers for the spaces the staff member is associated with.",
|
|
56332
|
+
items: { type: "string" },
|
|
56333
|
+
type: "array"
|
|
56334
|
+
},
|
|
56335
|
+
staff_member_key: {
|
|
56336
|
+
description: "Your unique identifier for the staff.",
|
|
56337
|
+
type: "string"
|
|
56338
|
+
},
|
|
56339
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
56340
|
+
},
|
|
56341
|
+
required: ["staff_member_key", "name"],
|
|
56342
|
+
type: "object",
|
|
56343
|
+
"x-route-path": "/seam/customer/v1/staff_members"
|
|
56344
|
+
},
|
|
55877
56345
|
type: "array"
|
|
55878
56346
|
}
|
|
55879
56347
|
},
|