@goodhood-web/nebenan-base 4.10.0-development.5 → 4.10.0-development.6
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/index.js +51 -51
- package/index.mjs +1368 -1367
- package/lib/ContentCreator/components/ContentCreatorFieldWrapper/components/PostFields/FormRichTextArea.d.ts +5 -5
- package/lib/ContentCreator/utils/general.d.ts +1 -1
- package/lib/ContentCreator/utils/images.d.ts +1 -1
- package/lib/ContentCreator/utils/payloadGenerators.d.ts +3 -3
- package/lib/ContentCreator/validationSchemas/commonSchemas.d.ts +8 -8
- package/lib/ContentCreator/validationSchemas/dynamicValidationSchema.d.ts +37 -37
- package/lib/ContentCreator/validationSchemas/eventSchema.d.ts +7 -7
- package/lib/ContentCreator/validationSchemas/marketplaceSchema.d.ts +9 -9
- package/lib/ContentCreator/validationSchemas/postSchema.d.ts +21 -21
- package/lib/RichTextArea/RichTextArea.types.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -12,7 +12,7 @@ declare const FormRichTextAreaInput: import('react').ForwardRefExoticComponent<U
|
|
|
12
12
|
body: string;
|
|
13
13
|
embeddables?: {
|
|
14
14
|
role: "link" | "profile" | "mention";
|
|
15
|
-
|
|
15
|
+
associated_gid: string;
|
|
16
16
|
indices?: number[] | null | undefined;
|
|
17
17
|
}[] | null | undefined;
|
|
18
18
|
attachments?: {
|
|
@@ -33,7 +33,7 @@ declare const FormRichTextAreaInput: import('react').ForwardRefExoticComponent<U
|
|
|
33
33
|
body: string;
|
|
34
34
|
embeddables?: {
|
|
35
35
|
role: "link" | "profile" | "mention";
|
|
36
|
-
|
|
36
|
+
associated_gid: string;
|
|
37
37
|
indices?: number[] | null | undefined;
|
|
38
38
|
}[] | null | undefined;
|
|
39
39
|
attachments?: {
|
|
@@ -54,7 +54,7 @@ declare const FormRichTextAreaInput: import('react').ForwardRefExoticComponent<U
|
|
|
54
54
|
body: string;
|
|
55
55
|
embeddables?: {
|
|
56
56
|
role: "link" | "profile" | "mention";
|
|
57
|
-
|
|
57
|
+
associated_gid: string;
|
|
58
58
|
indices?: number[] | null | undefined;
|
|
59
59
|
}[] | null | undefined;
|
|
60
60
|
attachments?: {
|
|
@@ -75,7 +75,7 @@ declare const FormRichTextAreaInput: import('react').ForwardRefExoticComponent<U
|
|
|
75
75
|
body: string;
|
|
76
76
|
embeddables?: {
|
|
77
77
|
role: "link" | "profile" | "mention";
|
|
78
|
-
|
|
78
|
+
associated_gid: string;
|
|
79
79
|
indices?: number[] | null | undefined;
|
|
80
80
|
}[] | null | undefined;
|
|
81
81
|
attachments?: {
|
|
@@ -111,7 +111,7 @@ declare const FormRichTextAreaInput: import('react').ForwardRefExoticComponent<U
|
|
|
111
111
|
body: string;
|
|
112
112
|
embeddables?: {
|
|
113
113
|
role: "link" | "profile" | "mention";
|
|
114
|
-
|
|
114
|
+
associated_gid: string;
|
|
115
115
|
indices?: number[] | null | undefined;
|
|
116
116
|
}[] | null | undefined;
|
|
117
117
|
attachments?: {
|
|
@@ -14,7 +14,7 @@ export declare const navigateTo: (contentType: string | undefined) => "/feed/mar
|
|
|
14
14
|
export declare const formatLocation: (location: LocationValue) => string;
|
|
15
15
|
export declare const removePoiFromContent: (content: BodyWithEmbeds) => {
|
|
16
16
|
role: "link" | "profile" | "mention";
|
|
17
|
-
|
|
17
|
+
associated_gid: string;
|
|
18
18
|
indices?: number[] | null | undefined;
|
|
19
19
|
}[];
|
|
20
20
|
export declare const getSubmitButtonText: (submitText: string, submitPriceText: string, checkoutValue?: SelectedPremiumFeature) => string;
|
|
@@ -7,7 +7,7 @@ export declare function injectImagesToContent(content: BodyWithEmbeds | undefine
|
|
|
7
7
|
body: string;
|
|
8
8
|
embeddables?: {
|
|
9
9
|
role: "link" | "profile" | "mention";
|
|
10
|
-
|
|
10
|
+
associated_gid: string;
|
|
11
11
|
indices?: number[] | null | undefined;
|
|
12
12
|
}[] | null | undefined;
|
|
13
13
|
} | undefined;
|
|
@@ -6,7 +6,7 @@ export declare const generatePostPayload: (data: PostFormData, topic?: Topic) =>
|
|
|
6
6
|
content_type: "search" | "post" | "recommendation";
|
|
7
7
|
embeds: {
|
|
8
8
|
role: "link" | "profile" | "mention";
|
|
9
|
-
|
|
9
|
+
associated_gid: string;
|
|
10
10
|
indices?: number[] | null | undefined;
|
|
11
11
|
}[] | null | undefined;
|
|
12
12
|
images: string[] | null;
|
|
@@ -20,7 +20,7 @@ export declare const generateEventPayload: (data: EventFormData, selectedImage?:
|
|
|
20
20
|
content_type: "event";
|
|
21
21
|
embeds: {
|
|
22
22
|
role: "link" | "profile" | "mention";
|
|
23
|
-
|
|
23
|
+
associated_gid: string;
|
|
24
24
|
indices?: number[] | null | undefined;
|
|
25
25
|
}[];
|
|
26
26
|
ends_all_day: boolean;
|
|
@@ -39,7 +39,7 @@ export declare const generateMarketplacePayload: (data: MarketplaceFormData) =>
|
|
|
39
39
|
content_type: MarketplaceContentType;
|
|
40
40
|
embeds: {
|
|
41
41
|
role: "link" | "profile" | "mention";
|
|
42
|
-
|
|
42
|
+
associated_gid: string;
|
|
43
43
|
indices?: number[] | null | undefined;
|
|
44
44
|
}[];
|
|
45
45
|
images: string[] | null;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const embedSchema: z.ZodObject<{
|
|
3
|
-
|
|
3
|
+
associated_gid: z.ZodString;
|
|
4
4
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
5
5
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
7
|
role: "link" | "profile" | "mention";
|
|
8
|
-
|
|
8
|
+
associated_gid: string;
|
|
9
9
|
indices?: number[] | null | undefined;
|
|
10
10
|
}, {
|
|
11
11
|
role: "link" | "profile" | "mention";
|
|
12
|
-
|
|
12
|
+
associated_gid: string;
|
|
13
13
|
indices?: number[] | null | undefined;
|
|
14
14
|
}>;
|
|
15
15
|
export declare const topicSchema: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -67,23 +67,23 @@ export declare const bodyWithEmbedsSchema: z.ZodObject<{
|
|
|
67
67
|
}>>;
|
|
68
68
|
body: z.ZodString;
|
|
69
69
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
70
|
-
|
|
70
|
+
associated_gid: z.ZodString;
|
|
71
71
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
72
72
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
74
|
role: "link" | "profile" | "mention";
|
|
75
|
-
|
|
75
|
+
associated_gid: string;
|
|
76
76
|
indices?: number[] | null | undefined;
|
|
77
77
|
}, {
|
|
78
78
|
role: "link" | "profile" | "mention";
|
|
79
|
-
|
|
79
|
+
associated_gid: string;
|
|
80
80
|
indices?: number[] | null | undefined;
|
|
81
81
|
}>, "many">>>;
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
83
|
body: string;
|
|
84
84
|
embeddables?: {
|
|
85
85
|
role: "link" | "profile" | "mention";
|
|
86
|
-
|
|
86
|
+
associated_gid: string;
|
|
87
87
|
indices?: number[] | null | undefined;
|
|
88
88
|
}[] | null | undefined;
|
|
89
89
|
attachments?: {
|
|
@@ -98,7 +98,7 @@ export declare const bodyWithEmbedsSchema: z.ZodObject<{
|
|
|
98
98
|
body: string;
|
|
99
99
|
embeddables?: {
|
|
100
100
|
role: "link" | "profile" | "mention";
|
|
101
|
-
|
|
101
|
+
associated_gid: string;
|
|
102
102
|
indices?: number[] | null | undefined;
|
|
103
103
|
}[] | null | undefined;
|
|
104
104
|
attachments?: {
|
|
@@ -36,23 +36,23 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
36
36
|
}>>;
|
|
37
37
|
body: z.ZodString;
|
|
38
38
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
39
|
-
|
|
39
|
+
associated_gid: z.ZodString;
|
|
40
40
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
41
41
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
role: "link" | "profile" | "mention";
|
|
44
|
-
|
|
44
|
+
associated_gid: string;
|
|
45
45
|
indices?: number[] | null | undefined;
|
|
46
46
|
}, {
|
|
47
47
|
role: "link" | "profile" | "mention";
|
|
48
|
-
|
|
48
|
+
associated_gid: string;
|
|
49
49
|
indices?: number[] | null | undefined;
|
|
50
50
|
}>, "many">>>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
body: string;
|
|
53
53
|
embeddables?: {
|
|
54
54
|
role: "link" | "profile" | "mention";
|
|
55
|
-
|
|
55
|
+
associated_gid: string;
|
|
56
56
|
indices?: number[] | null | undefined;
|
|
57
57
|
}[] | null | undefined;
|
|
58
58
|
attachments?: {
|
|
@@ -67,7 +67,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
67
67
|
body: string;
|
|
68
68
|
embeddables?: {
|
|
69
69
|
role: "link" | "profile" | "mention";
|
|
70
|
-
|
|
70
|
+
associated_gid: string;
|
|
71
71
|
indices?: number[] | null | undefined;
|
|
72
72
|
}[] | null | undefined;
|
|
73
73
|
attachments?: {
|
|
@@ -118,7 +118,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
118
118
|
body: string;
|
|
119
119
|
embeddables?: {
|
|
120
120
|
role: "link" | "profile" | "mention";
|
|
121
|
-
|
|
121
|
+
associated_gid: string;
|
|
122
122
|
indices?: number[] | null | undefined;
|
|
123
123
|
}[] | null | undefined;
|
|
124
124
|
attachments?: {
|
|
@@ -154,7 +154,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
154
154
|
body: string;
|
|
155
155
|
embeddables?: {
|
|
156
156
|
role: "link" | "profile" | "mention";
|
|
157
|
-
|
|
157
|
+
associated_gid: string;
|
|
158
158
|
indices?: number[] | null | undefined;
|
|
159
159
|
}[] | null | undefined;
|
|
160
160
|
attachments?: {
|
|
@@ -222,23 +222,23 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
222
222
|
}>>;
|
|
223
223
|
body: z.ZodString;
|
|
224
224
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
225
|
-
|
|
225
|
+
associated_gid: z.ZodString;
|
|
226
226
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
227
227
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
|
229
229
|
role: "link" | "profile" | "mention";
|
|
230
|
-
|
|
230
|
+
associated_gid: string;
|
|
231
231
|
indices?: number[] | null | undefined;
|
|
232
232
|
}, {
|
|
233
233
|
role: "link" | "profile" | "mention";
|
|
234
|
-
|
|
234
|
+
associated_gid: string;
|
|
235
235
|
indices?: number[] | null | undefined;
|
|
236
236
|
}>, "many">>>;
|
|
237
237
|
}, "strip", z.ZodTypeAny, {
|
|
238
238
|
body: string;
|
|
239
239
|
embeddables?: {
|
|
240
240
|
role: "link" | "profile" | "mention";
|
|
241
|
-
|
|
241
|
+
associated_gid: string;
|
|
242
242
|
indices?: number[] | null | undefined;
|
|
243
243
|
}[] | null | undefined;
|
|
244
244
|
attachments?: {
|
|
@@ -253,7 +253,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
253
253
|
body: string;
|
|
254
254
|
embeddables?: {
|
|
255
255
|
role: "link" | "profile" | "mention";
|
|
256
|
-
|
|
256
|
+
associated_gid: string;
|
|
257
257
|
indices?: number[] | null | undefined;
|
|
258
258
|
}[] | null | undefined;
|
|
259
259
|
attachments?: {
|
|
@@ -304,7 +304,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
304
304
|
body: string;
|
|
305
305
|
embeddables?: {
|
|
306
306
|
role: "link" | "profile" | "mention";
|
|
307
|
-
|
|
307
|
+
associated_gid: string;
|
|
308
308
|
indices?: number[] | null | undefined;
|
|
309
309
|
}[] | null | undefined;
|
|
310
310
|
attachments?: {
|
|
@@ -343,7 +343,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
343
343
|
body: string;
|
|
344
344
|
embeddables?: {
|
|
345
345
|
role: "link" | "profile" | "mention";
|
|
346
|
-
|
|
346
|
+
associated_gid: string;
|
|
347
347
|
indices?: number[] | null | undefined;
|
|
348
348
|
}[] | null | undefined;
|
|
349
349
|
attachments?: {
|
|
@@ -382,7 +382,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
382
382
|
body: string;
|
|
383
383
|
embeddables?: {
|
|
384
384
|
role: "link" | "profile" | "mention";
|
|
385
|
-
|
|
385
|
+
associated_gid: string;
|
|
386
386
|
indices?: number[] | null | undefined;
|
|
387
387
|
}[] | null | undefined;
|
|
388
388
|
attachments?: {
|
|
@@ -421,7 +421,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
421
421
|
body: string;
|
|
422
422
|
embeddables?: {
|
|
423
423
|
role: "link" | "profile" | "mention";
|
|
424
|
-
|
|
424
|
+
associated_gid: string;
|
|
425
425
|
indices?: number[] | null | undefined;
|
|
426
426
|
}[] | null | undefined;
|
|
427
427
|
attachments?: {
|
|
@@ -491,23 +491,23 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
491
491
|
}>>;
|
|
492
492
|
body: z.ZodString;
|
|
493
493
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
494
|
-
|
|
494
|
+
associated_gid: z.ZodString;
|
|
495
495
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
496
496
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
497
497
|
}, "strip", z.ZodTypeAny, {
|
|
498
498
|
role: "link" | "profile" | "mention";
|
|
499
|
-
|
|
499
|
+
associated_gid: string;
|
|
500
500
|
indices?: number[] | null | undefined;
|
|
501
501
|
}, {
|
|
502
502
|
role: "link" | "profile" | "mention";
|
|
503
|
-
|
|
503
|
+
associated_gid: string;
|
|
504
504
|
indices?: number[] | null | undefined;
|
|
505
505
|
}>, "many">>>;
|
|
506
506
|
}, "strip", z.ZodTypeAny, {
|
|
507
507
|
body: string;
|
|
508
508
|
embeddables?: {
|
|
509
509
|
role: "link" | "profile" | "mention";
|
|
510
|
-
|
|
510
|
+
associated_gid: string;
|
|
511
511
|
indices?: number[] | null | undefined;
|
|
512
512
|
}[] | null | undefined;
|
|
513
513
|
attachments?: {
|
|
@@ -522,7 +522,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
522
522
|
body: string;
|
|
523
523
|
embeddables?: {
|
|
524
524
|
role: "link" | "profile" | "mention";
|
|
525
|
-
|
|
525
|
+
associated_gid: string;
|
|
526
526
|
indices?: number[] | null | undefined;
|
|
527
527
|
}[] | null | undefined;
|
|
528
528
|
attachments?: {
|
|
@@ -543,7 +543,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
543
543
|
body: string;
|
|
544
544
|
embeddables?: {
|
|
545
545
|
role: "link" | "profile" | "mention";
|
|
546
|
-
|
|
546
|
+
associated_gid: string;
|
|
547
547
|
indices?: number[] | null | undefined;
|
|
548
548
|
}[] | null | undefined;
|
|
549
549
|
attachments?: {
|
|
@@ -564,7 +564,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
564
564
|
body: string;
|
|
565
565
|
embeddables?: {
|
|
566
566
|
role: "link" | "profile" | "mention";
|
|
567
|
-
|
|
567
|
+
associated_gid: string;
|
|
568
568
|
indices?: number[] | null | undefined;
|
|
569
569
|
}[] | null | undefined;
|
|
570
570
|
attachments?: {
|
|
@@ -616,23 +616,23 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
616
616
|
}>>;
|
|
617
617
|
body: z.ZodString;
|
|
618
618
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
619
|
-
|
|
619
|
+
associated_gid: z.ZodString;
|
|
620
620
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
621
621
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
622
622
|
}, "strip", z.ZodTypeAny, {
|
|
623
623
|
role: "link" | "profile" | "mention";
|
|
624
|
-
|
|
624
|
+
associated_gid: string;
|
|
625
625
|
indices?: number[] | null | undefined;
|
|
626
626
|
}, {
|
|
627
627
|
role: "link" | "profile" | "mention";
|
|
628
|
-
|
|
628
|
+
associated_gid: string;
|
|
629
629
|
indices?: number[] | null | undefined;
|
|
630
630
|
}>, "many">>>;
|
|
631
631
|
}, "strip", z.ZodTypeAny, {
|
|
632
632
|
body: string;
|
|
633
633
|
embeddables?: {
|
|
634
634
|
role: "link" | "profile" | "mention";
|
|
635
|
-
|
|
635
|
+
associated_gid: string;
|
|
636
636
|
indices?: number[] | null | undefined;
|
|
637
637
|
}[] | null | undefined;
|
|
638
638
|
attachments?: {
|
|
@@ -647,7 +647,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
647
647
|
body: string;
|
|
648
648
|
embeddables?: {
|
|
649
649
|
role: "link" | "profile" | "mention";
|
|
650
|
-
|
|
650
|
+
associated_gid: string;
|
|
651
651
|
indices?: number[] | null | undefined;
|
|
652
652
|
}[] | null | undefined;
|
|
653
653
|
attachments?: {
|
|
@@ -668,7 +668,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
668
668
|
body: string;
|
|
669
669
|
embeddables?: {
|
|
670
670
|
role: "link" | "profile" | "mention";
|
|
671
|
-
|
|
671
|
+
associated_gid: string;
|
|
672
672
|
indices?: number[] | null | undefined;
|
|
673
673
|
}[] | null | undefined;
|
|
674
674
|
attachments?: {
|
|
@@ -689,7 +689,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
689
689
|
body: string;
|
|
690
690
|
embeddables?: {
|
|
691
691
|
role: "link" | "profile" | "mention";
|
|
692
|
-
|
|
692
|
+
associated_gid: string;
|
|
693
693
|
indices?: number[] | null | undefined;
|
|
694
694
|
}[] | null | undefined;
|
|
695
695
|
attachments?: {
|
|
@@ -741,23 +741,23 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
741
741
|
}>>;
|
|
742
742
|
body: z.ZodString;
|
|
743
743
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
744
|
-
|
|
744
|
+
associated_gid: z.ZodString;
|
|
745
745
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
746
746
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
747
747
|
}, "strip", z.ZodTypeAny, {
|
|
748
748
|
role: "link" | "profile" | "mention";
|
|
749
|
-
|
|
749
|
+
associated_gid: string;
|
|
750
750
|
indices?: number[] | null | undefined;
|
|
751
751
|
}, {
|
|
752
752
|
role: "link" | "profile" | "mention";
|
|
753
|
-
|
|
753
|
+
associated_gid: string;
|
|
754
754
|
indices?: number[] | null | undefined;
|
|
755
755
|
}>, "many">>>;
|
|
756
756
|
}, "strip", z.ZodTypeAny, {
|
|
757
757
|
body: string;
|
|
758
758
|
embeddables?: {
|
|
759
759
|
role: "link" | "profile" | "mention";
|
|
760
|
-
|
|
760
|
+
associated_gid: string;
|
|
761
761
|
indices?: number[] | null | undefined;
|
|
762
762
|
}[] | null | undefined;
|
|
763
763
|
attachments?: {
|
|
@@ -772,7 +772,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
772
772
|
body: string;
|
|
773
773
|
embeddables?: {
|
|
774
774
|
role: "link" | "profile" | "mention";
|
|
775
|
-
|
|
775
|
+
associated_gid: string;
|
|
776
776
|
indices?: number[] | null | undefined;
|
|
777
777
|
}[] | null | undefined;
|
|
778
778
|
attachments?: {
|
|
@@ -793,7 +793,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
793
793
|
body: string;
|
|
794
794
|
embeddables?: {
|
|
795
795
|
role: "link" | "profile" | "mention";
|
|
796
|
-
|
|
796
|
+
associated_gid: string;
|
|
797
797
|
indices?: number[] | null | undefined;
|
|
798
798
|
}[] | null | undefined;
|
|
799
799
|
attachments?: {
|
|
@@ -814,7 +814,7 @@ export declare const contentValidationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
814
814
|
body: string;
|
|
815
815
|
embeddables?: {
|
|
816
816
|
role: "link" | "profile" | "mention";
|
|
817
|
-
|
|
817
|
+
associated_gid: string;
|
|
818
818
|
indices?: number[] | null | undefined;
|
|
819
819
|
}[] | null | undefined;
|
|
820
820
|
attachments?: {
|
|
@@ -36,23 +36,23 @@ export declare const eventValidationSchema: z.ZodObject<{
|
|
|
36
36
|
}>>;
|
|
37
37
|
body: z.ZodString;
|
|
38
38
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
39
|
-
|
|
39
|
+
associated_gid: z.ZodString;
|
|
40
40
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
41
41
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
role: "link" | "profile" | "mention";
|
|
44
|
-
|
|
44
|
+
associated_gid: string;
|
|
45
45
|
indices?: number[] | null | undefined;
|
|
46
46
|
}, {
|
|
47
47
|
role: "link" | "profile" | "mention";
|
|
48
|
-
|
|
48
|
+
associated_gid: string;
|
|
49
49
|
indices?: number[] | null | undefined;
|
|
50
50
|
}>, "many">>>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
body: string;
|
|
53
53
|
embeddables?: {
|
|
54
54
|
role: "link" | "profile" | "mention";
|
|
55
|
-
|
|
55
|
+
associated_gid: string;
|
|
56
56
|
indices?: number[] | null | undefined;
|
|
57
57
|
}[] | null | undefined;
|
|
58
58
|
attachments?: {
|
|
@@ -67,7 +67,7 @@ export declare const eventValidationSchema: z.ZodObject<{
|
|
|
67
67
|
body: string;
|
|
68
68
|
embeddables?: {
|
|
69
69
|
role: "link" | "profile" | "mention";
|
|
70
|
-
|
|
70
|
+
associated_gid: string;
|
|
71
71
|
indices?: number[] | null | undefined;
|
|
72
72
|
}[] | null | undefined;
|
|
73
73
|
attachments?: {
|
|
@@ -118,7 +118,7 @@ export declare const eventValidationSchema: z.ZodObject<{
|
|
|
118
118
|
body: string;
|
|
119
119
|
embeddables?: {
|
|
120
120
|
role: "link" | "profile" | "mention";
|
|
121
|
-
|
|
121
|
+
associated_gid: string;
|
|
122
122
|
indices?: number[] | null | undefined;
|
|
123
123
|
}[] | null | undefined;
|
|
124
124
|
attachments?: {
|
|
@@ -154,7 +154,7 @@ export declare const eventValidationSchema: z.ZodObject<{
|
|
|
154
154
|
body: string;
|
|
155
155
|
embeddables?: {
|
|
156
156
|
role: "link" | "profile" | "mention";
|
|
157
|
-
|
|
157
|
+
associated_gid: string;
|
|
158
158
|
indices?: number[] | null | undefined;
|
|
159
159
|
}[] | null | undefined;
|
|
160
160
|
attachments?: {
|
|
@@ -36,23 +36,23 @@ export declare const marketplaceValidationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
36
36
|
}>>;
|
|
37
37
|
body: z.ZodString;
|
|
38
38
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
39
|
-
|
|
39
|
+
associated_gid: z.ZodString;
|
|
40
40
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
41
41
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
role: "link" | "profile" | "mention";
|
|
44
|
-
|
|
44
|
+
associated_gid: string;
|
|
45
45
|
indices?: number[] | null | undefined;
|
|
46
46
|
}, {
|
|
47
47
|
role: "link" | "profile" | "mention";
|
|
48
|
-
|
|
48
|
+
associated_gid: string;
|
|
49
49
|
indices?: number[] | null | undefined;
|
|
50
50
|
}>, "many">>>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
body: string;
|
|
53
53
|
embeddables?: {
|
|
54
54
|
role: "link" | "profile" | "mention";
|
|
55
|
-
|
|
55
|
+
associated_gid: string;
|
|
56
56
|
indices?: number[] | null | undefined;
|
|
57
57
|
}[] | null | undefined;
|
|
58
58
|
attachments?: {
|
|
@@ -67,7 +67,7 @@ export declare const marketplaceValidationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
67
67
|
body: string;
|
|
68
68
|
embeddables?: {
|
|
69
69
|
role: "link" | "profile" | "mention";
|
|
70
|
-
|
|
70
|
+
associated_gid: string;
|
|
71
71
|
indices?: number[] | null | undefined;
|
|
72
72
|
}[] | null | undefined;
|
|
73
73
|
attachments?: {
|
|
@@ -118,7 +118,7 @@ export declare const marketplaceValidationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
118
118
|
body: string;
|
|
119
119
|
embeddables?: {
|
|
120
120
|
role: "link" | "profile" | "mention";
|
|
121
|
-
|
|
121
|
+
associated_gid: string;
|
|
122
122
|
indices?: number[] | null | undefined;
|
|
123
123
|
}[] | null | undefined;
|
|
124
124
|
attachments?: {
|
|
@@ -157,7 +157,7 @@ export declare const marketplaceValidationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
157
157
|
body: string;
|
|
158
158
|
embeddables?: {
|
|
159
159
|
role: "link" | "profile" | "mention";
|
|
160
|
-
|
|
160
|
+
associated_gid: string;
|
|
161
161
|
indices?: number[] | null | undefined;
|
|
162
162
|
}[] | null | undefined;
|
|
163
163
|
attachments?: {
|
|
@@ -196,7 +196,7 @@ export declare const marketplaceValidationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
196
196
|
body: string;
|
|
197
197
|
embeddables?: {
|
|
198
198
|
role: "link" | "profile" | "mention";
|
|
199
|
-
|
|
199
|
+
associated_gid: string;
|
|
200
200
|
indices?: number[] | null | undefined;
|
|
201
201
|
}[] | null | undefined;
|
|
202
202
|
attachments?: {
|
|
@@ -235,7 +235,7 @@ export declare const marketplaceValidationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
235
235
|
body: string;
|
|
236
236
|
embeddables?: {
|
|
237
237
|
role: "link" | "profile" | "mention";
|
|
238
|
-
|
|
238
|
+
associated_gid: string;
|
|
239
239
|
indices?: number[] | null | undefined;
|
|
240
240
|
}[] | null | undefined;
|
|
241
241
|
attachments?: {
|