@websolutespa/payload-plugin-bowl 1.9.0 → 1.9.2
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/CHANGELOG.md +16 -0
- package/dist/index.d.ts +108 -28
- package/dist/index.js +2298 -1919
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @websolutespa/payload-plugin-bowl
|
|
2
2
|
|
|
3
|
+
## 1.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixing: empty EmailConfig action select options
|
|
8
|
+
|
|
9
|
+
## 1.9.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 4fdb8c2: Modified: withAction property createEndUser
|
|
14
|
+
- 50535c6: Modified withAction hooks & optin, endUser created on beforeChange
|
|
15
|
+
- 15ad595: Fixing: Static collection whereCollection
|
|
16
|
+
- 15ad595: Modified: payload local api consolidated overrideAccess
|
|
17
|
+
- eb9575b: Added: withAddress
|
|
18
|
+
|
|
3
19
|
## 1.9.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -2,12 +2,12 @@ import { Resource } from 'i18next';
|
|
|
2
2
|
import { Endpoint, AdminView, Locale as Locale$1, Config } from 'payload/config';
|
|
3
3
|
import { FieldBase, Tab, UIField } from 'payload/dist/fields/config/types';
|
|
4
4
|
import * as payload_types from 'payload/types';
|
|
5
|
-
import { PayloadRequest, SanitizedCollectionConfig, Field, CollectionAfterChangeHook, CollectionAfterDeleteHook, TypeWithID,
|
|
5
|
+
import { CollectionConfig, PayloadRequest, SanitizedCollectionConfig, Field, CollectionAfterChangeHook, CollectionAfterDeleteHook, TypeWithID, BeforeDuplicate, Where, Block, GlobalConfig, RichTextField, RelationshipField, CheckboxField, BlockField, DateField, TextField, GroupField, UploadField, ArrayField, NumberField, FieldHook, SelectField, CollapsibleField, RowField, TabsField } from 'payload/types';
|
|
6
6
|
import * as payload_dist_admin_components_forms_FieldDescription_types from 'payload/dist/admin/components/forms/FieldDescription/types';
|
|
7
7
|
import * as React from 'react';
|
|
8
8
|
import React__default, { ReactNode } from 'react';
|
|
9
9
|
import * as _websolutespa_bom_core from '@websolutespa/bom-core';
|
|
10
|
-
import { IRoute, IEquatable, ICategory, IEntity, ILocale, ICategorized, IMarket, IMemoryStore, ILocalizable, IMedia, MenuCategoryStrategy, IPageRelation, ISchema, IMenuItem, IMenuGroup, IMenuLink, IMenuPage, IMenuRoute, IMenu } from '@websolutespa/bom-core';
|
|
10
|
+
import { UserWithRoles, IRoute, IEquatable, ICategory, IEntity, ILocale, ICategorized, IMarket, IMemoryStore, ILocalizable, IMedia, MenuCategoryStrategy, IPageRelation, ISchema, IMenuItem, IMenuGroup, IMenuLink, IMenuPage, IMenuRoute, IMenu } from '@websolutespa/bom-core';
|
|
11
11
|
import { DocumentDrawerProps } from 'payload/dist/admin/components/elements/DocumentDrawer/types';
|
|
12
12
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
13
13
|
import { TreeDataProvider, TreeItemIndex, TreeItem, Disposable, TreeItemRenderContext, TreeInformation } from 'react-complex-tree';
|
|
@@ -21,32 +21,36 @@ import { Props as Props$3 } from 'payload/components/views/Cell';
|
|
|
21
21
|
import { Props as Props$4 } from 'payload/components/fields/Text';
|
|
22
22
|
import { FieldTypes } from 'payload/dist/admin/components/forms/field-types';
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
declare const isRole: (...roles: BowlRole[]) => ({ req: { user } }: {
|
|
24
|
+
type AccessArgs = {
|
|
26
25
|
req: {
|
|
27
26
|
user?: User;
|
|
27
|
+
payload: Payload;
|
|
28
28
|
};
|
|
29
|
-
}
|
|
30
|
-
declare const
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
};
|
|
30
|
+
declare const hasRole: (user: User, ...roles: BowlRole[]) => boolean;
|
|
31
|
+
declare const isRole: (...roles: BowlRole[]) => (args: AccessArgs) => boolean;
|
|
32
|
+
declare const isAdmin: (args: AccessArgs) => boolean;
|
|
33
|
+
declare const isSelf: (args: AccessArgs) => false | {
|
|
34
|
+
id: {
|
|
35
|
+
equals: string;
|
|
33
36
|
};
|
|
34
|
-
}
|
|
35
|
-
declare const
|
|
36
|
-
|
|
37
|
-
|
|
37
|
+
};
|
|
38
|
+
declare const isOwn: (args: AccessArgs) => false | {
|
|
39
|
+
'user.id': {
|
|
40
|
+
equals: string;
|
|
38
41
|
};
|
|
39
|
-
}
|
|
42
|
+
};
|
|
43
|
+
declare const isAdminOrSelf: (args: AccessArgs) => boolean | {
|
|
40
44
|
id: {
|
|
41
45
|
equals: string;
|
|
42
46
|
};
|
|
43
47
|
};
|
|
44
|
-
declare const
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
payload: Payload;
|
|
48
|
+
declare const isAdminOrOwn: (args: AccessArgs) => boolean | {
|
|
49
|
+
'user.id': {
|
|
50
|
+
equals: string;
|
|
48
51
|
};
|
|
49
|
-
}
|
|
52
|
+
};
|
|
53
|
+
declare const isTenant: (slug: string) => (args: AccessArgs) => false | {
|
|
50
54
|
id: {
|
|
51
55
|
in: string[];
|
|
52
56
|
};
|
|
@@ -72,8 +76,30 @@ declare const isTenant: (slug: string) => ({ req: { user, payload } }: {
|
|
|
72
76
|
}[];
|
|
73
77
|
};
|
|
74
78
|
|
|
79
|
+
type IEndUserConsentPreference = {
|
|
80
|
+
consentPreference: string;
|
|
81
|
+
date: string | Date;
|
|
82
|
+
};
|
|
83
|
+
type IEndUserData = Partial<UserWithRoles & {
|
|
84
|
+
consentPreferences?: IEndUserConsentPreference[];
|
|
85
|
+
}>;
|
|
75
86
|
declare const optinGet: Endpoint;
|
|
76
87
|
declare const optoutGet: Endpoint;
|
|
88
|
+
/**
|
|
89
|
+
* beforeValidateActionHook:
|
|
90
|
+
* check existing email address if createEndUser == 'user'
|
|
91
|
+
*/
|
|
92
|
+
declare const beforeValidateActionHook: (collectionConfig: CollectionConfig) => CollectionConfig['hooks']['beforeValidate'][number];
|
|
93
|
+
/**
|
|
94
|
+
* beforeChangeActionHook:
|
|
95
|
+
* assigning endUser id if user is logged in
|
|
96
|
+
*/
|
|
97
|
+
declare const beforeChangeActionHook: (collectionConfig: CollectionConfig) => CollectionConfig['hooks']['beforeChange'][number];
|
|
98
|
+
/**
|
|
99
|
+
* afterChangeActionHook:
|
|
100
|
+
* on operation create, send emails if the post data contains an emailData array
|
|
101
|
+
*/
|
|
102
|
+
declare const afterChangeActionHook: (collectionConfig: CollectionConfig) => CollectionConfig['hooks']['afterChange'][number];
|
|
77
103
|
|
|
78
104
|
type ICache<T = any> = {
|
|
79
105
|
timestamp: number;
|
|
@@ -517,11 +543,19 @@ type AfterOptHook<T extends TypeWithID = any> = (args: {
|
|
|
517
543
|
req: PayloadRequest;
|
|
518
544
|
}) => any;
|
|
519
545
|
type WithActionProps = (Omit<CollectionConfig, 'fields'> & {
|
|
520
|
-
fields
|
|
546
|
+
fields?: BowlField[];
|
|
521
547
|
views?: Record<string, AdminView>;
|
|
522
548
|
custom?: {
|
|
523
|
-
|
|
524
|
-
|
|
549
|
+
/**
|
|
550
|
+
*
|
|
551
|
+
* eg.
|
|
552
|
+
* contacts
|
|
553
|
+
* newsletter
|
|
554
|
+
* registration
|
|
555
|
+
* order guest
|
|
556
|
+
* order logged
|
|
557
|
+
*/
|
|
558
|
+
createEndUser?: false | 'guest' | 'user';
|
|
525
559
|
afterOptin?: AfterOptHook;
|
|
526
560
|
afterOptout?: AfterOptHook;
|
|
527
561
|
[key: string]: unknown;
|
|
@@ -537,6 +571,21 @@ declare const ActionDefault: Partial<CollectionConfig>;
|
|
|
537
571
|
*/
|
|
538
572
|
declare const withAction: (config: WithActionProps) => CollectionConfig;
|
|
539
573
|
|
|
574
|
+
type WithAddressProps = (Omit<CollectionConfig, 'fields'> & {
|
|
575
|
+
fields: BowlField[];
|
|
576
|
+
views?: Record<string, AdminView>;
|
|
577
|
+
});
|
|
578
|
+
type WithAddress = WithAddressProps & {
|
|
579
|
+
type: 'withAddress';
|
|
580
|
+
};
|
|
581
|
+
declare const AddressDefault: Partial<CollectionConfig>;
|
|
582
|
+
/**
|
|
583
|
+
*
|
|
584
|
+
* @param {WithAddressProps} config
|
|
585
|
+
* @returns {CollectionConfig} Return a `CollectionConfig` with inherited fields: `id`, `createdAt`, `updatedAt`.
|
|
586
|
+
*/
|
|
587
|
+
declare const withAddress: (config: WithAddressProps) => CollectionConfig;
|
|
588
|
+
|
|
540
589
|
type WithBlockProps = (Omit<Block, 'fields'> & {
|
|
541
590
|
fields: BowlField[];
|
|
542
591
|
});
|
|
@@ -566,6 +615,16 @@ declare const CollectionDefault: Partial<CollectionConfig>;
|
|
|
566
615
|
*/
|
|
567
616
|
declare const withCollection: (config: WithCollectionProps) => CollectionConfig;
|
|
568
617
|
|
|
618
|
+
type WithEndUserProps = (Omit<CollectionConfig, 'fields'> & {
|
|
619
|
+
fields?: BowlField[];
|
|
620
|
+
views?: Record<string, AdminView>;
|
|
621
|
+
});
|
|
622
|
+
type WithEndUser = WithEndUserProps & {
|
|
623
|
+
type: 'withEndUser';
|
|
624
|
+
};
|
|
625
|
+
declare const EndUserDefault: Partial<CollectionConfig>;
|
|
626
|
+
declare const withEndUser: (config: WithEndUserProps) => CollectionConfig;
|
|
627
|
+
|
|
569
628
|
type WithGlobalProps = (Omit<GlobalConfig, 'fields'> & {
|
|
570
629
|
fields: BowlField[];
|
|
571
630
|
views?: Record<string, AdminView>;
|
|
@@ -625,6 +684,16 @@ declare const StaticCollectionDefault: Partial<CollectionConfig>;
|
|
|
625
684
|
*/
|
|
626
685
|
declare const withStaticCollection: ({ src, map, duration, ...config }: WithStaticProps) => CollectionConfig;
|
|
627
686
|
|
|
687
|
+
type WithUserProps = (Omit<CollectionConfig, 'fields'> & {
|
|
688
|
+
fields?: BowlField[];
|
|
689
|
+
views?: Record<string, AdminView>;
|
|
690
|
+
});
|
|
691
|
+
type WithUser = WithUserProps & {
|
|
692
|
+
type: 'withUser';
|
|
693
|
+
};
|
|
694
|
+
declare const UserDefault: Partial<CollectionConfig>;
|
|
695
|
+
declare const withUser: (config: WithUserProps) => CollectionConfig;
|
|
696
|
+
|
|
628
697
|
declare function decorateCategory_<T extends ICategorized = ICategorized>(item: T, slug: string, context: MixerContext): Promise<T | T & {
|
|
629
698
|
category: ICategory;
|
|
630
699
|
}>;
|
|
@@ -1091,7 +1160,7 @@ type BowlTabsField = Omit<TabsField, 'tabs'> & {
|
|
|
1091
1160
|
};
|
|
1092
1161
|
type BowlField = Exclude<Field, ArrayField | BlockField | CollapsibleField | GroupField | RowField | TabsField> | BowlArrayField | BowlBlockField | BowlCollapsibleField | BowlGroupField | BowlRowField | BowlTabsField | WithAbstract | WithCategory | WithCheckbox | WithColor | WithComponents | WithDate | WithDescription | WithId | WithIsActive | WithIsDefault | WithLink | WithMarkets | WithMedia | WithMedias | WithName | WithOrder | WithRelated | WithRichText | WithSelect | WithSlug | WithTemplate | WithTenants | WithText | WithTitle | WithRoles;
|
|
1093
1162
|
type BowlBlock = Block | WithBlock;
|
|
1094
|
-
type BowlCollection = WithCollection | WithPage | WithStatic | WithMenu | WithAction | CollectionConfig & {
|
|
1163
|
+
type BowlCollection = WithCollection | WithPage | WithStatic | WithMenu | WithAction | WithAddress | WithUser | WithEndUser | CollectionConfig & {
|
|
1095
1164
|
type?: string;
|
|
1096
1165
|
views?: Record<string, AdminView>;
|
|
1097
1166
|
};
|
|
@@ -1099,11 +1168,11 @@ type BowlGlobal = WithGlobal | GlobalConfig & {
|
|
|
1099
1168
|
type?: string;
|
|
1100
1169
|
views?: Record<string, AdminView>;
|
|
1101
1170
|
};
|
|
1102
|
-
type
|
|
1103
|
-
type
|
|
1171
|
+
type BowlCollectionFunction = (options: BowlOptions) => BowlCollection;
|
|
1172
|
+
type BowlGlobalFunction = (options: BowlOptions) => BowlGlobal;
|
|
1104
1173
|
type BowlConfig = (Omit<Config, 'collections' | 'globals'> & {
|
|
1105
|
-
collections?: BowlCollection[];
|
|
1106
|
-
globals?: BowlGlobal[];
|
|
1174
|
+
collections?: (BowlCollection | BowlCollectionFunction)[];
|
|
1175
|
+
globals?: (BowlGlobal | BowlGlobalFunction)[];
|
|
1107
1176
|
});
|
|
1108
1177
|
type BowlSlug = {
|
|
1109
1178
|
media: string;
|
|
@@ -1119,7 +1188,6 @@ type BowlSlug = {
|
|
|
1119
1188
|
consentPreference: string;
|
|
1120
1189
|
users: string;
|
|
1121
1190
|
endUsers: string;
|
|
1122
|
-
endUserCredentials: string;
|
|
1123
1191
|
continent: string;
|
|
1124
1192
|
country: string;
|
|
1125
1193
|
countryZone: string;
|
|
@@ -1140,6 +1208,16 @@ type BowlGroup = {
|
|
|
1140
1208
|
i18n: string;
|
|
1141
1209
|
[key: string]: string;
|
|
1142
1210
|
};
|
|
1211
|
+
/**
|
|
1212
|
+
* Defaults user roles and endUser roles available on the bowl plugin configuration:
|
|
1213
|
+
*
|
|
1214
|
+
* admin: user role with super powers.
|
|
1215
|
+
* contributor: user role with minor powers.
|
|
1216
|
+
* editor: user role with content editing powers.
|
|
1217
|
+
* guest: endUser role with application reading capabilities.
|
|
1218
|
+
* user: endUser authenticated role with reserved data.
|
|
1219
|
+
*
|
|
1220
|
+
*/
|
|
1143
1221
|
declare const roles: {
|
|
1144
1222
|
readonly Admin: "admin";
|
|
1145
1223
|
readonly Contributor: "contributor";
|
|
@@ -1147,6 +1225,8 @@ declare const roles: {
|
|
|
1147
1225
|
readonly Guest: "guest";
|
|
1148
1226
|
readonly User: "user";
|
|
1149
1227
|
};
|
|
1228
|
+
declare const rolesUser: ("admin" | "contributor" | "editor")[];
|
|
1229
|
+
declare const rolesEndUser: ("guest" | "user")[];
|
|
1150
1230
|
type Values<T> = T[keyof T];
|
|
1151
1231
|
type BowlRole = Values<typeof roles> | string;
|
|
1152
1232
|
type BowlOptions = {
|
|
@@ -1209,4 +1289,4 @@ declare const Logo: React__default.FC;
|
|
|
1209
1289
|
|
|
1210
1290
|
declare function webpack(sourceConfig: BowlConfig): (config: any) => any;
|
|
1211
1291
|
|
|
1212
|
-
export { ActionDefault, AfterOptHook, BlockDefaults, BowlArrayField, BowlBlock, BowlBlockField, BowlCollapsibleField, BowlCollection, BowlConfig, BowlField, BowlGlobal, BowlGroup, BowlGroupField, BowlInitOptions, BowlOptions, BowlPlugin, BowlRole, BowlRowField, BowlSlug, BowlTab, BowlTabsField, CategoryDefaults, CategoryMenu, CategoryMenuProps, CategoryTree, CategoryTreeConflictProps, CategoryTreeItem, CategoryTreeItems, CategoryTreeProps, CheckboxDefaults, CollectionDefault,
|
|
1292
|
+
export { ActionDefault, AddressDefault, AfterOptHook, BlockDefaults, BowlArrayField, BowlBlock, BowlBlockField, BowlCollapsibleField, BowlCollection, BowlCollectionFunction, BowlConfig, BowlField, BowlGlobal, BowlGlobalFunction, BowlGroup, BowlGroupField, BowlInitOptions, BowlOptions, BowlPlugin, BowlRole, BowlRowField, BowlSlug, BowlTab, BowlTabsField, CategoryDefaults, CategoryMenu, CategoryMenuProps, CategoryTree, CategoryTreeConflictProps, CategoryTreeItem, CategoryTreeItems, CategoryTreeProps, CheckboxDefaults, CollectionDefault, ColorCell, ColorConfig, ColorField, ComponentsDefaults, CustomEditModal, CustomEditModalProps, DataTree, DataTreeDragItem, DataTreeInstance, DataTreeItem, DataTreeItemLi, DataTreeItemProps, DataTreeProps, DataTreeProvider, DataTreeRenameItem, DateDefaults, DebugField, DecoratedList, DecoratedListProps, EndUserDefault, FindOptions, GlobalDefault, GroupKey, IBulkAction, IBulkRecord, ICache, IEndUserConsentPreference, IEndUserData, IImportItem, IPage, IPageFull, IPagination, IRelation, IUndecoratedMenu, IUndecoratedMenuBase, IUndecoratedMenuCategory, IUndecoratedMenuCustom, IUndecoratedMenuGroup, IUndecoratedMenuItem, IUndecoratedMenuLink, IUndecoratedMenuPage, IUndecoratedNavItem, Icon, ImportExportList, ImportExportListProps, ImportExportRedirectList, ImportLogInvalidTypes, ImportLogType, ImportMode, InMemoryCache, InMemoryCacheOptions, KeyMapper, LeaveModal, LeaveWithoutSavingModal, LeaveWithoutSavingModalProps, LocalizedDescription, LocalizedDescriptionProps, Logo, MAX_INT, MarketDefaults, MediaDefaults, MediasDefaults, MenuItem, MixerContext, Option, OrderDefaults, PageDefault, PublicURL, Publish, ROOT_ITEM, RelatedDefaults, RichTextDefaults, RouteConflict, Save, SaveDraft, SelectDefaults, StaticCollectionConfig, StaticCollectionDefault, TemplateDefaults, TenantsDefault, TextDefaults, TreeItemData, TreeItems, UIStaticCell, UIStaticField, UserDefault, UserRolesDefaults, WithAbstract, WithAbstractProps, WithAction, WithActionProps, WithAddress, WithAddressProps, WithBlock, WithBlockProps, WithCategory, WithCategoryProps, WithCheckbox, WithCheckboxProps, WithCollection, WithCollectionProps, WithColor, WithColorProps, WithComponents, WithComponentsProps, WithDate, WithDateProps, WithDescription, WithDescriptionProps, WithEndUser, WithEndUserProps, WithGlobal, WithGlobalProps, WithId, WithIdProps, WithIsActive, WithIsActiveProps, WithIsDefault, WithIsDefaultProps, WithLink, WithLinkOptions, WithLinkProps, WithMarkets, WithMarketsProps, WithMedia, WithMediaProps, WithMedias, WithMediasProps, WithMenu, WithMenuProps, WithName, WithNameProps, WithOrder, WithOrderProps, WithPage, WithPageProps, WithRelated, WithRelatedProps, WithRichText, WithRichTextProps, WithRoles, WithRolesProps, WithSelect, WithSelectProps, WithSlug, WithSlugProps, WithStatic, WithStaticProps, WithTemplate, WithTemplateProps, WithTenants, WithTenantsProps, WithText, WithTextProps, WithTitle, WithTitleProps, WithUser, WithUserProps, afterCategoryChangeHook, afterCategoryDeleteHook, afterChangeActionHook, afterCollectionReadHook, afterMenuReadHook, afterPageChangeHook, afterPageDeleteHook, afterPageReadHook, afterReadItem, afterReadItems, afterStaticReadHook, appearanceOptions, beforeChangeActionHook, beforeDuplicateCollectionHook, beforeValidate, beforeValidateActionHook, bowl, collectionBulkPatch, collectionDetailGet, collectionExportGet, collectionImportPost, collectionIndexGet, collectionUpdatePatch, debugField, decorateCategories_, decorateCategory_, decorateHref_, decorateHrefs_, decorateMenuCategory_, decorateMenuGroup_, decorateMenuItem_, decorateMenuLink_, decorateMenuPage_, decorateMenuRoute_, decorateMenu_, decorateNavItem_, decorateNav_, decorateNavs_, decorateSchema_, decorateSchemas_, bowl as default, defaultGroup, defaultLocale, defaultLocales, defaultMarket, defaultSlug, encryptData, filterRoutes, findCollection, getApiUrl, getCollectionItem, getCollectionItems, getEachMarketLocale, getGlobalItems, getLivePreviewURL, getLocale, getNewCategoriesFromChanges, getNumericParam, getObjectParam, getPages, getPagination, getPreviewURL, getPublicURL, getRoute, getRouteByCategoryAndLocale, getRouteByItemAndLocale, getRoutes, getSearchUrl, getStaticLoader, getStringParam, getSubRequest, getTranslation, getTranslations, getTreeItemClassName, hasMarket, hasRole, importExportListWithParser, internalSlugs, isAdmin, isAdminOrOwn, isAdminOrSelf, isOwn, isRelation, isRole, isSelf, isTenant, isUndecoratedNavItem, keyWithRequest, localeGet, localizeCollection, localizeItem, log, logMissingTranslations, menuDetailGet, menuIndexGet, modalSlug, optinGet, options, optoutGet, pageDetailGet, pageIndexGet, parseDepth, redirectParser, richTextAfterReadHook, roles, rolesEndUser, rolesUser, routeChangesPost, routeGet, routePost, routePostHandler, setMixerContext, slugToLabel, slugToLabels, sortByGroup, sortCollection, staticCollectionLoaders, staticCollections, staticDetailGet, staticIndexGet, storeGet, toBlock, toCollection, toField, toGlobal, toTab, translateBlock, translateBlocks, translateCollection, translateField, translateFields, translateGlobal, translateTab, translateTabs, webpack, whereCollection, withAbstract, withAbstractRequired, withAction, withAddress, withBlock, withCategory, withCategoryRequired, withCheckbox, withCheckboxRequired, withCollection, withColor, withColorRequired, withComponents, withDate, withDateRequired, withDescription, withDescriptionRequired, withEndUser, withGlobal, withId, withIdRequired, withIsActive, withIsActiveRequired, withIsDefault, withIsDefaultRequired, withLink, withLocalizedDescription, withMarkets, withMarketsRequired, withMedia, withMediaRequired, withMedias, withMediasRequired, withMenu, withName, withNameRequired, withOrder, withOrderRequired, withPage, withRelated, withRichText, withRichTextRequired, withRoles, withSelect, withSelectRequired, withSlug, withSlugRequired, withStaticCollection, withTemplate, withTemplateRequired, withTenants, withText, withTextRequired, withTitle, withTitleRequired, withUIStatic, withUser };
|