@zyacreatives/shared 1.7.1 → 1.7.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.
@@ -85,11 +85,11 @@ export declare const ACTIVITY_PARENT_TYPES: {
85
85
  readonly POST: "POST";
86
86
  };
87
87
  export declare const POST_TYPES: {
88
- MARKETPLACE: string;
89
- PROJECT: string;
90
- JOB_OPENING: string;
91
- DEFAULT_POST: string;
92
- POST_WITH_MEDIA: string;
88
+ readonly MARKETPLACE: "MARKETPLACE";
89
+ readonly PROJECT: "PROJECT";
90
+ readonly JOB_OPENING: "JOB_OPENING";
91
+ readonly DEFAULT_POST: "DEFAULT_POST";
92
+ readonly POST_WITH_MEDIA: "POST_WITH_MEDIA";
93
93
  };
94
94
  export type Role = (typeof ROLES)[keyof typeof ROLES];
95
95
  export type PostType = (typeof POST_TYPES)[keyof typeof POST_TYPES];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/constants.ts CHANGED
@@ -101,7 +101,7 @@ export const POST_TYPES = {
101
101
  JOB_OPENING: "JOB_OPENING",
102
102
  DEFAULT_POST: "DEFAULT_POST",
103
103
  POST_WITH_MEDIA: "POST_WITH_MEDIA",
104
- };
104
+ } as const;
105
105
 
106
106
  export type Role = (typeof ROLES)[keyof typeof ROLES];
107
107
  export type PostType = (typeof POST_TYPES)[keyof typeof POST_TYPES];