@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.
- package/dist/constants.d.ts +5 -5
- package/package.json +1 -1
- package/src/constants.ts +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -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:
|
|
89
|
-
PROJECT:
|
|
90
|
-
JOB_OPENING:
|
|
91
|
-
DEFAULT_POST:
|
|
92
|
-
POST_WITH_MEDIA:
|
|
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
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];
|