@zyacreatives/shared 1.6.3 → 1.6.4
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 +2 -7
- package/dist/constants.js +2 -3
- package/package.json +1 -1
- package/src/constants.ts +3 -7
package/dist/constants.d.ts
CHANGED
|
@@ -80,17 +80,12 @@ export declare const INVESTOR_VERIFICATION_DOCUMENT_TYPES: {
|
|
|
80
80
|
readonly BUSINESS_REGISTRATION: "BUSINESS_REGISTRATION";
|
|
81
81
|
readonly OTHER_CERTIFICATE: "OTHER_CERTIFICATE";
|
|
82
82
|
};
|
|
83
|
-
export declare const
|
|
84
|
-
readonly PROJECT: "PROJECT";
|
|
85
|
-
readonly POST: "POST";
|
|
86
|
-
};
|
|
87
|
-
export declare const COMMENT_PARENT_TYPES: {
|
|
83
|
+
export declare const ACTIVITY_PARENT_TYPES: {
|
|
88
84
|
readonly PROJECT: "PROJECT";
|
|
89
85
|
readonly POST: "POST";
|
|
90
86
|
};
|
|
91
87
|
export type Role = (typeof ROLES)[keyof typeof ROLES];
|
|
92
|
-
export type
|
|
93
|
-
export type CommentParentType = (typeof COMMENT_PARENT_TYPES)[keyof typeof COMMENT_PARENT_TYPES];
|
|
88
|
+
export type ActivityParentType = (typeof ACTIVITY_PARENT_TYPES)[keyof typeof ACTIVITY_PARENT_TYPES];
|
|
94
89
|
export type UserStatus = (typeof USER_STATUSES)[keyof typeof USER_STATUSES];
|
|
95
90
|
export type ClientType = (typeof CLIENT_TYPES)[keyof typeof CLIENT_TYPES];
|
|
96
91
|
export type ExperienceLevel = (typeof EXPERIENCE_LEVELS)[keyof typeof EXPERIENCE_LEVELS];
|
package/dist/constants.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DEFAULT_DISCIPLINES = exports.API_ROUTES = exports.
|
|
3
|
+
exports.DEFAULT_DISCIPLINES = exports.API_ROUTES = exports.ACTIVITY_PARENT_TYPES = exports.INVESTOR_VERIFICATION_DOCUMENT_TYPES = exports.INVESTOR_VERIFICATION_DOCUMENT_STATUSES = exports.GEOGRAPHIC_FOCUS = exports.INVESTMENT_SIZES = exports.INVESTOR_TYPES = exports.ONBOARDING_PAGES = exports.EXPERIENCE_LEVELS = exports.CLIENT_TYPES = exports.USER_STATUSES = exports.ROLES = void 0;
|
|
4
4
|
exports.ROLES = {
|
|
5
5
|
CREATIVE: "CREATIVE",
|
|
6
6
|
BRAND: "BRAND",
|
|
@@ -83,11 +83,10 @@ exports.INVESTOR_VERIFICATION_DOCUMENT_TYPES = {
|
|
|
83
83
|
BUSINESS_REGISTRATION: "BUSINESS_REGISTRATION",
|
|
84
84
|
OTHER_CERTIFICATE: "OTHER_CERTIFICATE",
|
|
85
85
|
};
|
|
86
|
-
exports.
|
|
86
|
+
exports.ACTIVITY_PARENT_TYPES = {
|
|
87
87
|
PROJECT: "PROJECT",
|
|
88
88
|
POST: "POST",
|
|
89
89
|
};
|
|
90
|
-
exports.COMMENT_PARENT_TYPES = exports.LIKE_PARENT_TYPES;
|
|
91
90
|
exports.API_ROUTES = {
|
|
92
91
|
healthCheck: "/health",
|
|
93
92
|
username: {
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED
|
@@ -90,18 +90,14 @@ export const INVESTOR_VERIFICATION_DOCUMENT_TYPES = {
|
|
|
90
90
|
OTHER_CERTIFICATE: "OTHER_CERTIFICATE",
|
|
91
91
|
} as const;
|
|
92
92
|
|
|
93
|
-
export const
|
|
93
|
+
export const ACTIVITY_PARENT_TYPES = {
|
|
94
94
|
PROJECT: "PROJECT",
|
|
95
95
|
POST: "POST",
|
|
96
96
|
} as const;
|
|
97
97
|
|
|
98
|
-
export const COMMENT_PARENT_TYPES = LIKE_PARENT_TYPES;
|
|
99
|
-
|
|
100
98
|
export type Role = (typeof ROLES)[keyof typeof ROLES];
|
|
101
|
-
export type
|
|
102
|
-
(typeof
|
|
103
|
-
export type CommentParentType =
|
|
104
|
-
(typeof COMMENT_PARENT_TYPES)[keyof typeof COMMENT_PARENT_TYPES];
|
|
99
|
+
export type ActivityParentType =
|
|
100
|
+
(typeof ACTIVITY_PARENT_TYPES)[keyof typeof ACTIVITY_PARENT_TYPES];
|
|
105
101
|
export type UserStatus = (typeof USER_STATUSES)[keyof typeof USER_STATUSES];
|
|
106
102
|
export type ClientType = (typeof CLIENT_TYPES)[keyof typeof CLIENT_TYPES];
|
|
107
103
|
export type ExperienceLevel =
|