Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59334,6 +59334,7 @@ const openapi: OpenAPISpec = {
description: 'Access automation rules configuration.',
properties: {
reservation_created: {
nullable: true,
properties: {
config: {
properties: {
Expand Down Expand Up @@ -59382,6 +59383,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
reservation_deleted: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -59393,6 +59395,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
reservation_spaces_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -59404,6 +59407,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
reservation_time_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -59415,6 +59419,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
space_name_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -59426,6 +59431,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
staff_member_created: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -59437,6 +59443,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
staff_member_name_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -59448,6 +59455,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
user_identity_name_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -59467,6 +59475,7 @@ const openapi: OpenAPISpec = {
rules: {
properties: {
reservation_created: {
nullable: true,
properties: {
automated_occupied_preset: {
properties: {
Expand Down Expand Up @@ -59558,10 +59567,12 @@ const openapi: OpenAPISpec = {
type: 'object',
},
reservation_deleted: {
nullable: true,
properties: {},
type: 'object',
},
reservation_time_updated: {
nullable: true,
properties: {},
type: 'object',
},
Expand Down Expand Up @@ -60933,6 +60944,7 @@ const openapi: OpenAPISpec = {
description: 'Access automation rules configuration.',
properties: {
reservation_created: {
nullable: true,
properties: {
config: {
properties: {
Expand Down Expand Up @@ -60981,6 +60993,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
reservation_deleted: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -60992,6 +61005,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
reservation_spaces_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -61003,6 +61017,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
reservation_time_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -61014,6 +61029,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
space_name_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -61025,6 +61041,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
staff_member_created: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -61036,6 +61053,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
staff_member_name_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -61047,6 +61065,7 @@ const openapi: OpenAPISpec = {
type: 'object',
},
user_identity_name_updated: {
nullable: true,
properties: {
config: { properties: {}, type: 'object' },
rule: {
Expand All @@ -61066,6 +61085,7 @@ const openapi: OpenAPISpec = {
rules: {
properties: {
reservation_created: {
nullable: true,
properties: {
automated_occupied_preset: {
properties: {
Expand Down Expand Up @@ -61157,10 +61177,12 @@ const openapi: OpenAPISpec = {
type: 'object',
},
reservation_deleted: {
nullable: true,
properties: {},
type: 'object',
},
reservation_time_updated: {
nullable: true,
properties: {},
type: 'object',
},
Expand Down
80 changes: 40 additions & 40 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99435,7 +99435,7 @@ export type Routes = {
access_rules?:
| {
reservation_created?:
| {
| ({
rule: 'reservation_created'
config: {
access_methods: ('card' | 'mobile_key' | 'code')[]
Expand All @@ -99449,49 +99449,49 @@ export type Routes = {
allow_shared_email_and_phone_across_user_identities?:
boolean | undefined
}
}
} | null)
| undefined
reservation_time_updated?:
| {
| ({
rule: 'reservation_time_updated'
config?: {} | undefined
}
} | null)
| undefined
reservation_spaces_updated?:
| {
| ({
rule: 'reservation_spaces_updated'
config?: {} | undefined
}
} | null)
| undefined
reservation_deleted?:
| {
| ({
rule: 'reservation_deleted'
config?: {} | undefined
}
} | null)
| undefined
space_name_updated?:
| {
| ({
rule: 'space_name_updated'
config?: {} | undefined
}
} | null)
| undefined
user_identity_name_updated?:
| {
| ({
rule: 'user_identity_name_updated'
config?: {} | undefined
}
} | null)
| undefined
staff_member_name_updated?:
| {
| ({
rule: 'staff_member_name_updated'
config?: {} | undefined
}
} | null)
| undefined
staff_member_created?:
| {
| ({
rule: 'staff_member_created'
config: {}
}
} | null)
| undefined
}
| undefined
Expand All @@ -99501,7 +99501,7 @@ export type Routes = {
rules?:
| {
reservation_created?:
| {
| ({
occupied_preset_key?: string | undefined
automated_occupied_preset?:
| {
Expand Down Expand Up @@ -99530,10 +99530,10 @@ export type Routes = {
| undefined
precondition_minutes_before_reservation?:
number | undefined
}
} | null)
| undefined
reservation_time_updated?: {} | undefined
reservation_deleted?: {} | undefined
reservation_time_updated?: ({} | null) | undefined
reservation_deleted?: ({} | null) | undefined
}
| undefined
}
Expand Down Expand Up @@ -100016,7 +100016,7 @@ export type Routes = {
access_rules?:
| {
reservation_created?:
| {
| ({
rule: 'reservation_created'
config: {
access_methods: ('card' | 'mobile_key' | 'code')[]
Expand All @@ -100030,49 +100030,49 @@ export type Routes = {
allow_shared_email_and_phone_across_user_identities?:
boolean | undefined
}
}
} | null)
| undefined
reservation_time_updated?:
| {
| ({
rule: 'reservation_time_updated'
config?: {} | undefined
}
} | null)
| undefined
reservation_spaces_updated?:
| {
| ({
rule: 'reservation_spaces_updated'
config?: {} | undefined
}
} | null)
| undefined
reservation_deleted?:
| {
| ({
rule: 'reservation_deleted'
config?: {} | undefined
}
} | null)
| undefined
space_name_updated?:
| {
| ({
rule: 'space_name_updated'
config?: {} | undefined
}
} | null)
| undefined
user_identity_name_updated?:
| {
| ({
rule: 'user_identity_name_updated'
config?: {} | undefined
}
} | null)
| undefined
staff_member_name_updated?:
| {
| ({
rule: 'staff_member_name_updated'
config?: {} | undefined
}
} | null)
| undefined
staff_member_created?:
| {
| ({
rule: 'staff_member_created'
config: {}
}
} | null)
| undefined
}
| undefined
Expand All @@ -100082,7 +100082,7 @@ export type Routes = {
rules?:
| {
reservation_created?:
| {
| ({
occupied_preset_key?: string | undefined
automated_occupied_preset?:
| {
Expand Down Expand Up @@ -100111,10 +100111,10 @@ export type Routes = {
| undefined
precondition_minutes_before_reservation?:
number | undefined
}
} | null)
| undefined
reservation_time_updated?: {} | undefined
reservation_deleted?: {} | undefined
reservation_time_updated?: ({} | null) | undefined
reservation_deleted?: ({} | null) | undefined
}
| undefined
}
Expand Down
Loading