reach-api-sdk 1.0.197 → 1.0.198
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/reach-sdk.d.ts
CHANGED
|
@@ -4652,6 +4652,7 @@ type Venue = {
|
|
|
4652
4652
|
* Gets or sets the contact website.
|
|
4653
4653
|
*/
|
|
4654
4654
|
contactWebsite?: string | null;
|
|
4655
|
+
upcomingLayout?: UpcomingLayout;
|
|
4655
4656
|
/**
|
|
4656
4657
|
* Gets or sets a value indicating whether the venue can take bookings.
|
|
4657
4658
|
*/
|
|
@@ -38885,6 +38886,7 @@ type VenuePatch = {
|
|
|
38885
38886
|
* Gets or sets the contact website.
|
|
38886
38887
|
*/
|
|
38887
38888
|
contactWebsite?: string | null;
|
|
38889
|
+
upcomingLayout: UpcomingLayout;
|
|
38888
38890
|
/**
|
|
38889
38891
|
* Gets or sets a value indicating whether the venue can take bookings.
|
|
38890
38892
|
*/
|
package/package.json
CHANGED
|
@@ -148536,6 +148536,8 @@ components:
|
|
|
148536
148536
|
type: string
|
|
148537
148537
|
description: Gets or sets the contact website.
|
|
148538
148538
|
nullable: true
|
|
148539
|
+
upcomingLayout:
|
|
148540
|
+
$ref: '#/components/schemas/UpcomingLayout'
|
|
148539
148541
|
online:
|
|
148540
148542
|
type: boolean
|
|
148541
148543
|
description: Gets or sets a value indicating whether the venue can take bookings.
|
|
@@ -149010,6 +149012,7 @@ components:
|
|
|
149010
149012
|
required:
|
|
149011
149013
|
- id
|
|
149012
149014
|
- tenantId
|
|
149015
|
+
- upcomingLayout
|
|
149013
149016
|
type: object
|
|
149014
149017
|
properties:
|
|
149015
149018
|
tenantId:
|
|
@@ -149084,6 +149087,8 @@ components:
|
|
|
149084
149087
|
type: string
|
|
149085
149088
|
description: Gets or sets the contact website.
|
|
149086
149089
|
nullable: true
|
|
149090
|
+
upcomingLayout:
|
|
149091
|
+
$ref: '#/components/schemas/UpcomingLayout'
|
|
149087
149092
|
online:
|
|
149088
149093
|
type: boolean
|
|
149089
149094
|
description: Gets or sets a value indicating whether the venue can take bookings.
|
package/src/models/Venue.ts
CHANGED
|
@@ -12,6 +12,7 @@ import type { Image } from './Image';
|
|
|
12
12
|
import type { Session } from './Session';
|
|
13
13
|
import type { StripeAccount } from './StripeAccount';
|
|
14
14
|
import type { Tenant } from './Tenant';
|
|
15
|
+
import type { UpcomingLayout } from './UpcomingLayout';
|
|
15
16
|
import type { User } from './User';
|
|
16
17
|
import type { VenueOpeningHours } from './VenueOpeningHours';
|
|
17
18
|
|
|
@@ -163,6 +164,7 @@ export type Venue = {
|
|
|
163
164
|
* Gets or sets the contact website.
|
|
164
165
|
*/
|
|
165
166
|
contactWebsite?: string | null;
|
|
167
|
+
upcomingLayout?: UpcomingLayout;
|
|
166
168
|
/**
|
|
167
169
|
* Gets or sets a value indicating whether the venue can take bookings.
|
|
168
170
|
*/
|
package/src/models/VenuePatch.ts
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
|
|
6
|
+
import type { UpcomingLayout } from './UpcomingLayout';
|
|
6
7
|
import type { UpdateEmailSettings } from './UpdateEmailSettings';
|
|
7
8
|
import type { VenueOpeningHourUpdate } from './VenueOpeningHourUpdate';
|
|
8
9
|
|
|
@@ -78,6 +79,7 @@ export type VenuePatch = {
|
|
|
78
79
|
* Gets or sets the contact website.
|
|
79
80
|
*/
|
|
80
81
|
contactWebsite?: string | null;
|
|
82
|
+
upcomingLayout: UpcomingLayout;
|
|
81
83
|
/**
|
|
82
84
|
* Gets or sets a value indicating whether the venue can take bookings.
|
|
83
85
|
*/
|