@glidevvr/storage-payload-types-pkg 1.0.103 → 1.0.105
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/package.json +1 -1
- package/payload-types.ts +22 -16
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -430,6 +430,9 @@ export interface Market {
|
|
|
430
430
|
tenant?: (string | null) | Tenant;
|
|
431
431
|
title: string;
|
|
432
432
|
marketType: 'state' | 'city' | 'allFacilities';
|
|
433
|
+
unitCategory?: string[];
|
|
434
|
+
unitFeature?: string[];
|
|
435
|
+
facilityFeature?: (string | FacilityFeature)[] | null;
|
|
433
436
|
country: 'USA' | 'Canada';
|
|
434
437
|
state?: string | null;
|
|
435
438
|
city?: string | null;
|
|
@@ -483,6 +486,22 @@ export interface Market {
|
|
|
483
486
|
createdAt: string;
|
|
484
487
|
_status?: ('draft' | 'published') | null;
|
|
485
488
|
}
|
|
489
|
+
/**
|
|
490
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
491
|
+
* via the `definition` "facility-features".
|
|
492
|
+
*/
|
|
493
|
+
export interface FacilityFeature {
|
|
494
|
+
id: string;
|
|
495
|
+
tenant?: (string | null) | Tenant;
|
|
496
|
+
name: string;
|
|
497
|
+
description?: string | null;
|
|
498
|
+
icon?: string | null;
|
|
499
|
+
slug: string;
|
|
500
|
+
createdBy?: string | null;
|
|
501
|
+
updatedBy?: string | null;
|
|
502
|
+
updatedAt: string;
|
|
503
|
+
createdAt: string;
|
|
504
|
+
}
|
|
486
505
|
/**
|
|
487
506
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
488
507
|
* via the `definition` "ArchiveBlock".
|
|
@@ -906,22 +925,6 @@ export interface Brand {
|
|
|
906
925
|
updatedAt: string;
|
|
907
926
|
createdAt: string;
|
|
908
927
|
}
|
|
909
|
-
/**
|
|
910
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
911
|
-
* via the `definition` "facility-features".
|
|
912
|
-
*/
|
|
913
|
-
export interface FacilityFeature {
|
|
914
|
-
id: string;
|
|
915
|
-
tenant?: (string | null) | Tenant;
|
|
916
|
-
name: string;
|
|
917
|
-
description?: string | null;
|
|
918
|
-
icon?: string | null;
|
|
919
|
-
slug: string;
|
|
920
|
-
createdBy?: string | null;
|
|
921
|
-
updatedBy?: string | null;
|
|
922
|
-
updatedAt: string;
|
|
923
|
-
createdAt: string;
|
|
924
|
-
}
|
|
925
928
|
/**
|
|
926
929
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
927
930
|
* via the `definition` "ContentTabs".
|
|
@@ -2758,6 +2761,9 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2758
2761
|
tenant?: T;
|
|
2759
2762
|
title?: T;
|
|
2760
2763
|
marketType?: T;
|
|
2764
|
+
unitCategory?: T;
|
|
2765
|
+
unitFeature?: T;
|
|
2766
|
+
facilityFeature?: T;
|
|
2761
2767
|
country?: T;
|
|
2762
2768
|
state?: T;
|
|
2763
2769
|
city?: T;
|