@seamapi/types 1.619.0 → 1.621.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 +322 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +456 -15
- package/dist/index.cjs +322 -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 +363 -2
- package/lib/seam/connect/openapi.js +294 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +63 -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 +333 -9
- package/src/lib/seam/connect/route-types.ts +71 -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. */
|
|
@@ -67841,6 +67877,18 @@ export type Routes = {
|
|
|
67841
67877
|
config?: {} | undefined
|
|
67842
67878
|
}
|
|
67843
67879
|
| undefined
|
|
67880
|
+
staff_member_name_updated?:
|
|
67881
|
+
| {
|
|
67882
|
+
rule: 'staff_member_name_updated'
|
|
67883
|
+
config?: {} | undefined
|
|
67884
|
+
}
|
|
67885
|
+
| undefined
|
|
67886
|
+
staff_member_created?:
|
|
67887
|
+
| {
|
|
67888
|
+
rule: 'staff_member_created'
|
|
67889
|
+
config: {}
|
|
67890
|
+
}
|
|
67891
|
+
| undefined
|
|
67844
67892
|
}
|
|
67845
67893
|
| undefined
|
|
67846
67894
|
climate_rules?:
|
|
@@ -67921,6 +67969,18 @@ export type Routes = {
|
|
|
67921
67969
|
config?: {} | undefined
|
|
67922
67970
|
}
|
|
67923
67971
|
| undefined
|
|
67972
|
+
staff_member_name_updated?:
|
|
67973
|
+
| {
|
|
67974
|
+
rule: 'staff_member_name_updated'
|
|
67975
|
+
config?: {} | undefined
|
|
67976
|
+
}
|
|
67977
|
+
| undefined
|
|
67978
|
+
staff_member_created?:
|
|
67979
|
+
| {
|
|
67980
|
+
rule: 'staff_member_created'
|
|
67981
|
+
config: {}
|
|
67982
|
+
}
|
|
67983
|
+
| undefined
|
|
67924
67984
|
}
|
|
67925
67985
|
| undefined
|
|
67926
67986
|
/** Climate automation rules configuration. */
|
|
@@ -70808,16 +70868,17 @@ export type Routes = {
|
|
|
70808
70868
|
formData: {}
|
|
70809
70869
|
jsonResponse: {
|
|
70810
70870
|
staff_members: {
|
|
70811
|
-
/** Your display name for this user identity resource. */
|
|
70812
|
-
name: string
|
|
70813
|
-
/** Email address associated with the user identity. */
|
|
70814
|
-
email_address?: string | undefined
|
|
70815
|
-
/** Phone number associated with the user identity. */
|
|
70816
|
-
phone_number?: string | undefined
|
|
70817
70871
|
/** Your unique identifier for the staff. */
|
|
70818
70872
|
staff_member_key: string
|
|
70819
|
-
/**
|
|
70820
|
-
|
|
70873
|
+
/** Phone number associated with the user identity. */
|
|
70874
|
+
phone_number?: string | undefined
|
|
70875
|
+
/** Email address associated with the user identity. */
|
|
70876
|
+
email_address?: string | undefined
|
|
70877
|
+
/** Your display name for this user identity resource. */
|
|
70878
|
+
name: string
|
|
70879
|
+
/** List of unique identifiers for the spaces the staff member is associated with. */
|
|
70880
|
+
space_keys?: string[] | undefined
|
|
70881
|
+
user_identity_id?: string | undefined
|
|
70821
70882
|
}[]
|
|
70822
70883
|
/** Information about the current page of results. */
|
|
70823
70884
|
pagination: {
|