@experts_hub/shared 1.0.174 → 1.0.176

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.
@@ -0,0 +1,5 @@
1
+ export declare class CreateCmsDto {
2
+ title: string;
3
+ content: string;
4
+ isActive: boolean;
5
+ }
@@ -0,0 +1,2 @@
1
+ export * from './create-cms.dto';
2
+ export * from './update-cms.dto';
@@ -0,0 +1,6 @@
1
+ export declare class UpdateCmsDto {
2
+ uuid: string;
3
+ title: string;
4
+ content: string;
5
+ isActive: boolean;
6
+ }
@@ -0,0 +1,2 @@
1
+ export * from './pattern/pattern';
2
+ export * from './dto';
@@ -0,0 +1,7 @@
1
+ export declare const CMS_PATTERNS: {
2
+ fetchCms: string;
3
+ createCms: string;
4
+ updateCms: string;
5
+ deleteCms: string;
6
+ findCmsById: string;
7
+ };
@@ -22,3 +22,4 @@ export * from './user/freelancer-skill';
22
22
  export * from './freelancer-admin';
23
23
  export * from './client-admin';
24
24
  export * from './user/freelancer-declaration';
25
+ export * from './cms';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.174",
3
+ "version": "1.0.176",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",