@getcommunity/gc-validators 0.0.196 → 0.0.197
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/{chunk-OY5E6YKO.js → chunk-2JX4HLXP.js} +40 -6
- package/dist/chunk-2JX4HLXP.js.map +1 -0
- package/dist/{chunk-D6QV7LBY.cjs → chunk-2SMOF5R7.cjs} +609 -575
- package/dist/chunk-2SMOF5R7.cjs.map +1 -0
- package/dist/{chunk-7WQ6RNXX.js → chunk-7N7UME6I.js} +72 -3
- package/dist/chunk-7N7UME6I.js.map +1 -0
- package/dist/chunk-BHSJM3GA.cjs +4 -0
- package/dist/chunk-BHSJM3GA.cjs.map +1 -0
- package/dist/chunk-DZUPSCFM.js +3 -0
- package/dist/chunk-DZUPSCFM.js.map +1 -0
- package/dist/{chunk-MJPGUX4T.cjs → chunk-NDHBXD37.cjs} +78 -2
- package/dist/chunk-NDHBXD37.cjs.map +1 -0
- package/dist/{comment.document-DFTbLUjg.d.cts → comment.document-BYpo9fTo.d.cts} +10 -33
- package/dist/{comment.document-C-LqvG8c.d.ts → comment.document-BefWOXLs.d.ts} +10 -33
- package/dist/constants.cjs +128 -100
- package/dist/constants.d.cts +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/font.constants-BVwxlH3J.d.cts +52 -0
- package/dist/font.constants-BVwxlH3J.d.ts +52 -0
- package/dist/index.cjs +297 -297
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/permissions.d.cts +2 -2
- package/dist/permissions.d.ts +2 -2
- package/dist/schemas.cjs +169 -170
- package/dist/schemas.d.cts +27 -8
- package/dist/schemas.d.ts +27 -8
- package/dist/schemas.js +2 -3
- package/dist/types.cjs +1 -31
- package/dist/types.d.cts +12 -4
- package/dist/types.d.ts +12 -4
- package/dist/types.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-7WQ6RNXX.js.map +0 -1
- package/dist/chunk-D6QV7LBY.cjs.map +0 -1
- package/dist/chunk-HX7LBH7I.cjs +0 -80
- package/dist/chunk-HX7LBH7I.cjs.map +0 -1
- package/dist/chunk-MJPGUX4T.cjs.map +0 -1
- package/dist/chunk-OY5E6YKO.js.map +0 -1
- package/dist/chunk-UJQSM7DK.js +0 -72
- package/dist/chunk-UJQSM7DK.js.map +0 -1
- package/dist/font.constants-DyF4szgM.d.cts +0 -7
- package/dist/font.constants-DyF4szgM.d.ts +0 -7
|
@@ -1,8 +1,77 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
// src/constants/client-project.constants.ts
|
|
4
|
+
var ClientProjectStatusOptions = [
|
|
5
|
+
"coming-soon",
|
|
6
|
+
"now-open",
|
|
7
|
+
"for-sale",
|
|
8
|
+
"sold-out",
|
|
9
|
+
"available"
|
|
10
|
+
];
|
|
11
|
+
var ClientProjectPhaseSelectOptions = [
|
|
12
|
+
{
|
|
13
|
+
label: "Brand",
|
|
14
|
+
value: "brand",
|
|
15
|
+
description: "General/Company branded content"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
label: "Phase 1",
|
|
19
|
+
value: "p1",
|
|
20
|
+
description: "Interest list building"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
label: "Phase 2",
|
|
24
|
+
value: "p2",
|
|
25
|
+
description: "Pre-qualification, pre-sales"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
label: "Phase 3",
|
|
29
|
+
value: "p3",
|
|
30
|
+
description: "Grand opening, now open, available"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
label: "Phase 4",
|
|
34
|
+
value: "p4",
|
|
35
|
+
description: "For sale, maintenance period"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
label: "Phase 5",
|
|
39
|
+
value: "p5",
|
|
40
|
+
description: "Final sale"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
label: "Closed",
|
|
44
|
+
value: "closed",
|
|
45
|
+
description: "Sold out, no longer available"
|
|
46
|
+
}
|
|
47
|
+
];
|
|
48
|
+
var ClientProjectPhaseOptions = [
|
|
49
|
+
"brand",
|
|
50
|
+
"p1",
|
|
51
|
+
"p2",
|
|
52
|
+
"p3",
|
|
53
|
+
"p4",
|
|
54
|
+
"p5",
|
|
55
|
+
"closed"
|
|
56
|
+
];
|
|
57
|
+
|
|
3
58
|
// src/constants/client.constants.ts
|
|
4
59
|
var IsValidClientClassificationSelectOptions = ["organic", "paid"];
|
|
5
60
|
|
|
61
|
+
// src/constants/comment.constants.ts
|
|
62
|
+
var ReportCommentReason = {
|
|
63
|
+
BAD_LANGUAGE: "BAD_LANGUAGE",
|
|
64
|
+
DISCRIMINATION: "DISCRIMINATION",
|
|
65
|
+
OTHER: "OTHER"
|
|
66
|
+
};
|
|
67
|
+
var ReportCommentReasonOptions = Object.values(ReportCommentReason);
|
|
68
|
+
var CommentApprovalStatus = {
|
|
69
|
+
PENDING: "PENDING",
|
|
70
|
+
APPROVED: "APPROVED",
|
|
71
|
+
REJECTED: "REJECTED"
|
|
72
|
+
};
|
|
73
|
+
var CommentApprovalStatusOptions = Object.values(CommentApprovalStatus);
|
|
74
|
+
|
|
6
75
|
// src/constants/gc-contact-form-options.constants.ts
|
|
7
76
|
var ValidNumberOfEmployeeOptions = [
|
|
8
77
|
{ label: "0-10", value: "0-10" },
|
|
@@ -185,6 +254,11 @@ var REGEX_NANP_PHONE = /^(?:\+?1[\s.-]?)?(?:\(?([2-9]\d{2})\)?[\s.-]?)(?:([2-9](
|
|
|
185
254
|
var ERROR_MESSAGE_REGEX_URL_SLUG = `can only contain letters, numbers, and the special characters: - _ .`;
|
|
186
255
|
var REGEX_URL_SLUG = /^([a-zA-Z0-9._-]+)?$/;
|
|
187
256
|
|
|
257
|
+
exports.ClientProjectPhaseOptions = ClientProjectPhaseOptions;
|
|
258
|
+
exports.ClientProjectPhaseSelectOptions = ClientProjectPhaseSelectOptions;
|
|
259
|
+
exports.ClientProjectStatusOptions = ClientProjectStatusOptions;
|
|
260
|
+
exports.CommentApprovalStatus = CommentApprovalStatus;
|
|
261
|
+
exports.CommentApprovalStatusOptions = CommentApprovalStatusOptions;
|
|
188
262
|
exports.ERROR_MESSAGE_COMMA_SEPPARATED_URLS = ERROR_MESSAGE_COMMA_SEPPARATED_URLS;
|
|
189
263
|
exports.ERROR_MESSAGE_INVALID_URL = ERROR_MESSAGE_INVALID_URL;
|
|
190
264
|
exports.ERROR_MESSAGE_ONE_PROJECT_STATUS = ERROR_MESSAGE_ONE_PROJECT_STATUS;
|
|
@@ -278,11 +352,13 @@ exports.REGEX_BRAND_COLOR_SLUG = REGEX_BRAND_COLOR_SLUG;
|
|
|
278
352
|
exports.REGEX_NANP_PHONE = REGEX_NANP_PHONE;
|
|
279
353
|
exports.REGEX_URL_SLUG = REGEX_URL_SLUG;
|
|
280
354
|
exports.REGEX_UTM_VALUE = REGEX_UTM_VALUE;
|
|
355
|
+
exports.ReportCommentReason = ReportCommentReason;
|
|
356
|
+
exports.ReportCommentReasonOptions = ReportCommentReasonOptions;
|
|
281
357
|
exports.ValidGcDesiredContentOptions = ValidGcDesiredContentOptions;
|
|
282
358
|
exports.ValidGcServiceOptions = ValidGcServiceOptions;
|
|
283
359
|
exports.ValidGcVideoServiceOptions = ValidGcVideoServiceOptions;
|
|
284
360
|
exports.ValidJobRoleGroup = ValidJobRoleGroup;
|
|
285
361
|
exports.ValidNumberOfEmployeeOptions = ValidNumberOfEmployeeOptions;
|
|
286
362
|
exports.ValidRatingRange5 = ValidRatingRange5;
|
|
287
|
-
//# sourceMappingURL=chunk-
|
|
288
|
-
//# sourceMappingURL=chunk-
|
|
363
|
+
//# sourceMappingURL=chunk-NDHBXD37.cjs.map
|
|
364
|
+
//# sourceMappingURL=chunk-NDHBXD37.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/constants/client-project.constants.ts","../src/constants/client.constants.ts","../src/constants/comment.constants.ts","../src/constants/gc-contact-form-options.constants.ts","../src/constants/limits.constants.ts","../src/constants/message-response.constants.ts","../src/constants/pagination.constants.ts","../src/constants/regex.constants.ts"],"names":[],"mappings":"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","file":"chunk-NDHBXD37.cjs","sourcesContent":["export const ClientProjectStatusOptions = [\n \"coming-soon\",\n \"now-open\",\n \"for-sale\",\n \"sold-out\",\n \"available\"\n] as const\n\nexport const ClientProjectPhaseSelectOptions = [\n {\n label: \"Brand\",\n value: \"brand\",\n description: \"General/Company branded content\"\n },\n {\n label: \"Phase 1\",\n value: \"p1\",\n description: \"Interest list building\"\n },\n {\n label: \"Phase 2\",\n value: \"p2\",\n description: \"Pre-qualification, pre-sales\"\n },\n {\n label: \"Phase 3\",\n value: \"p3\",\n description: \"Grand opening, now open, available\"\n },\n {\n label: \"Phase 4\",\n value: \"p4\",\n description: \"For sale, maintenance period\"\n },\n {\n label: \"Phase 5\",\n value: \"p5\",\n description: \"Final sale\"\n },\n {\n label: \"Closed\",\n value: \"closed\",\n description: \"Sold out, no longer available\"\n }\n] as const\n\nexport const ClientProjectPhaseOptions = [\n \"brand\",\n \"p1\",\n \"p2\",\n \"p3\",\n \"p4\",\n \"p5\",\n \"closed\"\n] as const\n","export const IsValidClientClassificationSelectOptions = [\"organic\", \"paid\"] as const\n","// Comment Report Document\nexport const ReportCommentReason = {\n BAD_LANGUAGE: \"BAD_LANGUAGE\",\n DISCRIMINATION: \"DISCRIMINATION\",\n OTHER: \"OTHER\"\n} as const\n\nexport const ReportCommentReasonOptions = Object.values(ReportCommentReason)\n\n// Comment Document\nexport const CommentApprovalStatus = {\n PENDING: \"PENDING\",\n APPROVED: \"APPROVED\",\n REJECTED: \"REJECTED\"\n} as const\n\nexport const CommentApprovalStatusOptions = Object.values(CommentApprovalStatus)\n","export const ValidNumberOfEmployeeOptions = [\n { label: \"0-10\", value: \"0-10\" },\n { label: \"11-20\", value: \"11-20\" },\n { label: \"21-50\", value: \"21-50\" },\n { label: \"51-100\", value: \"51-100\" },\n { label: \"101-500\", value: \"101-500\" },\n { label: \"501+\", value: \"501+\" }\n] as const\n\nexport const ValidJobRoleGroup = [\n {\n label: \"Founder / Owner\",\n value: \"founder,owner\"\n },\n {\n label: \"C-suite Executive\",\n value: \"executive\"\n },\n {\n label: \"Vice President\",\n value: \"vice president\"\n },\n {\n label: \"Director\",\n value: \"director\"\n },\n {\n label: \"Manager\",\n value: \"manager\"\n },\n {\n label: \"Solo-prenour\",\n value: \"solo-prenour\"\n },\n {\n label: \"Student\",\n value: \"student\"\n }\n] as const\n\nexport const ValidGcServiceOptions = [\n { label: \"Full Marketing Services\", value: \"Full Marketing Services\" },\n {\n label: \"Graphic Design / Marketing Design\",\n value: \"Graphic Design / Marketing Design\"\n },\n { label: \"Text Message Marketing\", value: \"Text Message Marketing\" },\n { label: \"Email Marketing\", value: \"Email Marketing\" },\n { label: \"Video Production\", value: \"Video Production\" },\n { label: \"Website Production\", value: \"Website Production\" },\n { label: \"Marketing Automation Software\", value: \"Marketing Automation Software\" },\n { label: \"Online Advertising\", value: \"Online Advertising\" },\n { label: \"Influencer Marketing\", value: \"Influencer Marketing\" }\n] as const\n\nexport const ValidGcVideoServiceOptions = [\n { label: \"Storyboarding\", value: \"Storyboarding\" },\n { label: \"Voiceovers\", value: \"Voiceovers\" },\n { label: \"Video Commercials / Interviews\", value: \"Video Commercials / Interviews\" },\n {\n label: \"Short Form Video Editing (social posts/stories)\",\n value: \"Short Form Video Editing (social posts/stories)\"\n },\n { label: \"Product Tours\", value: \"Product Tours\" },\n { label: \"Model Home / Community Tours\", value: \"Model Home / Community Tours\" },\n { label: \"Matterport Interactive Tours\", value: \"Matterport Interactive Tours\" },\n { label: \"3D Flyover Videos\", value: \"3D Flyover Videos\" }\n] as const\n\nexport const ValidGcDesiredContentOptions = [\n { label: \"Blog Posts\", value: \"Blog Posts\" },\n { label: \"Podcasting\", value: \"Podcasting\" },\n { label: \"Live Streams\", value: \"Live Streams\" },\n { label: \"Newsletters\", value: \"Newsletters\" },\n { label: \"Freebies / Toolkits\", value: \"Freebies / Toolkits\" },\n { label: \"Community Updates\", value: \"Community Updates\" }\n] as const\n\nexport const ValidRatingRange5 = [\n { label: \"1\", value: \"1\" },\n { label: \"2\", value: \"2\" },\n { label: \"3\", value: \"3\" },\n { label: \"4\", value: \"4\" },\n { label: \"5\", value: \"5\" }\n] as const\n","// Generics\nexport const LIMIT_MIN_VALUE = 1\nexport const LIMIT_SHORT_STRING_MAX_LENGTH = 255\nexport const LIMIT_MEDIUM_STRING_MAX_LENGTH = 500\nexport const LIMIT_LONG_STRING_MAX_LENGTH = 5000\nexport const LIMIT_VAL_10 = 10\nexport const LIMIT_VAL_100 = 100\n// Users\nexport const LIMIT_MIN_USERNAME = 3\nexport const LIMIT_MAX_USERNAME = 255\nexport const LIMIT_MIN_EMAIL = 5\nexport const LIMIT_MAX_EMAIL = 255\nexport const LIMIT_MIN_PASSWORD = 8\nexport const LIMIT_MAX_PASSWORD = 255\nexport const LIMIT_MAX_PROVIDER = 255\nexport const LIMIT_MIN_PHONE = 7\nexport const LIMIT_MAX_PHONE = 24\n// URLs\nexport const LIMIT_MIN_DESTINATION = 10\nexport const LIMIT_MAX_DESTINATION = 2048\nexport const LIMIT_MIN_DOMAIN = 10\nexport const LIMIT_MAX_DOMAIN = 253\nexport const LIMIT_MIN_PATH = 1\nexport const LIMIT_MAX_PATH = 2038\nexport const LIMIT_MIN_QUERY = 1\nexport const LIMIT_MAX_QUERY = 2038\nexport const LIMIT_MIN_FRAGMENT = 1\nexport const LIMIT_MAX_FRAGMENT = 2038\n// UTM Parameters\nexport const LIMIT_MIN_UTM_KEY = 1\nexport const LIMIT_MAX_UTM_KEY = 255\nexport const LIMIT_MIN_UTM_SOURCE = 1\nexport const LIMIT_MAX_UTM_SOURCE = 2026\nexport const LIMIT_MIN_UTM_MEDIUM = 1\nexport const LIMIT_MAX_UTM_MEDIUM = 2026\nexport const LIMIT_MIN_UTM_CAMPAIGN = 1\nexport const LIMIT_MAX_UTM_CAMPAIGN = 2024\nexport const LIMIT_MIN_UTM_CREATIVE_FORMAT = 1\nexport const LIMIT_MAX_UTM_CREATIVE_FORMAT = 2017\nexport const LIMIT_MIN_UTM_CONTENT = 1\nexport const LIMIT_MAX_UTM_CONTENT = 2025\nexport const LIMIT_MIN_UTM_TERM = 1\nexport const LIMIT_MAX_UTM_TERM = 2028\nexport const LIMIT_MIN_UTM_ID = 1\nexport const LIMIT_MAX_UTM_ID = 2030\n","export const ERROR_MESSAGE_ROBOT = \"It appears you are a robot, please try again.\"\nexport const ERROR_MESSAGE_COMMA_SEPPARATED_URLS = `Please enter a list of URLs separated by commas.`\nexport const ERROR_MESSAGE_INVALID_URL = `Please enter a valid URL.`\nexport const ERROR_MESSAGE_UTM_URL = `Please enter a valid URL with UTM parameters.`\nexport const ERROR_MESSAGE_URL_NO_QUERY_PARAMS = `Please remove any query parameters from the URL.`\nexport const ERROR_MESSAGE_ONE_PROJECT_STATUS = `You can only select one project status.`\nexport const ERROR_MESSAGE_URL_PREFIX = `Please enter a valid URL starting with http or https.`\n","// Generics\nexport const LIMIT_TABLE_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_PAGINATION_DEFAULT_SIZE = 100\nexport const LIMIT_PAGINATION_MAX_SIZE = 10000\n// Entities\nexport const LIMIT_BLOG_POST_PAGINATION_DEFAULT_SIZE = 6\nexport const LIMIT_BLOG_POST_PAGINATION_MAX_SIZE = 20\nexport const LIMIT_CLIENT_PAGINATION_DEFAULT_SIZE = 20\nexport const LIMIT_CLIENT_PAGINATION_MAX_SIZE = 100\nexport const LIMIT_CLIENT_REPORT_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_CLIENT_REPORT_PAGINATION_MAX_SIZE = 100\nexport const LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_MAX_SIZE = 100\nexport const LIMIT_CLIENT_CONTENT_PILLAR_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_CLIENT_CONTENT_PILLAR_PAGINATION_MAX_SIZE = 100\nexport const LIMIT_CLIENT_PROJECT_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_CLIENT_PROJECT_PAGINATION_MAX_SIZE = 100\nexport const LIMIT_CLIENT_STYLEGUIDE_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_CLIENT_STYLEGUIDE_PAGINATION_MAX_SIZE = 100\nexport const LIMIT_CLIENT_USER_PAGINATION_DEFAULT_SIZE_LIMIT = 10\nexport const LIMIT_CLIENT_USER_PAGINATION_MAX_SIZE_LIMIT = 100\nexport const LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_MAX_SIZE = 100\nexport const LIMIT_PRODUCT_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_PRODUCT_PAGINATION_MAX_SIZE = 100\nexport const LIMIT_REDIRECT_PAGINATION_DEFAULT_SIZE = 1000\nexport const LIMIT_REDIRECT_PAGINATION_MAX_SIZE = 10000\nexport const LIMIT_TEAM_MEMBER_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_TEAM_MEMBER_PAGINATION_MAX_SIZE = 20\nexport const LIMIT_TREND_PAGINATION_DEFAULT_SIZE = 7\nexport const LIMIT_TREND_PAGINATION_MAX_SIZE = 100\nexport const LIMIT_USER_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_USER_PAGINATION_MAX_SIZE = 10\nexport const LIMIT_CATEGORIES_DEFAULT_SIZE = 100\nexport const LIMIT_CATEGORIES_MAX_SIZE = 1000\nexport const LIMIT_TAGS_DEFAULT_SIZE = 100\nexport const LIMIT_TAGS_MAX_SIZE = 1000\nexport const LIMIT_UTM_TRACKING_LINK_PAGINATION_DEFAULT_SIZE = 10\nexport const LIMIT_UTM_TRACKING_LINK_PAGINATION_MAX_SIZE = 1000\n","export const ERROR_MESSAGE_REGEX_UTM_VALUE =\n \"can only contain letters, numbers, and the special characters: - _ .\"\nexport const REGEX_UTM_VALUE = /^([a-zA-Z0-9._-]+)?$/\nexport const REGEX_BRAND_COLOR_SLUG = /^([a-zA-Z0-9_-]+)?$/\n\nexport const ERROR_MESSAGE_REGEX_PHONE = \"Please provide a valid phone number.\"\nexport const REGEX_NANP_PHONE =\n /^(?:\\+?1[\\s.-]?)?(?:\\(?([2-9]\\d{2})\\)?[\\s.-]?)(?:([2-9](?!11)\\d{2}))[\\s.-]?(\\d{4})(?:\\s*(?:#|x|ext\\.?|extension)\\s*\\d+)?$/i\n\nexport const ERROR_MESSAGE_REGEX_URL_SLUG = `can only contain letters, numbers, and the special characters: - _ .`\nexport const REGEX_URL_SLUG = /^([a-zA-Z0-9._-]+)?$/\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { i as WebSafeFont, C as ClientProjectStatusOptions, b as ClientProjectPhaseOptions, d as CommentApprovalStatus, R as ReportCommentReason } from './font.constants-BVwxlH3J.cjs';
|
|
2
2
|
import { c as ClientEntityScope } from './permission.constants-Chqmz1hY.cjs';
|
|
3
3
|
|
|
4
4
|
type BaseDocument = {
|
|
@@ -9,14 +9,6 @@ type BaseDocument = {
|
|
|
9
9
|
updatedAt: string;
|
|
10
10
|
};
|
|
11
11
|
|
|
12
|
-
type FormSelectInputOption = {
|
|
13
|
-
label: string;
|
|
14
|
-
value: string;
|
|
15
|
-
description?: string | null;
|
|
16
|
-
disabled?: boolean;
|
|
17
|
-
meta?: Record<string, any>;
|
|
18
|
-
};
|
|
19
|
-
|
|
20
12
|
type MediaFormat = {
|
|
21
13
|
ext: string;
|
|
22
14
|
url: string;
|
|
@@ -227,19 +219,15 @@ type ClientMediaPlatformDocument = {
|
|
|
227
219
|
media_content_types?: MediaContentTypeDocument[];
|
|
228
220
|
} & BaseDocument;
|
|
229
221
|
|
|
230
|
-
declare const ClientProjectStatusOptions: readonly ["coming-soon", "now-open", "for-sale", "sold-out", "available"];
|
|
231
|
-
type ClientProjectStatus = (typeof ClientProjectStatusOptions)[number];
|
|
232
|
-
declare const ClientProjectPhaseSelectOptions: FormSelectInputOption[];
|
|
233
|
-
declare const ClientProjectPhaseOptions: readonly ["brand", "p1", "p2", "p3", "p4", "p5", "closed"];
|
|
234
|
-
type ClientProjectPhase = (typeof ClientProjectPhaseOptions)[number];
|
|
235
222
|
type ClientProjectDocument = {
|
|
236
223
|
clients?: ClientDocument[];
|
|
237
224
|
title: string;
|
|
238
225
|
slug: string;
|
|
239
226
|
featured_image?: MediaUploadDocument | null;
|
|
240
227
|
is_active: boolean;
|
|
241
|
-
|
|
242
|
-
|
|
228
|
+
is_hidden: boolean;
|
|
229
|
+
project_status: (typeof ClientProjectStatusOptions)[number][];
|
|
230
|
+
project_phase: (typeof ClientProjectPhaseOptions)[number];
|
|
243
231
|
project_url: string | null;
|
|
244
232
|
project_type: string | null;
|
|
245
233
|
project_pricing: string | null;
|
|
@@ -358,6 +346,8 @@ type GCFlyTourSnapDocument = {
|
|
|
358
346
|
title: string;
|
|
359
347
|
slug: string;
|
|
360
348
|
utm_key: string | null;
|
|
349
|
+
is_active: boolean;
|
|
350
|
+
is_hidden: boolean;
|
|
361
351
|
gcflytour?: GCFlyTourDocument;
|
|
362
352
|
} & BaseDocument;
|
|
363
353
|
|
|
@@ -410,6 +400,7 @@ type ClientDocument = {
|
|
|
410
400
|
is_organic_social: boolean;
|
|
411
401
|
is_paid_media: boolean;
|
|
412
402
|
is_active: boolean;
|
|
403
|
+
is_hidden: boolean;
|
|
413
404
|
classification: UtmClassificationKey[];
|
|
414
405
|
product_highlights?: ProductHighlightDocument[];
|
|
415
406
|
client_projects?: ClientProjectDocument[];
|
|
@@ -436,26 +427,12 @@ type ClientContentPillarDocument = {
|
|
|
436
427
|
is_active: boolean;
|
|
437
428
|
} & BaseDocument;
|
|
438
429
|
|
|
439
|
-
declare const ReportCommentReasonOptions: ("BAD_LANGUAGE" | "DISCRIMINATION" | "OTHER")[];
|
|
440
|
-
declare const ReportCommentReason: {
|
|
441
|
-
readonly BAD_LANGUAGE: "BAD_LANGUAGE";
|
|
442
|
-
readonly DISCRIMINATION: "DISCRIMINATION";
|
|
443
|
-
readonly OTHER: "OTHER";
|
|
444
|
-
};
|
|
445
|
-
type ReportCommentReason = keyof typeof ReportCommentReason;
|
|
446
430
|
type CommentReportDocument = {
|
|
447
431
|
content: string;
|
|
448
|
-
reason: ReportCommentReason | null;
|
|
432
|
+
reason: keyof typeof ReportCommentReason | null;
|
|
449
433
|
related: CommentDocument[] | null;
|
|
450
434
|
resolved?: boolean | null;
|
|
451
435
|
} & BaseDocument;
|
|
452
|
-
declare const CommentApprovalStatusOptions: ("PENDING" | "APPROVED" | "REJECTED")[];
|
|
453
|
-
declare const CommentApprovalStatus: {
|
|
454
|
-
readonly PENDING: "PENDING";
|
|
455
|
-
readonly APPROVED: "APPROVED";
|
|
456
|
-
readonly REJECTED: "REJECTED";
|
|
457
|
-
};
|
|
458
|
-
type CommentApprovalStatus = keyof typeof CommentApprovalStatus;
|
|
459
436
|
type CommentDocument = {
|
|
460
437
|
id: string;
|
|
461
438
|
documentId: string;
|
|
@@ -465,7 +442,7 @@ type CommentDocument = {
|
|
|
465
442
|
blocked: boolean | null;
|
|
466
443
|
blockedThread: boolean | null;
|
|
467
444
|
removed: boolean | null;
|
|
468
|
-
approvalStatus: CommentApprovalStatus | null;
|
|
445
|
+
approvalStatus: keyof typeof CommentApprovalStatus | null;
|
|
469
446
|
author: {
|
|
470
447
|
id: string;
|
|
471
448
|
name: string;
|
|
@@ -476,4 +453,4 @@ type CommentDocument = {
|
|
|
476
453
|
children: CommentDocument[] | null;
|
|
477
454
|
};
|
|
478
455
|
|
|
479
|
-
export {
|
|
456
|
+
export type { UserDocument as $, ClientProjectDocument as A, BlockBrandLogos as B, ComponentBlockBrandLogos as C, ClientReportDocument as D, ClientStyleguideDocument as E, ClientUserDocument as F, ClientUserDocumentStatus as G, ClientDocument as H, CommentReportDocument as I, CommentDocument as J, ContentPillarDocument as K, GCFlyTourSnapDocument as L, MetaSocialNetwork as M, GCFlyTourDocument as N, OpenGraph as O, MediaContentTypeDocument as P, MediaPlatformDocument as Q, RichTextBlockChildren as R, SharedRichTextBlock as S, PermissionDocument as T, UtmClassificationKey as U, ProductHighlightDocument as V, ProductDocument as W, RoleType as X, RoleDocument as Y, TagDocument as Z, UserAccountDocument as _, BlockFullscreenContentType as a, AuthorizedUserDocument as a0, UserAuthorizationLoginResponse as a1, UserAuthorizationSuccessResponse as a2, UtmTrackingLinkDocument as a3, BlockFullscreenContent as b, ComponentBlockFullscreenContent as c, BlockVideoEmbed as d, ComponentBlockVideo as e, BrandStyleguideColor as f, ComponentBrandStyleguideColor as g, BrandStyleguideFont as h, ComponentBrandStyleguideFont as i, RichTextBlock as j, ComponentSharedRichTextBlock as k, ComponentOpenGraph as l, MetaSocial as m, ComponentMetaSocial as n, SeoMeta as o, ComponentSeoMeta as p, UtmSourceKey as q, UtmOption as r, ComponentUtmOption as s, BaseDocument as t, MediaFormat as u, MediaFormats as v, MediaUploadDocument as w, ClientContentPillarDocument as x, ClientMediaPlatformContentTypeDocument as y, ClientMediaPlatformDocument as z };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { i as WebSafeFont, C as ClientProjectStatusOptions, b as ClientProjectPhaseOptions, d as CommentApprovalStatus, R as ReportCommentReason } from './font.constants-BVwxlH3J.js';
|
|
2
2
|
import { c as ClientEntityScope } from './permission.constants-Chqmz1hY.js';
|
|
3
3
|
|
|
4
4
|
type BaseDocument = {
|
|
@@ -9,14 +9,6 @@ type BaseDocument = {
|
|
|
9
9
|
updatedAt: string;
|
|
10
10
|
};
|
|
11
11
|
|
|
12
|
-
type FormSelectInputOption = {
|
|
13
|
-
label: string;
|
|
14
|
-
value: string;
|
|
15
|
-
description?: string | null;
|
|
16
|
-
disabled?: boolean;
|
|
17
|
-
meta?: Record<string, any>;
|
|
18
|
-
};
|
|
19
|
-
|
|
20
12
|
type MediaFormat = {
|
|
21
13
|
ext: string;
|
|
22
14
|
url: string;
|
|
@@ -227,19 +219,15 @@ type ClientMediaPlatformDocument = {
|
|
|
227
219
|
media_content_types?: MediaContentTypeDocument[];
|
|
228
220
|
} & BaseDocument;
|
|
229
221
|
|
|
230
|
-
declare const ClientProjectStatusOptions: readonly ["coming-soon", "now-open", "for-sale", "sold-out", "available"];
|
|
231
|
-
type ClientProjectStatus = (typeof ClientProjectStatusOptions)[number];
|
|
232
|
-
declare const ClientProjectPhaseSelectOptions: FormSelectInputOption[];
|
|
233
|
-
declare const ClientProjectPhaseOptions: readonly ["brand", "p1", "p2", "p3", "p4", "p5", "closed"];
|
|
234
|
-
type ClientProjectPhase = (typeof ClientProjectPhaseOptions)[number];
|
|
235
222
|
type ClientProjectDocument = {
|
|
236
223
|
clients?: ClientDocument[];
|
|
237
224
|
title: string;
|
|
238
225
|
slug: string;
|
|
239
226
|
featured_image?: MediaUploadDocument | null;
|
|
240
227
|
is_active: boolean;
|
|
241
|
-
|
|
242
|
-
|
|
228
|
+
is_hidden: boolean;
|
|
229
|
+
project_status: (typeof ClientProjectStatusOptions)[number][];
|
|
230
|
+
project_phase: (typeof ClientProjectPhaseOptions)[number];
|
|
243
231
|
project_url: string | null;
|
|
244
232
|
project_type: string | null;
|
|
245
233
|
project_pricing: string | null;
|
|
@@ -358,6 +346,8 @@ type GCFlyTourSnapDocument = {
|
|
|
358
346
|
title: string;
|
|
359
347
|
slug: string;
|
|
360
348
|
utm_key: string | null;
|
|
349
|
+
is_active: boolean;
|
|
350
|
+
is_hidden: boolean;
|
|
361
351
|
gcflytour?: GCFlyTourDocument;
|
|
362
352
|
} & BaseDocument;
|
|
363
353
|
|
|
@@ -410,6 +400,7 @@ type ClientDocument = {
|
|
|
410
400
|
is_organic_social: boolean;
|
|
411
401
|
is_paid_media: boolean;
|
|
412
402
|
is_active: boolean;
|
|
403
|
+
is_hidden: boolean;
|
|
413
404
|
classification: UtmClassificationKey[];
|
|
414
405
|
product_highlights?: ProductHighlightDocument[];
|
|
415
406
|
client_projects?: ClientProjectDocument[];
|
|
@@ -436,26 +427,12 @@ type ClientContentPillarDocument = {
|
|
|
436
427
|
is_active: boolean;
|
|
437
428
|
} & BaseDocument;
|
|
438
429
|
|
|
439
|
-
declare const ReportCommentReasonOptions: ("BAD_LANGUAGE" | "DISCRIMINATION" | "OTHER")[];
|
|
440
|
-
declare const ReportCommentReason: {
|
|
441
|
-
readonly BAD_LANGUAGE: "BAD_LANGUAGE";
|
|
442
|
-
readonly DISCRIMINATION: "DISCRIMINATION";
|
|
443
|
-
readonly OTHER: "OTHER";
|
|
444
|
-
};
|
|
445
|
-
type ReportCommentReason = keyof typeof ReportCommentReason;
|
|
446
430
|
type CommentReportDocument = {
|
|
447
431
|
content: string;
|
|
448
|
-
reason: ReportCommentReason | null;
|
|
432
|
+
reason: keyof typeof ReportCommentReason | null;
|
|
449
433
|
related: CommentDocument[] | null;
|
|
450
434
|
resolved?: boolean | null;
|
|
451
435
|
} & BaseDocument;
|
|
452
|
-
declare const CommentApprovalStatusOptions: ("PENDING" | "APPROVED" | "REJECTED")[];
|
|
453
|
-
declare const CommentApprovalStatus: {
|
|
454
|
-
readonly PENDING: "PENDING";
|
|
455
|
-
readonly APPROVED: "APPROVED";
|
|
456
|
-
readonly REJECTED: "REJECTED";
|
|
457
|
-
};
|
|
458
|
-
type CommentApprovalStatus = keyof typeof CommentApprovalStatus;
|
|
459
436
|
type CommentDocument = {
|
|
460
437
|
id: string;
|
|
461
438
|
documentId: string;
|
|
@@ -465,7 +442,7 @@ type CommentDocument = {
|
|
|
465
442
|
blocked: boolean | null;
|
|
466
443
|
blockedThread: boolean | null;
|
|
467
444
|
removed: boolean | null;
|
|
468
|
-
approvalStatus: CommentApprovalStatus | null;
|
|
445
|
+
approvalStatus: keyof typeof CommentApprovalStatus | null;
|
|
469
446
|
author: {
|
|
470
447
|
id: string;
|
|
471
448
|
name: string;
|
|
@@ -476,4 +453,4 @@ type CommentDocument = {
|
|
|
476
453
|
children: CommentDocument[] | null;
|
|
477
454
|
};
|
|
478
455
|
|
|
479
|
-
export {
|
|
456
|
+
export type { UserDocument as $, ClientProjectDocument as A, BlockBrandLogos as B, ComponentBlockBrandLogos as C, ClientReportDocument as D, ClientStyleguideDocument as E, ClientUserDocument as F, ClientUserDocumentStatus as G, ClientDocument as H, CommentReportDocument as I, CommentDocument as J, ContentPillarDocument as K, GCFlyTourSnapDocument as L, MetaSocialNetwork as M, GCFlyTourDocument as N, OpenGraph as O, MediaContentTypeDocument as P, MediaPlatformDocument as Q, RichTextBlockChildren as R, SharedRichTextBlock as S, PermissionDocument as T, UtmClassificationKey as U, ProductHighlightDocument as V, ProductDocument as W, RoleType as X, RoleDocument as Y, TagDocument as Z, UserAccountDocument as _, BlockFullscreenContentType as a, AuthorizedUserDocument as a0, UserAuthorizationLoginResponse as a1, UserAuthorizationSuccessResponse as a2, UtmTrackingLinkDocument as a3, BlockFullscreenContent as b, ComponentBlockFullscreenContent as c, BlockVideoEmbed as d, ComponentBlockVideo as e, BrandStyleguideColor as f, ComponentBrandStyleguideColor as g, BrandStyleguideFont as h, ComponentBrandStyleguideFont as i, RichTextBlock as j, ComponentSharedRichTextBlock as k, ComponentOpenGraph as l, MetaSocial as m, ComponentMetaSocial as n, SeoMeta as o, ComponentSeoMeta as p, UtmSourceKey as q, UtmOption as r, ComponentUtmOption as s, BaseDocument as t, MediaFormat as u, MediaFormats as v, MediaUploadDocument as w, ClientContentPillarDocument as x, ClientMediaPlatformContentTypeDocument as y, ClientMediaPlatformDocument as z };
|