Skip to content

Commit c6f563d

Browse files
authored
feat: Sync with Seam API via 0e4167da37e11321a057aafca14ec6376f2d2c6d (#2759)
1 parent e956907 commit c6f563d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69054,7 +69054,7 @@ export default {
6905469054
name: 'between',
6905569055
schema: {
6905669056
description:
69057-
'Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list.',
69057+
'Lower and upper timestamps to filter reservations whose time range overlaps with the given interval.',
6905869058
items: {
6905969059
oneOf: [
6906069060
{ type: 'string' },
@@ -69323,7 +69323,7 @@ export default {
6932369323
properties: {
6932469324
between: {
6932569325
description:
69326-
'Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list.',
69326+
'Lower and upper timestamps to filter reservations whose time range overlaps with the given interval.',
6932769327
items: {
6932869328
oneOf: [
6932969329
{ type: 'string' },

src/lib/seam/connect/route-types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78935,7 +78935,7 @@ export type Routes = {
7893578935
created_before?: Date | undefined
7893678936
/** Timestamp by which to limit returned reservations. Returns reservations created after this timestamp. */
7893778937
created_after?: Date | undefined
78938-
/** Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list. */
78938+
/** Lower and upper timestamps to filter reservations whose time range overlaps with the given interval. */
7893978939
between?: (string | Date)[] | undefined
7894078940
/** String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names. */
7894178941
search?: string | undefined

0 commit comments

Comments
 (0)