venue-js 1.4.0-next.7 → 1.4.0-next.9
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/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -157,6 +157,12 @@ type LevelProperties = EntityTimestamps & {
|
|
|
157
157
|
type LevelFeature = ImdfFeature<LevelGeometry, LevelProperties> & {
|
|
158
158
|
feature_type: "level";
|
|
159
159
|
};
|
|
160
|
+
type ExternalLink = {
|
|
161
|
+
id: number;
|
|
162
|
+
link?: string;
|
|
163
|
+
ios_link?: string;
|
|
164
|
+
android_link?: string;
|
|
165
|
+
};
|
|
160
166
|
type OccupantGeometry = null;
|
|
161
167
|
type OccupantProperties = EntityTimestamps & {
|
|
162
168
|
anchor_id: Id;
|
|
@@ -196,6 +202,11 @@ type OccupantProperties = EntityTimestamps & {
|
|
|
196
202
|
unit_ids: Id[];
|
|
197
203
|
website_link: string | null;
|
|
198
204
|
show_name_on_all_units: boolean;
|
|
205
|
+
reservations?: ExternalLink[];
|
|
206
|
+
can_reserve?: boolean;
|
|
207
|
+
display_settings?: {
|
|
208
|
+
card_style?: string | null;
|
|
209
|
+
};
|
|
199
210
|
};
|
|
200
211
|
type OccupantFeature = ImdfFeature<OccupantGeometry, OccupantProperties> & {
|
|
201
212
|
feature_type: "occupant";
|
package/dist/index.d.ts
CHANGED
|
@@ -157,6 +157,12 @@ type LevelProperties = EntityTimestamps & {
|
|
|
157
157
|
type LevelFeature = ImdfFeature<LevelGeometry, LevelProperties> & {
|
|
158
158
|
feature_type: "level";
|
|
159
159
|
};
|
|
160
|
+
type ExternalLink = {
|
|
161
|
+
id: number;
|
|
162
|
+
link?: string;
|
|
163
|
+
ios_link?: string;
|
|
164
|
+
android_link?: string;
|
|
165
|
+
};
|
|
160
166
|
type OccupantGeometry = null;
|
|
161
167
|
type OccupantProperties = EntityTimestamps & {
|
|
162
168
|
anchor_id: Id;
|
|
@@ -196,6 +202,11 @@ type OccupantProperties = EntityTimestamps & {
|
|
|
196
202
|
unit_ids: Id[];
|
|
197
203
|
website_link: string | null;
|
|
198
204
|
show_name_on_all_units: boolean;
|
|
205
|
+
reservations?: ExternalLink[];
|
|
206
|
+
can_reserve?: boolean;
|
|
207
|
+
display_settings?: {
|
|
208
|
+
card_style?: string | null;
|
|
209
|
+
};
|
|
199
210
|
};
|
|
200
211
|
type OccupantFeature = ImdfFeature<OccupantGeometry, OccupantProperties> & {
|
|
201
212
|
feature_type: "occupant";
|