@glidevvr/storage-payload-types-pkg 1.0.162 → 1.0.163
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 +420 -420
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -165,21 +165,21 @@ export interface Config {
|
|
|
165
165
|
blocks: {};
|
|
166
166
|
collections: {
|
|
167
167
|
pages: Page;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
168
|
+
facilities: Facility;
|
|
169
|
+
'facility-features': FacilityFeature;
|
|
170
|
+
markets: Market;
|
|
171
171
|
posts: Post;
|
|
172
172
|
categories: Category;
|
|
173
|
+
media: Media;
|
|
173
174
|
menus: Menu;
|
|
174
175
|
brands: Brand;
|
|
175
|
-
facilities: Facility;
|
|
176
|
-
markets: Market;
|
|
177
|
-
'facility-features': FacilityFeature;
|
|
178
|
-
'deletion-logs': DeletionLog;
|
|
179
|
-
redirects: Redirect;
|
|
180
|
-
builds: Build;
|
|
181
176
|
forms: Form;
|
|
182
177
|
'form-submissions': FormSubmission;
|
|
178
|
+
tenants: Tenant;
|
|
179
|
+
redirects: Redirect;
|
|
180
|
+
users: User;
|
|
181
|
+
builds: Build;
|
|
182
|
+
'deletion-logs': DeletionLog;
|
|
183
183
|
'payload-jobs': PayloadJob;
|
|
184
184
|
'payload-locked-documents': PayloadLockedDocument;
|
|
185
185
|
'payload-preferences': PayloadPreference;
|
|
@@ -192,21 +192,21 @@ export interface Config {
|
|
|
192
192
|
};
|
|
193
193
|
collectionsSelect: {
|
|
194
194
|
pages: PagesSelect<false> | PagesSelect<true>;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
195
|
+
facilities: FacilitiesSelect<false> | FacilitiesSelect<true>;
|
|
196
|
+
'facility-features': FacilityFeaturesSelect<false> | FacilityFeaturesSelect<true>;
|
|
197
|
+
markets: MarketsSelect<false> | MarketsSelect<true>;
|
|
198
198
|
posts: PostsSelect<false> | PostsSelect<true>;
|
|
199
199
|
categories: CategoriesSelect<false> | CategoriesSelect<true>;
|
|
200
|
+
media: MediaSelect<false> | MediaSelect<true>;
|
|
200
201
|
menus: MenusSelect<false> | MenusSelect<true>;
|
|
201
202
|
brands: BrandsSelect<false> | BrandsSelect<true>;
|
|
202
|
-
facilities: FacilitiesSelect<false> | FacilitiesSelect<true>;
|
|
203
|
-
markets: MarketsSelect<false> | MarketsSelect<true>;
|
|
204
|
-
'facility-features': FacilityFeaturesSelect<false> | FacilityFeaturesSelect<true>;
|
|
205
|
-
'deletion-logs': DeletionLogsSelect<false> | DeletionLogsSelect<true>;
|
|
206
|
-
redirects: RedirectsSelect<false> | RedirectsSelect<true>;
|
|
207
|
-
builds: BuildsSelect<false> | BuildsSelect<true>;
|
|
208
203
|
forms: FormsSelect<false> | FormsSelect<true>;
|
|
209
204
|
'form-submissions': FormSubmissionsSelect<false> | FormSubmissionsSelect<true>;
|
|
205
|
+
tenants: TenantsSelect<false> | TenantsSelect<true>;
|
|
206
|
+
redirects: RedirectsSelect<false> | RedirectsSelect<true>;
|
|
207
|
+
users: UsersSelect<false> | UsersSelect<true>;
|
|
208
|
+
builds: BuildsSelect<false> | BuildsSelect<true>;
|
|
209
|
+
'deletion-logs': DeletionLogsSelect<false> | DeletionLogsSelect<true>;
|
|
210
210
|
'payload-jobs': PayloadJobsSelect<false> | PayloadJobsSelect<true>;
|
|
211
211
|
'payload-locked-documents': PayloadLockedDocumentsSelect<false> | PayloadLockedDocumentsSelect<true>;
|
|
212
212
|
'payload-preferences': PayloadPreferencesSelect<false> | PayloadPreferencesSelect<true>;
|
|
@@ -1778,18 +1778,27 @@ export interface Menu {
|
|
|
1778
1778
|
createdAt: string;
|
|
1779
1779
|
}
|
|
1780
1780
|
/**
|
|
1781
|
+
* Form submissions are sent to the selected facility's email address.
|
|
1782
|
+
*
|
|
1781
1783
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1782
|
-
* via the `definition` "
|
|
1784
|
+
* via the `definition` "form-submissions".
|
|
1783
1785
|
*/
|
|
1784
|
-
export interface
|
|
1786
|
+
export interface FormSubmission {
|
|
1785
1787
|
id: string;
|
|
1786
1788
|
tenant?: (string | null) | Tenant;
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1789
|
+
form: string | Form;
|
|
1790
|
+
status?: string | null;
|
|
1791
|
+
/**
|
|
1792
|
+
* The response message from the SE API, or other error message.
|
|
1793
|
+
*/
|
|
1794
|
+
responseMessage?: string | null;
|
|
1795
|
+
submissionData?:
|
|
1796
|
+
| {
|
|
1797
|
+
field: string;
|
|
1798
|
+
value: string;
|
|
1799
|
+
id?: string | null;
|
|
1800
|
+
}[]
|
|
1801
|
+
| null;
|
|
1793
1802
|
updatedAt: string;
|
|
1794
1803
|
createdAt: string;
|
|
1795
1804
|
}
|
|
@@ -1829,27 +1838,18 @@ export interface Build {
|
|
|
1829
1838
|
createdAt: string;
|
|
1830
1839
|
}
|
|
1831
1840
|
/**
|
|
1832
|
-
* Form submissions are sent to the selected facility's email address.
|
|
1833
|
-
*
|
|
1834
1841
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1835
|
-
* via the `definition` "
|
|
1842
|
+
* via the `definition` "deletion-logs".
|
|
1836
1843
|
*/
|
|
1837
|
-
export interface
|
|
1844
|
+
export interface DeletionLog {
|
|
1838
1845
|
id: string;
|
|
1839
1846
|
tenant?: (string | null) | Tenant;
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
submissionData?:
|
|
1847
|
-
| {
|
|
1848
|
-
field: string;
|
|
1849
|
-
value: string;
|
|
1850
|
-
id?: string | null;
|
|
1851
|
-
}[]
|
|
1852
|
-
| null;
|
|
1847
|
+
collectionSlug: string;
|
|
1848
|
+
documentTitle?: string | null;
|
|
1849
|
+
documentId: string;
|
|
1850
|
+
deletedByName: string;
|
|
1851
|
+
deletedById: string;
|
|
1852
|
+
deletedOn: string;
|
|
1853
1853
|
updatedAt: string;
|
|
1854
1854
|
createdAt: string;
|
|
1855
1855
|
}
|
|
@@ -1957,16 +1957,16 @@ export interface PayloadLockedDocument {
|
|
|
1957
1957
|
value: string | Page;
|
|
1958
1958
|
} | null)
|
|
1959
1959
|
| ({
|
|
1960
|
-
relationTo: '
|
|
1961
|
-
value: string |
|
|
1960
|
+
relationTo: 'facilities';
|
|
1961
|
+
value: string | Facility;
|
|
1962
1962
|
} | null)
|
|
1963
1963
|
| ({
|
|
1964
|
-
relationTo: '
|
|
1965
|
-
value: string |
|
|
1964
|
+
relationTo: 'facility-features';
|
|
1965
|
+
value: string | FacilityFeature;
|
|
1966
1966
|
} | null)
|
|
1967
1967
|
| ({
|
|
1968
|
-
relationTo: '
|
|
1969
|
-
value: string |
|
|
1968
|
+
relationTo: 'markets';
|
|
1969
|
+
value: string | Market;
|
|
1970
1970
|
} | null)
|
|
1971
1971
|
| ({
|
|
1972
1972
|
relationTo: 'posts';
|
|
@@ -1976,6 +1976,10 @@ export interface PayloadLockedDocument {
|
|
|
1976
1976
|
relationTo: 'categories';
|
|
1977
1977
|
value: string | Category;
|
|
1978
1978
|
} | null)
|
|
1979
|
+
| ({
|
|
1980
|
+
relationTo: 'media';
|
|
1981
|
+
value: string | Media;
|
|
1982
|
+
} | null)
|
|
1979
1983
|
| ({
|
|
1980
1984
|
relationTo: 'menus';
|
|
1981
1985
|
value: string | Menu;
|
|
@@ -1985,36 +1989,32 @@ export interface PayloadLockedDocument {
|
|
|
1985
1989
|
value: string | Brand;
|
|
1986
1990
|
} | null)
|
|
1987
1991
|
| ({
|
|
1988
|
-
relationTo: '
|
|
1989
|
-
value: string |
|
|
1990
|
-
} | null)
|
|
1991
|
-
| ({
|
|
1992
|
-
relationTo: 'markets';
|
|
1993
|
-
value: string | Market;
|
|
1992
|
+
relationTo: 'forms';
|
|
1993
|
+
value: string | Form;
|
|
1994
1994
|
} | null)
|
|
1995
1995
|
| ({
|
|
1996
|
-
relationTo: '
|
|
1997
|
-
value: string |
|
|
1996
|
+
relationTo: 'form-submissions';
|
|
1997
|
+
value: string | FormSubmission;
|
|
1998
1998
|
} | null)
|
|
1999
1999
|
| ({
|
|
2000
|
-
relationTo: '
|
|
2001
|
-
value: string |
|
|
2000
|
+
relationTo: 'tenants';
|
|
2001
|
+
value: string | Tenant;
|
|
2002
2002
|
} | null)
|
|
2003
2003
|
| ({
|
|
2004
2004
|
relationTo: 'redirects';
|
|
2005
2005
|
value: string | Redirect;
|
|
2006
2006
|
} | null)
|
|
2007
2007
|
| ({
|
|
2008
|
-
relationTo: '
|
|
2009
|
-
value: string |
|
|
2008
|
+
relationTo: 'users';
|
|
2009
|
+
value: string | User;
|
|
2010
2010
|
} | null)
|
|
2011
2011
|
| ({
|
|
2012
|
-
relationTo: '
|
|
2013
|
-
value: string |
|
|
2012
|
+
relationTo: 'builds';
|
|
2013
|
+
value: string | Build;
|
|
2014
2014
|
} | null)
|
|
2015
2015
|
| ({
|
|
2016
|
-
relationTo: '
|
|
2017
|
-
value: string |
|
|
2016
|
+
relationTo: 'deletion-logs';
|
|
2017
|
+
value: string | DeletionLog;
|
|
2018
2018
|
} | null)
|
|
2019
2019
|
| ({
|
|
2020
2020
|
relationTo: 'payload-jobs';
|
|
@@ -2451,356 +2451,109 @@ export interface StorageDefenderBlockSelect<T extends boolean = true> {
|
|
|
2451
2451
|
}
|
|
2452
2452
|
/**
|
|
2453
2453
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2454
|
-
* via the `definition` "
|
|
2454
|
+
* via the `definition` "facilities_select".
|
|
2455
2455
|
*/
|
|
2456
|
-
export interface
|
|
2456
|
+
export interface FacilitiesSelect<T extends boolean = true> {
|
|
2457
2457
|
tenant?: T;
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
mimeType?: T;
|
|
2469
|
-
filesize?: T;
|
|
2470
|
-
width?: T;
|
|
2471
|
-
height?: T;
|
|
2472
|
-
focalX?: T;
|
|
2473
|
-
focalY?: T;
|
|
2474
|
-
sizes?:
|
|
2458
|
+
title?: T;
|
|
2459
|
+
seFacilityId?: T;
|
|
2460
|
+
comingSoon?: T;
|
|
2461
|
+
googlePlaceId?: T;
|
|
2462
|
+
brandSelection?: T;
|
|
2463
|
+
facilityFeatures?: T;
|
|
2464
|
+
facilityPaymentSystem?: T;
|
|
2465
|
+
gallery?: T;
|
|
2466
|
+
contentTabs?: T | ContentTabsSelect<T>;
|
|
2467
|
+
unitTableSettings?:
|
|
2475
2468
|
| T
|
|
2476
2469
|
| {
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
| T
|
|
2499
|
-
| {
|
|
2500
|
-
url?: T;
|
|
2501
|
-
width?: T;
|
|
2502
|
-
height?: T;
|
|
2503
|
-
mimeType?: T;
|
|
2504
|
-
filesize?: T;
|
|
2505
|
-
filename?: T;
|
|
2506
|
-
};
|
|
2470
|
+
selectedFacilities?: T;
|
|
2471
|
+
tableLayout?: T;
|
|
2472
|
+
buttonLayout?: T;
|
|
2473
|
+
vacancyNotice?: T;
|
|
2474
|
+
vacancyThreshold?: T;
|
|
2475
|
+
showAppliedPromoPrice?: T;
|
|
2476
|
+
unavailableUnits?: T;
|
|
2477
|
+
showNearbyUnits?: T;
|
|
2478
|
+
disableRental?: T;
|
|
2479
|
+
disableReservation?: T;
|
|
2480
|
+
disableSoftReservation?: T;
|
|
2481
|
+
rentalAppLocation?: T;
|
|
2482
|
+
rentalAppExternalUrl?: T;
|
|
2483
|
+
reservationAppLocation?: T;
|
|
2484
|
+
reservationAppExternalUrl?: T;
|
|
2485
|
+
softReservationAppLocation?: T;
|
|
2486
|
+
softReservationAppExternalUrl?: T;
|
|
2487
|
+
allowedCategories?: T;
|
|
2488
|
+
allowedFeatures?: T;
|
|
2489
|
+
sort?: T;
|
|
2490
|
+
groupBy?: T;
|
|
2507
2491
|
};
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
* via the `definition` "users_select".
|
|
2512
|
-
*/
|
|
2513
|
-
export interface UsersSelect<T extends boolean = true> {
|
|
2514
|
-
role?: T;
|
|
2515
|
-
username?: T;
|
|
2516
|
-
firstName?: T;
|
|
2517
|
-
lastName?: T;
|
|
2518
|
-
tenants?:
|
|
2492
|
+
facilityNotice?: T;
|
|
2493
|
+
marketNotice?: T;
|
|
2494
|
+
meta?:
|
|
2519
2495
|
| T
|
|
2520
2496
|
| {
|
|
2521
|
-
|
|
2522
|
-
|
|
2497
|
+
title?: T;
|
|
2498
|
+
description?: T;
|
|
2499
|
+
indexable?: T;
|
|
2523
2500
|
};
|
|
2501
|
+
slug?: T;
|
|
2502
|
+
parent?: T;
|
|
2524
2503
|
createdBy?: T;
|
|
2525
2504
|
updatedBy?: T;
|
|
2526
|
-
|
|
2527
|
-
createdAt?: T;
|
|
2528
|
-
enableAPIKey?: T;
|
|
2529
|
-
apiKey?: T;
|
|
2530
|
-
apiKeyIndex?: T;
|
|
2531
|
-
email?: T;
|
|
2532
|
-
resetPasswordToken?: T;
|
|
2533
|
-
resetPasswordExpiration?: T;
|
|
2534
|
-
salt?: T;
|
|
2535
|
-
hash?: T;
|
|
2536
|
-
loginAttempts?: T;
|
|
2537
|
-
lockUntil?: T;
|
|
2538
|
-
sessions?:
|
|
2505
|
+
breadcrumbs?:
|
|
2539
2506
|
| T
|
|
2540
2507
|
| {
|
|
2508
|
+
doc?: T;
|
|
2509
|
+
url?: T;
|
|
2510
|
+
label?: T;
|
|
2541
2511
|
id?: T;
|
|
2542
|
-
createdAt?: T;
|
|
2543
|
-
expiresAt?: T;
|
|
2544
2512
|
};
|
|
2513
|
+
updatedAt?: T;
|
|
2514
|
+
createdAt?: T;
|
|
2515
|
+
_status?: T;
|
|
2545
2516
|
}
|
|
2546
2517
|
/**
|
|
2547
2518
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2548
|
-
* via the `definition` "
|
|
2549
|
-
*/
|
|
2550
|
-
export interface TenantsSelect<T extends boolean = true> {
|
|
2551
|
-
name?: T;
|
|
2552
|
-
users?: T;
|
|
2553
|
-
allFacilitiesPage?: T;
|
|
2554
|
-
comingSoonForm?: T;
|
|
2555
|
-
paymentSystem?: T;
|
|
2556
|
-
siteWideNotice?: T;
|
|
2557
|
-
environment?: T;
|
|
2558
|
-
seCompanyId?: T;
|
|
2559
|
-
seApiKey?: T;
|
|
2560
|
-
googleApiBrowserKey?: T;
|
|
2561
|
-
googleApiServerKey?: T;
|
|
2562
|
-
cloudfrontDistributionId?: T;
|
|
2563
|
-
domain?: T;
|
|
2564
|
-
gtmId?: T;
|
|
2565
|
-
gsc?: T;
|
|
2566
|
-
websiteNotIndexable?: T;
|
|
2567
|
-
defaultBrand?: T;
|
|
2568
|
-
favicon?: T;
|
|
2569
|
-
bodyColor?: T;
|
|
2570
|
-
textColor?: T;
|
|
2571
|
-
neutralLightColor?: T;
|
|
2572
|
-
neutralDarkColor?: T;
|
|
2573
|
-
bodyFontSize?: T;
|
|
2574
|
-
socialMedia?: T | SocialMediaSelect<T>;
|
|
2575
|
-
storageDefender?: T;
|
|
2576
|
-
createdBy?: T;
|
|
2577
|
-
updatedBy?: T;
|
|
2578
|
-
updatedAt?: T;
|
|
2579
|
-
createdAt?: T;
|
|
2580
|
-
}
|
|
2581
|
-
/**
|
|
2582
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
2583
|
-
* via the `definition` "SocialMedia_select".
|
|
2584
|
-
*/
|
|
2585
|
-
export interface SocialMediaSelect<T extends boolean = true> {
|
|
2586
|
-
socialMediaIcon?: T;
|
|
2587
|
-
url?: T;
|
|
2588
|
-
screenReaderText?: T;
|
|
2589
|
-
id?: T;
|
|
2590
|
-
}
|
|
2591
|
-
/**
|
|
2592
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
2593
|
-
* via the `definition` "posts_select".
|
|
2519
|
+
* via the `definition` "ContentTabs_select".
|
|
2594
2520
|
*/
|
|
2595
|
-
export interface
|
|
2596
|
-
|
|
2597
|
-
title?: T;
|
|
2598
|
-
content?: T;
|
|
2599
|
-
meta?:
|
|
2521
|
+
export interface ContentTabsSelect<T extends boolean = true> {
|
|
2522
|
+
findUnit?:
|
|
2600
2523
|
| T
|
|
2601
2524
|
| {
|
|
2602
|
-
|
|
2603
|
-
description?: T;
|
|
2604
|
-
indexable?: T;
|
|
2525
|
+
content?: T;
|
|
2605
2526
|
};
|
|
2606
|
-
|
|
2607
|
-
author?: T;
|
|
2608
|
-
publishedAt?: T;
|
|
2609
|
-
featuredImage?: T;
|
|
2610
|
-
excerpt?: T;
|
|
2611
|
-
categories?: T;
|
|
2612
|
-
createdBy?: T;
|
|
2613
|
-
updatedBy?: T;
|
|
2614
|
-
updatedAt?: T;
|
|
2615
|
-
createdAt?: T;
|
|
2616
|
-
_status?: T;
|
|
2617
|
-
}
|
|
2618
|
-
/**
|
|
2619
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
2620
|
-
* via the `definition` "categories_select".
|
|
2621
|
-
*/
|
|
2622
|
-
export interface CategoriesSelect<T extends boolean = true> {
|
|
2623
|
-
tenant?: T;
|
|
2624
|
-
title?: T;
|
|
2625
|
-
description?: T;
|
|
2626
|
-
meta?:
|
|
2527
|
+
features?:
|
|
2627
2528
|
| T
|
|
2628
2529
|
| {
|
|
2629
|
-
|
|
2630
|
-
description?: T;
|
|
2631
|
-
indexable?: T;
|
|
2530
|
+
content?: T;
|
|
2632
2531
|
};
|
|
2633
|
-
|
|
2634
|
-
createdBy?: T;
|
|
2635
|
-
updatedBy?: T;
|
|
2636
|
-
updatedAt?: T;
|
|
2637
|
-
createdAt?: T;
|
|
2638
|
-
_status?: T;
|
|
2639
|
-
}
|
|
2640
|
-
/**
|
|
2641
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
2642
|
-
* via the `definition` "menus_select".
|
|
2643
|
-
*/
|
|
2644
|
-
export interface MenusSelect<T extends boolean = true> {
|
|
2645
|
-
tenant?: T;
|
|
2646
|
-
title?: T;
|
|
2647
|
-
location?: T;
|
|
2648
|
-
navItems?: T | NavItemSelect<T>;
|
|
2649
|
-
createdBy?: T;
|
|
2650
|
-
updatedBy?: T;
|
|
2651
|
-
updatedAt?: T;
|
|
2652
|
-
createdAt?: T;
|
|
2653
|
-
}
|
|
2654
|
-
/**
|
|
2655
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
2656
|
-
* via the `definition` "NavItem_select".
|
|
2657
|
-
*/
|
|
2658
|
-
export interface NavItemSelect<T extends boolean = true> {
|
|
2659
|
-
link?:
|
|
2532
|
+
about?:
|
|
2660
2533
|
| T
|
|
2661
2534
|
| {
|
|
2662
|
-
|
|
2663
|
-
newTab?: T;
|
|
2664
|
-
reference?: T;
|
|
2665
|
-
url?: T;
|
|
2666
|
-
label?: T;
|
|
2535
|
+
content?: T;
|
|
2667
2536
|
};
|
|
2668
|
-
|
|
2537
|
+
map?:
|
|
2669
2538
|
| T
|
|
2670
2539
|
| {
|
|
2671
|
-
|
|
2672
|
-
| T
|
|
2673
|
-
| {
|
|
2674
|
-
type?: T;
|
|
2675
|
-
newTab?: T;
|
|
2676
|
-
reference?: T;
|
|
2677
|
-
url?: T;
|
|
2678
|
-
label?: T;
|
|
2679
|
-
};
|
|
2680
|
-
secondLevelSubmenu?:
|
|
2681
|
-
| T
|
|
2682
|
-
| {
|
|
2683
|
-
link?:
|
|
2684
|
-
| T
|
|
2685
|
-
| {
|
|
2686
|
-
type?: T;
|
|
2687
|
-
newTab?: T;
|
|
2688
|
-
reference?: T;
|
|
2689
|
-
url?: T;
|
|
2690
|
-
label?: T;
|
|
2691
|
-
};
|
|
2692
|
-
id?: T;
|
|
2693
|
-
};
|
|
2694
|
-
id?: T;
|
|
2540
|
+
content?: T;
|
|
2695
2541
|
};
|
|
2696
|
-
id?: T;
|
|
2697
2542
|
}
|
|
2698
2543
|
/**
|
|
2699
2544
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2700
|
-
* via the `definition` "
|
|
2545
|
+
* via the `definition` "facility-features_select".
|
|
2701
2546
|
*/
|
|
2702
|
-
export interface
|
|
2547
|
+
export interface FacilityFeaturesSelect<T extends boolean = true> {
|
|
2703
2548
|
tenant?: T;
|
|
2704
2549
|
name?: T;
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
primaryColor?: T;
|
|
2708
|
-
secondaryColor?: T;
|
|
2709
|
-
createdBy?: T;
|
|
2710
|
-
updatedBy?: T;
|
|
2711
|
-
updatedAt?: T;
|
|
2712
|
-
createdAt?: T;
|
|
2713
|
-
}
|
|
2714
|
-
/**
|
|
2715
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
2716
|
-
* via the `definition` "facilities_select".
|
|
2717
|
-
*/
|
|
2718
|
-
export interface FacilitiesSelect<T extends boolean = true> {
|
|
2719
|
-
tenant?: T;
|
|
2720
|
-
title?: T;
|
|
2721
|
-
seFacilityId?: T;
|
|
2722
|
-
comingSoon?: T;
|
|
2723
|
-
googlePlaceId?: T;
|
|
2724
|
-
brandSelection?: T;
|
|
2725
|
-
facilityFeatures?: T;
|
|
2726
|
-
facilityPaymentSystem?: T;
|
|
2727
|
-
gallery?: T;
|
|
2728
|
-
contentTabs?: T | ContentTabsSelect<T>;
|
|
2729
|
-
unitTableSettings?:
|
|
2730
|
-
| T
|
|
2731
|
-
| {
|
|
2732
|
-
selectedFacilities?: T;
|
|
2733
|
-
tableLayout?: T;
|
|
2734
|
-
buttonLayout?: T;
|
|
2735
|
-
vacancyNotice?: T;
|
|
2736
|
-
vacancyThreshold?: T;
|
|
2737
|
-
showAppliedPromoPrice?: T;
|
|
2738
|
-
unavailableUnits?: T;
|
|
2739
|
-
showNearbyUnits?: T;
|
|
2740
|
-
disableRental?: T;
|
|
2741
|
-
disableReservation?: T;
|
|
2742
|
-
disableSoftReservation?: T;
|
|
2743
|
-
rentalAppLocation?: T;
|
|
2744
|
-
rentalAppExternalUrl?: T;
|
|
2745
|
-
reservationAppLocation?: T;
|
|
2746
|
-
reservationAppExternalUrl?: T;
|
|
2747
|
-
softReservationAppLocation?: T;
|
|
2748
|
-
softReservationAppExternalUrl?: T;
|
|
2749
|
-
allowedCategories?: T;
|
|
2750
|
-
allowedFeatures?: T;
|
|
2751
|
-
sort?: T;
|
|
2752
|
-
groupBy?: T;
|
|
2753
|
-
};
|
|
2754
|
-
facilityNotice?: T;
|
|
2755
|
-
marketNotice?: T;
|
|
2756
|
-
meta?:
|
|
2757
|
-
| T
|
|
2758
|
-
| {
|
|
2759
|
-
title?: T;
|
|
2760
|
-
description?: T;
|
|
2761
|
-
indexable?: T;
|
|
2762
|
-
};
|
|
2550
|
+
description?: T;
|
|
2551
|
+
icon?: T;
|
|
2763
2552
|
slug?: T;
|
|
2764
|
-
parent?: T;
|
|
2765
2553
|
createdBy?: T;
|
|
2766
2554
|
updatedBy?: T;
|
|
2767
|
-
breadcrumbs?:
|
|
2768
|
-
| T
|
|
2769
|
-
| {
|
|
2770
|
-
doc?: T;
|
|
2771
|
-
url?: T;
|
|
2772
|
-
label?: T;
|
|
2773
|
-
id?: T;
|
|
2774
|
-
};
|
|
2775
2555
|
updatedAt?: T;
|
|
2776
2556
|
createdAt?: T;
|
|
2777
|
-
_status?: T;
|
|
2778
|
-
}
|
|
2779
|
-
/**
|
|
2780
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
2781
|
-
* via the `definition` "ContentTabs_select".
|
|
2782
|
-
*/
|
|
2783
|
-
export interface ContentTabsSelect<T extends boolean = true> {
|
|
2784
|
-
findUnit?:
|
|
2785
|
-
| T
|
|
2786
|
-
| {
|
|
2787
|
-
content?: T;
|
|
2788
|
-
};
|
|
2789
|
-
features?:
|
|
2790
|
-
| T
|
|
2791
|
-
| {
|
|
2792
|
-
content?: T;
|
|
2793
|
-
};
|
|
2794
|
-
about?:
|
|
2795
|
-
| T
|
|
2796
|
-
| {
|
|
2797
|
-
content?: T;
|
|
2798
|
-
};
|
|
2799
|
-
map?:
|
|
2800
|
-
| T
|
|
2801
|
-
| {
|
|
2802
|
-
content?: T;
|
|
2803
|
-
};
|
|
2804
2557
|
}
|
|
2805
2558
|
/**
|
|
2806
2559
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -2858,20 +2611,125 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2858
2611
|
label?: T;
|
|
2859
2612
|
id?: T;
|
|
2860
2613
|
};
|
|
2861
|
-
updatedAt?: T;
|
|
2862
|
-
createdAt?: T;
|
|
2863
|
-
_status?: T;
|
|
2614
|
+
updatedAt?: T;
|
|
2615
|
+
createdAt?: T;
|
|
2616
|
+
_status?: T;
|
|
2617
|
+
}
|
|
2618
|
+
/**
|
|
2619
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2620
|
+
* via the `definition` "posts_select".
|
|
2621
|
+
*/
|
|
2622
|
+
export interface PostsSelect<T extends boolean = true> {
|
|
2623
|
+
tenant?: T;
|
|
2624
|
+
title?: T;
|
|
2625
|
+
content?: T;
|
|
2626
|
+
meta?:
|
|
2627
|
+
| T
|
|
2628
|
+
| {
|
|
2629
|
+
title?: T;
|
|
2630
|
+
description?: T;
|
|
2631
|
+
indexable?: T;
|
|
2632
|
+
};
|
|
2633
|
+
slug?: T;
|
|
2634
|
+
author?: T;
|
|
2635
|
+
publishedAt?: T;
|
|
2636
|
+
featuredImage?: T;
|
|
2637
|
+
excerpt?: T;
|
|
2638
|
+
categories?: T;
|
|
2639
|
+
createdBy?: T;
|
|
2640
|
+
updatedBy?: T;
|
|
2641
|
+
updatedAt?: T;
|
|
2642
|
+
createdAt?: T;
|
|
2643
|
+
_status?: T;
|
|
2644
|
+
}
|
|
2645
|
+
/**
|
|
2646
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2647
|
+
* via the `definition` "categories_select".
|
|
2648
|
+
*/
|
|
2649
|
+
export interface CategoriesSelect<T extends boolean = true> {
|
|
2650
|
+
tenant?: T;
|
|
2651
|
+
title?: T;
|
|
2652
|
+
description?: T;
|
|
2653
|
+
meta?:
|
|
2654
|
+
| T
|
|
2655
|
+
| {
|
|
2656
|
+
title?: T;
|
|
2657
|
+
description?: T;
|
|
2658
|
+
indexable?: T;
|
|
2659
|
+
};
|
|
2660
|
+
slug?: T;
|
|
2661
|
+
createdBy?: T;
|
|
2662
|
+
updatedBy?: T;
|
|
2663
|
+
updatedAt?: T;
|
|
2664
|
+
createdAt?: T;
|
|
2665
|
+
_status?: T;
|
|
2666
|
+
}
|
|
2667
|
+
/**
|
|
2668
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2669
|
+
* via the `definition` "media_select".
|
|
2670
|
+
*/
|
|
2671
|
+
export interface MediaSelect<T extends boolean = true> {
|
|
2672
|
+
tenant?: T;
|
|
2673
|
+
isHeroImage?: T;
|
|
2674
|
+
alt?: T;
|
|
2675
|
+
caption?: T;
|
|
2676
|
+
createdBy?: T;
|
|
2677
|
+
updatedBy?: T;
|
|
2678
|
+
updatedAt?: T;
|
|
2679
|
+
createdAt?: T;
|
|
2680
|
+
url?: T;
|
|
2681
|
+
thumbnailURL?: T;
|
|
2682
|
+
filename?: T;
|
|
2683
|
+
mimeType?: T;
|
|
2684
|
+
filesize?: T;
|
|
2685
|
+
width?: T;
|
|
2686
|
+
height?: T;
|
|
2687
|
+
focalX?: T;
|
|
2688
|
+
focalY?: T;
|
|
2689
|
+
sizes?:
|
|
2690
|
+
| T
|
|
2691
|
+
| {
|
|
2692
|
+
thumbnail?:
|
|
2693
|
+
| T
|
|
2694
|
+
| {
|
|
2695
|
+
url?: T;
|
|
2696
|
+
width?: T;
|
|
2697
|
+
height?: T;
|
|
2698
|
+
mimeType?: T;
|
|
2699
|
+
filesize?: T;
|
|
2700
|
+
filename?: T;
|
|
2701
|
+
};
|
|
2702
|
+
medium?:
|
|
2703
|
+
| T
|
|
2704
|
+
| {
|
|
2705
|
+
url?: T;
|
|
2706
|
+
width?: T;
|
|
2707
|
+
height?: T;
|
|
2708
|
+
mimeType?: T;
|
|
2709
|
+
filesize?: T;
|
|
2710
|
+
filename?: T;
|
|
2711
|
+
};
|
|
2712
|
+
hero?:
|
|
2713
|
+
| T
|
|
2714
|
+
| {
|
|
2715
|
+
url?: T;
|
|
2716
|
+
width?: T;
|
|
2717
|
+
height?: T;
|
|
2718
|
+
mimeType?: T;
|
|
2719
|
+
filesize?: T;
|
|
2720
|
+
filename?: T;
|
|
2721
|
+
};
|
|
2722
|
+
};
|
|
2864
2723
|
}
|
|
2865
2724
|
/**
|
|
2866
2725
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2867
|
-
* via the `definition` "
|
|
2726
|
+
* via the `definition` "menus_select".
|
|
2868
2727
|
*/
|
|
2869
|
-
export interface
|
|
2728
|
+
export interface MenusSelect<T extends boolean = true> {
|
|
2870
2729
|
tenant?: T;
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
slug?: T;
|
|
2730
|
+
title?: T;
|
|
2731
|
+
location?: T;
|
|
2732
|
+
navItems?: T | NavItemSelect<T>;
|
|
2875
2733
|
createdBy?: T;
|
|
2876
2734
|
updatedBy?: T;
|
|
2877
2735
|
updatedAt?: T;
|
|
@@ -2879,46 +2737,64 @@ export interface FacilityFeaturesSelect<T extends boolean = true> {
|
|
|
2879
2737
|
}
|
|
2880
2738
|
/**
|
|
2881
2739
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2882
|
-
* via the `definition` "
|
|
2740
|
+
* via the `definition` "NavItem_select".
|
|
2883
2741
|
*/
|
|
2884
|
-
export interface
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2742
|
+
export interface NavItemSelect<T extends boolean = true> {
|
|
2743
|
+
link?:
|
|
2744
|
+
| T
|
|
2745
|
+
| {
|
|
2746
|
+
type?: T;
|
|
2747
|
+
newTab?: T;
|
|
2748
|
+
reference?: T;
|
|
2749
|
+
url?: T;
|
|
2750
|
+
label?: T;
|
|
2751
|
+
};
|
|
2752
|
+
firstLevelSubmenu?:
|
|
2753
|
+
| T
|
|
2754
|
+
| {
|
|
2755
|
+
link?:
|
|
2756
|
+
| T
|
|
2757
|
+
| {
|
|
2758
|
+
type?: T;
|
|
2759
|
+
newTab?: T;
|
|
2760
|
+
reference?: T;
|
|
2761
|
+
url?: T;
|
|
2762
|
+
label?: T;
|
|
2763
|
+
};
|
|
2764
|
+
secondLevelSubmenu?:
|
|
2765
|
+
| T
|
|
2766
|
+
| {
|
|
2767
|
+
link?:
|
|
2768
|
+
| T
|
|
2769
|
+
| {
|
|
2770
|
+
type?: T;
|
|
2771
|
+
newTab?: T;
|
|
2772
|
+
reference?: T;
|
|
2773
|
+
url?: T;
|
|
2774
|
+
label?: T;
|
|
2775
|
+
};
|
|
2776
|
+
id?: T;
|
|
2777
|
+
};
|
|
2778
|
+
id?: T;
|
|
2779
|
+
};
|
|
2780
|
+
id?: T;
|
|
2894
2781
|
}
|
|
2895
2782
|
/**
|
|
2896
2783
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2897
|
-
* via the `definition` "
|
|
2784
|
+
* via the `definition` "brands_select".
|
|
2898
2785
|
*/
|
|
2899
|
-
export interface
|
|
2786
|
+
export interface BrandsSelect<T extends boolean = true> {
|
|
2900
2787
|
tenant?: T;
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2788
|
+
name?: T;
|
|
2789
|
+
logo?: T;
|
|
2790
|
+
footerLogo?: T;
|
|
2791
|
+
primaryColor?: T;
|
|
2792
|
+
secondaryColor?: T;
|
|
2904
2793
|
createdBy?: T;
|
|
2905
2794
|
updatedBy?: T;
|
|
2906
2795
|
updatedAt?: T;
|
|
2907
2796
|
createdAt?: T;
|
|
2908
2797
|
}
|
|
2909
|
-
/**
|
|
2910
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
2911
|
-
* via the `definition` "builds_select".
|
|
2912
|
-
*/
|
|
2913
|
-
export interface BuildsSelect<T extends boolean = true> {
|
|
2914
|
-
tenant?: T;
|
|
2915
|
-
buildId?: T;
|
|
2916
|
-
uuid?: T;
|
|
2917
|
-
status?: T;
|
|
2918
|
-
createdBy?: T;
|
|
2919
|
-
updatedAt?: T;
|
|
2920
|
-
createdAt?: T;
|
|
2921
|
-
}
|
|
2922
2798
|
/**
|
|
2923
2799
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2924
2800
|
* via the `definition` "forms_select".
|
|
@@ -3061,6 +2937,130 @@ export interface FormSubmissionsSelect<T extends boolean = true> {
|
|
|
3061
2937
|
updatedAt?: T;
|
|
3062
2938
|
createdAt?: T;
|
|
3063
2939
|
}
|
|
2940
|
+
/**
|
|
2941
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2942
|
+
* via the `definition` "tenants_select".
|
|
2943
|
+
*/
|
|
2944
|
+
export interface TenantsSelect<T extends boolean = true> {
|
|
2945
|
+
name?: T;
|
|
2946
|
+
users?: T;
|
|
2947
|
+
allFacilitiesPage?: T;
|
|
2948
|
+
comingSoonForm?: T;
|
|
2949
|
+
paymentSystem?: T;
|
|
2950
|
+
siteWideNotice?: T;
|
|
2951
|
+
environment?: T;
|
|
2952
|
+
seCompanyId?: T;
|
|
2953
|
+
seApiKey?: T;
|
|
2954
|
+
googleApiBrowserKey?: T;
|
|
2955
|
+
googleApiServerKey?: T;
|
|
2956
|
+
cloudfrontDistributionId?: T;
|
|
2957
|
+
domain?: T;
|
|
2958
|
+
gtmId?: T;
|
|
2959
|
+
gsc?: T;
|
|
2960
|
+
websiteNotIndexable?: T;
|
|
2961
|
+
defaultBrand?: T;
|
|
2962
|
+
favicon?: T;
|
|
2963
|
+
bodyColor?: T;
|
|
2964
|
+
textColor?: T;
|
|
2965
|
+
neutralLightColor?: T;
|
|
2966
|
+
neutralDarkColor?: T;
|
|
2967
|
+
bodyFontSize?: T;
|
|
2968
|
+
socialMedia?: T | SocialMediaSelect<T>;
|
|
2969
|
+
storageDefender?: T;
|
|
2970
|
+
createdBy?: T;
|
|
2971
|
+
updatedBy?: T;
|
|
2972
|
+
updatedAt?: T;
|
|
2973
|
+
createdAt?: T;
|
|
2974
|
+
}
|
|
2975
|
+
/**
|
|
2976
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2977
|
+
* via the `definition` "SocialMedia_select".
|
|
2978
|
+
*/
|
|
2979
|
+
export interface SocialMediaSelect<T extends boolean = true> {
|
|
2980
|
+
socialMediaIcon?: T;
|
|
2981
|
+
url?: T;
|
|
2982
|
+
screenReaderText?: T;
|
|
2983
|
+
id?: T;
|
|
2984
|
+
}
|
|
2985
|
+
/**
|
|
2986
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2987
|
+
* via the `definition` "redirects_select".
|
|
2988
|
+
*/
|
|
2989
|
+
export interface RedirectsSelect<T extends boolean = true> {
|
|
2990
|
+
tenant?: T;
|
|
2991
|
+
from?: T;
|
|
2992
|
+
to?: T;
|
|
2993
|
+
type?: T;
|
|
2994
|
+
createdBy?: T;
|
|
2995
|
+
updatedBy?: T;
|
|
2996
|
+
updatedAt?: T;
|
|
2997
|
+
createdAt?: T;
|
|
2998
|
+
}
|
|
2999
|
+
/**
|
|
3000
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3001
|
+
* via the `definition` "users_select".
|
|
3002
|
+
*/
|
|
3003
|
+
export interface UsersSelect<T extends boolean = true> {
|
|
3004
|
+
role?: T;
|
|
3005
|
+
username?: T;
|
|
3006
|
+
firstName?: T;
|
|
3007
|
+
lastName?: T;
|
|
3008
|
+
tenants?:
|
|
3009
|
+
| T
|
|
3010
|
+
| {
|
|
3011
|
+
tenant?: T;
|
|
3012
|
+
id?: T;
|
|
3013
|
+
};
|
|
3014
|
+
createdBy?: T;
|
|
3015
|
+
updatedBy?: T;
|
|
3016
|
+
updatedAt?: T;
|
|
3017
|
+
createdAt?: T;
|
|
3018
|
+
enableAPIKey?: T;
|
|
3019
|
+
apiKey?: T;
|
|
3020
|
+
apiKeyIndex?: T;
|
|
3021
|
+
email?: T;
|
|
3022
|
+
resetPasswordToken?: T;
|
|
3023
|
+
resetPasswordExpiration?: T;
|
|
3024
|
+
salt?: T;
|
|
3025
|
+
hash?: T;
|
|
3026
|
+
loginAttempts?: T;
|
|
3027
|
+
lockUntil?: T;
|
|
3028
|
+
sessions?:
|
|
3029
|
+
| T
|
|
3030
|
+
| {
|
|
3031
|
+
id?: T;
|
|
3032
|
+
createdAt?: T;
|
|
3033
|
+
expiresAt?: T;
|
|
3034
|
+
};
|
|
3035
|
+
}
|
|
3036
|
+
/**
|
|
3037
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3038
|
+
* via the `definition` "builds_select".
|
|
3039
|
+
*/
|
|
3040
|
+
export interface BuildsSelect<T extends boolean = true> {
|
|
3041
|
+
tenant?: T;
|
|
3042
|
+
buildId?: T;
|
|
3043
|
+
uuid?: T;
|
|
3044
|
+
status?: T;
|
|
3045
|
+
createdBy?: T;
|
|
3046
|
+
updatedAt?: T;
|
|
3047
|
+
createdAt?: T;
|
|
3048
|
+
}
|
|
3049
|
+
/**
|
|
3050
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3051
|
+
* via the `definition` "deletion-logs_select".
|
|
3052
|
+
*/
|
|
3053
|
+
export interface DeletionLogsSelect<T extends boolean = true> {
|
|
3054
|
+
tenant?: T;
|
|
3055
|
+
collectionSlug?: T;
|
|
3056
|
+
documentTitle?: T;
|
|
3057
|
+
documentId?: T;
|
|
3058
|
+
deletedByName?: T;
|
|
3059
|
+
deletedById?: T;
|
|
3060
|
+
deletedOn?: T;
|
|
3061
|
+
updatedAt?: T;
|
|
3062
|
+
createdAt?: T;
|
|
3063
|
+
}
|
|
3064
3064
|
/**
|
|
3065
3065
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3066
3066
|
* via the `definition` "payload-jobs_select".
|
|
@@ -3137,14 +3137,6 @@ export interface TaskSchedulePublish {
|
|
|
3137
3137
|
relationTo: 'pages';
|
|
3138
3138
|
value: string | Page;
|
|
3139
3139
|
} | null)
|
|
3140
|
-
| ({
|
|
3141
|
-
relationTo: 'posts';
|
|
3142
|
-
value: string | Post;
|
|
3143
|
-
} | null)
|
|
3144
|
-
| ({
|
|
3145
|
-
relationTo: 'categories';
|
|
3146
|
-
value: string | Category;
|
|
3147
|
-
} | null)
|
|
3148
3140
|
| ({
|
|
3149
3141
|
relationTo: 'facilities';
|
|
3150
3142
|
value: string | Facility;
|
|
@@ -3152,6 +3144,14 @@ export interface TaskSchedulePublish {
|
|
|
3152
3144
|
| ({
|
|
3153
3145
|
relationTo: 'markets';
|
|
3154
3146
|
value: string | Market;
|
|
3147
|
+
} | null)
|
|
3148
|
+
| ({
|
|
3149
|
+
relationTo: 'posts';
|
|
3150
|
+
value: string | Post;
|
|
3151
|
+
} | null)
|
|
3152
|
+
| ({
|
|
3153
|
+
relationTo: 'categories';
|
|
3154
|
+
value: string | Category;
|
|
3155
3155
|
} | null);
|
|
3156
3156
|
global?: string | null;
|
|
3157
3157
|
user?: (string | null) | User;
|