@rxdrag/rxcms-models 0.1.2 → 0.1.3
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.ts +0 -1
- package/dist/index.mjs +0 -441
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -5
- package/dist/hooks/index.d.ts +0 -110
- package/dist/hooks/useDeleteAbility.d.ts +0 -8
- package/dist/hooks/useDeleteAbilityById.d.ts +0 -8
- package/dist/hooks/useDeleteCustomer.d.ts +0 -8
- package/dist/hooks/useDeleteCustomerById.d.ts +0 -8
- package/dist/hooks/useDeleteEnquiry.d.ts +0 -8
- package/dist/hooks/useDeleteEnquiryById.d.ts +0 -8
- package/dist/hooks/useDeleteLang.d.ts +0 -8
- package/dist/hooks/useDeleteLangById.d.ts +0 -8
- package/dist/hooks/useDeleteMedia.d.ts +0 -8
- package/dist/hooks/useDeleteMediaById.d.ts +0 -8
- package/dist/hooks/useDeleteMediaFolder.d.ts +0 -8
- package/dist/hooks/useDeleteMediaFolderById.d.ts +0 -8
- package/dist/hooks/useDeletePage.d.ts +0 -8
- package/dist/hooks/useDeletePageById.d.ts +0 -8
- package/dist/hooks/useDeletePost.d.ts +0 -8
- package/dist/hooks/useDeletePostById.d.ts +0 -8
- package/dist/hooks/useDeletePostCategory.d.ts +0 -8
- package/dist/hooks/useDeletePostCategoryById.d.ts +0 -8
- package/dist/hooks/useDeleteProduct.d.ts +0 -8
- package/dist/hooks/useDeleteProductById.d.ts +0 -8
- package/dist/hooks/useDeleteProductCategory.d.ts +0 -8
- package/dist/hooks/useDeleteProductCategoryById.d.ts +0 -8
- package/dist/hooks/useDeleteRole.d.ts +0 -8
- package/dist/hooks/useDeleteRoleById.d.ts +0 -8
- package/dist/hooks/useDeleteSlug.d.ts +0 -8
- package/dist/hooks/useDeleteSlugById.d.ts +0 -8
- package/dist/hooks/useDeleteTag.d.ts +0 -8
- package/dist/hooks/useDeleteTagById.d.ts +0 -8
- package/dist/hooks/useDeleteTemplate.d.ts +0 -8
- package/dist/hooks/useDeleteTemplateById.d.ts +0 -8
- package/dist/hooks/useDeleteTemplateCategory.d.ts +0 -8
- package/dist/hooks/useDeleteTemplateCategoryById.d.ts +0 -8
- package/dist/hooks/useDeleteTheme.d.ts +0 -8
- package/dist/hooks/useDeleteThemeById.d.ts +0 -8
- package/dist/hooks/useDeleteUser.d.ts +0 -8
- package/dist/hooks/useDeleteUserById.d.ts +0 -8
- package/dist/hooks/useDeleteWebsite.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteById.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteMeta.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteMetaById.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteSettings.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteSettingsById.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteType.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteTypeById.d.ts +0 -8
- package/dist/hooks/useUpsertOneAbility.d.ts +0 -8
- package/dist/hooks/useUpsertOneCustomer.d.ts +0 -8
- package/dist/hooks/useUpsertOneEnquiry.d.ts +0 -8
- package/dist/hooks/useUpsertOneLang.d.ts +0 -8
- package/dist/hooks/useUpsertOneMedia.d.ts +0 -8
- package/dist/hooks/useUpsertOneMediaFolder.d.ts +0 -8
- package/dist/hooks/useUpsertOnePage.d.ts +0 -8
- package/dist/hooks/useUpsertOnePost.d.ts +0 -8
- package/dist/hooks/useUpsertOnePostCategory.d.ts +0 -8
- package/dist/hooks/useUpsertOneProduct.d.ts +0 -8
- package/dist/hooks/useUpsertOneProductCategory.d.ts +0 -8
- package/dist/hooks/useUpsertOneRole.d.ts +0 -8
- package/dist/hooks/useUpsertOneSlug.d.ts +0 -8
- package/dist/hooks/useUpsertOneTag.d.ts +0 -8
- package/dist/hooks/useUpsertOneTemplate.d.ts +0 -8
- package/dist/hooks/useUpsertOneTemplateCategory.d.ts +0 -8
- package/dist/hooks/useUpsertOneTheme.d.ts +0 -8
- package/dist/hooks/useUpsertOneUser.d.ts +0 -8
- package/dist/hooks/useUpsertOneWebsite.d.ts +0 -8
- package/dist/hooks/useUpsertOneWebsiteMeta.d.ts +0 -8
- package/dist/hooks/useUpsertOneWebsiteSettings.d.ts +0 -8
- package/dist/hooks/useUpsertOneWebsiteType.d.ts +0 -8
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { MediaFolder, MediaFolderInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneMediaFolder(options?: IMutationOptions<MediaFolder> & IIndicatorOptions): [(value?: MediaFolderInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: MediaFolder | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { Page, PageInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOnePage(options?: IMutationOptions<Page> & IIndicatorOptions): [(value?: PageInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: Page | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { Post, PostInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOnePost(options?: IMutationOptions<Post> & IIndicatorOptions): [(value?: PostInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: Post | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { PostCategory, PostCategoryInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOnePostCategory(options?: IMutationOptions<PostCategory> & IIndicatorOptions): [(value?: PostCategoryInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: PostCategory | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { Product, ProductInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneProduct(options?: IMutationOptions<Product> & IIndicatorOptions): [(value?: ProductInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: Product | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { ProductCategory, ProductCategoryInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneProductCategory(options?: IMutationOptions<ProductCategory> & IIndicatorOptions): [(value?: ProductCategoryInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: ProductCategory | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { Role, RoleInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneRole(options?: IMutationOptions<Role> & IIndicatorOptions): [(value?: RoleInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: Role | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { Slug, SlugInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneSlug(options?: IMutationOptions<Slug> & IIndicatorOptions): [(value?: SlugInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: Slug | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { Tag, TagInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneTag(options?: IMutationOptions<Tag> & IIndicatorOptions): [(value?: TagInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: Tag | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { Template, TemplateInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneTemplate(options?: IMutationOptions<Template> & IIndicatorOptions): [(value?: TemplateInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: Template | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { TemplateCategory, TemplateCategoryInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneTemplateCategory(options?: IMutationOptions<TemplateCategory> & IIndicatorOptions): [(value?: TemplateCategoryInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: TemplateCategory | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { Theme, ThemeInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneTheme(options?: IMutationOptions<Theme> & IIndicatorOptions): [(value?: ThemeInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: Theme | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { User, UserInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneUser(options?: IMutationOptions<User> & IIndicatorOptions): [(value?: UserInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: User | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { Website, WebsiteInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneWebsite(options?: IMutationOptions<Website> & IIndicatorOptions): [(value?: WebsiteInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: Website | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { WebsiteMeta, WebsiteMetaInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneWebsiteMeta(options?: IMutationOptions<WebsiteMeta> & IIndicatorOptions): [(value?: WebsiteMetaInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: WebsiteMeta | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { WebsiteSettings, WebsiteSettingsInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneWebsiteSettings(options?: IMutationOptions<WebsiteSettings> & IIndicatorOptions): [(value?: WebsiteSettingsInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: WebsiteSettings | undefined;
|
|
8
|
-
}];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
-
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
-
import { WebsiteType, WebsiteTypeInput } from '../interfaces';
|
|
4
|
-
export declare function useUpsertOneWebsiteType(options?: IMutationOptions<WebsiteType> & IIndicatorOptions): [(value?: WebsiteTypeInput | undefined) => void, {
|
|
5
|
-
isMutating?: boolean | undefined;
|
|
6
|
-
error?: Error | undefined;
|
|
7
|
-
data?: WebsiteType | undefined;
|
|
8
|
-
}];
|