@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
|
@@ -37187,8 +37187,26 @@ export type Routes = {
|
|
|
37187
37187
|
phone_number?: string | undefined
|
|
37188
37188
|
/** Your unique identifier for the staff. */
|
|
37189
37189
|
staff_member_key: string
|
|
37190
|
+
/** List of unique identifiers for the spaces the staff member is associated with. */
|
|
37191
|
+
space_keys?: string[] | undefined
|
|
37192
|
+
/** List of unique identifiers for the properties the staff member is associated with. */
|
|
37193
|
+
property_keys?: string[] | undefined
|
|
37194
|
+
/** List of unique identifiers for the rooms the staff member is associated with. */
|
|
37195
|
+
room_keys?: string[] | undefined
|
|
37196
|
+
/** List of unique identifiers for the common areas the staff member is associated with. */
|
|
37197
|
+
common_area_keys?: string[] | undefined
|
|
37198
|
+
/** List of unique identifiers for the units the staff member is associated with. */
|
|
37199
|
+
unit_keys?: string[] | undefined
|
|
37200
|
+
/** List of unique identifiers for the facilities the staff member is associated with. */
|
|
37201
|
+
facility_keys?: string[] | undefined
|
|
37202
|
+
/** List of unique identifiers for the buildings the staff member is associated with. */
|
|
37203
|
+
building_keys?: string[] | undefined
|
|
37204
|
+
/** List of unique identifiers for the listings the staff member is associated with. */
|
|
37205
|
+
listing_keys?: string[] | undefined
|
|
37206
|
+
/** List of unique identifiers for the property listings the staff member is associated with. */
|
|
37207
|
+
property_listing_keys?: string[] | undefined
|
|
37190
37208
|
/** List of unique identifiers for the sites the staff member is associated with. */
|
|
37191
|
-
site_keys
|
|
37209
|
+
site_keys?: string[] | undefined
|
|
37192
37210
|
}[]
|
|
37193
37211
|
| undefined
|
|
37194
37212
|
/** List of reservations. */
|
|
@@ -37564,8 +37582,26 @@ export type Routes = {
|
|
|
37564
37582
|
phone_number?: string | undefined
|
|
37565
37583
|
/** Your unique identifier for the staff. */
|
|
37566
37584
|
staff_member_key: string
|
|
37585
|
+
/** List of unique identifiers for the spaces the staff member is associated with. */
|
|
37586
|
+
space_keys?: string[] | undefined
|
|
37587
|
+
/** List of unique identifiers for the properties the staff member is associated with. */
|
|
37588
|
+
property_keys?: string[] | undefined
|
|
37589
|
+
/** List of unique identifiers for the rooms the staff member is associated with. */
|
|
37590
|
+
room_keys?: string[] | undefined
|
|
37591
|
+
/** List of unique identifiers for the common areas the staff member is associated with. */
|
|
37592
|
+
common_area_keys?: string[] | undefined
|
|
37593
|
+
/** List of unique identifiers for the units the staff member is associated with. */
|
|
37594
|
+
unit_keys?: string[] | undefined
|
|
37595
|
+
/** List of unique identifiers for the facilities the staff member is associated with. */
|
|
37596
|
+
facility_keys?: string[] | undefined
|
|
37597
|
+
/** List of unique identifiers for the buildings the staff member is associated with. */
|
|
37598
|
+
building_keys?: string[] | undefined
|
|
37599
|
+
/** List of unique identifiers for the listings the staff member is associated with. */
|
|
37600
|
+
listing_keys?: string[] | undefined
|
|
37601
|
+
/** List of unique identifiers for the property listings the staff member is associated with. */
|
|
37602
|
+
property_listing_keys?: string[] | undefined
|
|
37567
37603
|
/** List of unique identifiers for the sites the staff member is associated with. */
|
|
37568
|
-
site_keys
|
|
37604
|
+
site_keys?: string[] | undefined
|
|
37569
37605
|
}[]
|
|
37570
37606
|
| undefined
|
|
37571
37607
|
/** List of reservations. */
|
|
@@ -67843,6 +67879,38 @@ export type Routes = {
|
|
|
67843
67879
|
| undefined
|
|
67844
67880
|
}
|
|
67845
67881
|
| undefined
|
|
67882
|
+
climate_rules?:
|
|
67883
|
+
| {
|
|
67884
|
+
rules: {
|
|
67885
|
+
reservation_created?:
|
|
67886
|
+
| {
|
|
67887
|
+
enabled: boolean
|
|
67888
|
+
occupied_preset_key?: string | undefined
|
|
67889
|
+
fallback_preset?:
|
|
67890
|
+
| {
|
|
67891
|
+
mode: 'heat' | 'cool' | 'auto'
|
|
67892
|
+
temperature: number
|
|
67893
|
+
temperature_unit: 'celsius' | 'fahrenheit'
|
|
67894
|
+
fan_mode: 'on' | 'auto' | 'circulate'
|
|
67895
|
+
is_override_allowed: boolean
|
|
67896
|
+
override_period_minutes: number
|
|
67897
|
+
}
|
|
67898
|
+
| undefined
|
|
67899
|
+
}
|
|
67900
|
+
| undefined
|
|
67901
|
+
update_on_time_change?:
|
|
67902
|
+
| {
|
|
67903
|
+
enabled: boolean
|
|
67904
|
+
}
|
|
67905
|
+
| undefined
|
|
67906
|
+
delete_on_reservation_end?:
|
|
67907
|
+
| {
|
|
67908
|
+
enabled: boolean
|
|
67909
|
+
}
|
|
67910
|
+
| undefined
|
|
67911
|
+
}
|
|
67912
|
+
}
|
|
67913
|
+
| undefined
|
|
67846
67914
|
}
|
|
67847
67915
|
}
|
|
67848
67916
|
'/seam/customer/v1/automations/update': {
|
|
@@ -67891,6 +67959,41 @@ export type Routes = {
|
|
|
67891
67959
|
| undefined
|
|
67892
67960
|
}
|
|
67893
67961
|
| undefined
|
|
67962
|
+
/** Climate automation rules configuration. */
|
|
67963
|
+
climate_rules?:
|
|
67964
|
+
| {
|
|
67965
|
+
rules?:
|
|
67966
|
+
| {
|
|
67967
|
+
reservation_created?:
|
|
67968
|
+
| {
|
|
67969
|
+
enabled: boolean
|
|
67970
|
+
occupied_preset_key?: string | undefined
|
|
67971
|
+
fallback_preset?:
|
|
67972
|
+
| {
|
|
67973
|
+
mode: 'heat' | 'cool' | 'auto'
|
|
67974
|
+
temperature: number
|
|
67975
|
+
temperature_unit: 'celsius' | 'fahrenheit'
|
|
67976
|
+
fan_mode: 'on' | 'auto' | 'circulate'
|
|
67977
|
+
is_override_allowed: boolean
|
|
67978
|
+
override_period_minutes: number
|
|
67979
|
+
}
|
|
67980
|
+
| undefined
|
|
67981
|
+
}
|
|
67982
|
+
| undefined
|
|
67983
|
+
update_on_time_change?:
|
|
67984
|
+
| {
|
|
67985
|
+
enabled: boolean
|
|
67986
|
+
}
|
|
67987
|
+
| undefined
|
|
67988
|
+
delete_on_reservation_end?:
|
|
67989
|
+
| {
|
|
67990
|
+
enabled: boolean
|
|
67991
|
+
}
|
|
67992
|
+
| undefined
|
|
67993
|
+
}
|
|
67994
|
+
| undefined
|
|
67995
|
+
}
|
|
67996
|
+
| undefined
|
|
67894
67997
|
}
|
|
67895
67998
|
commonParams: {}
|
|
67896
67999
|
formData: {}
|
|
@@ -70741,16 +70844,17 @@ export type Routes = {
|
|
|
70741
70844
|
formData: {}
|
|
70742
70845
|
jsonResponse: {
|
|
70743
70846
|
staff_members: {
|
|
70744
|
-
/** Your display name for this user identity resource. */
|
|
70745
|
-
name: string
|
|
70746
|
-
/** Email address associated with the user identity. */
|
|
70747
|
-
email_address?: string | undefined
|
|
70748
|
-
/** Phone number associated with the user identity. */
|
|
70749
|
-
phone_number?: string | undefined
|
|
70750
70847
|
/** Your unique identifier for the staff. */
|
|
70751
70848
|
staff_member_key: string
|
|
70752
|
-
/**
|
|
70753
|
-
|
|
70849
|
+
/** Phone number associated with the user identity. */
|
|
70850
|
+
phone_number?: string | undefined
|
|
70851
|
+
/** Email address associated with the user identity. */
|
|
70852
|
+
email_address?: string | undefined
|
|
70853
|
+
/** Your display name for this user identity resource. */
|
|
70854
|
+
name: string
|
|
70855
|
+
/** List of unique identifiers for the spaces the staff member is associated with. */
|
|
70856
|
+
space_keys?: string[] | undefined
|
|
70857
|
+
user_identity_id?: string | undefined
|
|
70754
70858
|
}[]
|
|
70755
70859
|
/** Information about the current page of results. */
|
|
70756
70860
|
pagination: {
|