@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
|
@@ -35,23 +35,23 @@ export declare const postValidationSchema: z.ZodObject<{
|
|
|
35
35
|
}>>;
|
|
36
36
|
body: z.ZodString;
|
|
37
37
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
38
|
-
|
|
38
|
+
associated_gid: z.ZodString;
|
|
39
39
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
40
40
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
42
|
role: "link" | "profile" | "mention";
|
|
43
|
-
|
|
43
|
+
associated_gid: string;
|
|
44
44
|
indices?: number[] | null | undefined;
|
|
45
45
|
}, {
|
|
46
46
|
role: "link" | "profile" | "mention";
|
|
47
|
-
|
|
47
|
+
associated_gid: string;
|
|
48
48
|
indices?: number[] | null | undefined;
|
|
49
49
|
}>, "many">>>;
|
|
50
50
|
}, "strip", z.ZodTypeAny, {
|
|
51
51
|
body: string;
|
|
52
52
|
embeddables?: {
|
|
53
53
|
role: "link" | "profile" | "mention";
|
|
54
|
-
|
|
54
|
+
associated_gid: string;
|
|
55
55
|
indices?: number[] | null | undefined;
|
|
56
56
|
}[] | null | undefined;
|
|
57
57
|
attachments?: {
|
|
@@ -66,7 +66,7 @@ export declare const postValidationSchema: z.ZodObject<{
|
|
|
66
66
|
body: string;
|
|
67
67
|
embeddables?: {
|
|
68
68
|
role: "link" | "profile" | "mention";
|
|
69
|
-
|
|
69
|
+
associated_gid: string;
|
|
70
70
|
indices?: number[] | null | undefined;
|
|
71
71
|
}[] | null | undefined;
|
|
72
72
|
attachments?: {
|
|
@@ -87,7 +87,7 @@ export declare const postValidationSchema: z.ZodObject<{
|
|
|
87
87
|
body: string;
|
|
88
88
|
embeddables?: {
|
|
89
89
|
role: "link" | "profile" | "mention";
|
|
90
|
-
|
|
90
|
+
associated_gid: string;
|
|
91
91
|
indices?: number[] | null | undefined;
|
|
92
92
|
}[] | null | undefined;
|
|
93
93
|
attachments?: {
|
|
@@ -108,7 +108,7 @@ export declare const postValidationSchema: z.ZodObject<{
|
|
|
108
108
|
body: string;
|
|
109
109
|
embeddables?: {
|
|
110
110
|
role: "link" | "profile" | "mention";
|
|
111
|
-
|
|
111
|
+
associated_gid: string;
|
|
112
112
|
indices?: number[] | null | undefined;
|
|
113
113
|
}[] | null | undefined;
|
|
114
114
|
attachments?: {
|
|
@@ -161,23 +161,23 @@ export declare const searchValidationSchema: z.ZodObject<{
|
|
|
161
161
|
}>>;
|
|
162
162
|
body: z.ZodString;
|
|
163
163
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
164
|
-
|
|
164
|
+
associated_gid: z.ZodString;
|
|
165
165
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
166
166
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
167
167
|
}, "strip", z.ZodTypeAny, {
|
|
168
168
|
role: "link" | "profile" | "mention";
|
|
169
|
-
|
|
169
|
+
associated_gid: string;
|
|
170
170
|
indices?: number[] | null | undefined;
|
|
171
171
|
}, {
|
|
172
172
|
role: "link" | "profile" | "mention";
|
|
173
|
-
|
|
173
|
+
associated_gid: string;
|
|
174
174
|
indices?: number[] | null | undefined;
|
|
175
175
|
}>, "many">>>;
|
|
176
176
|
}, "strip", z.ZodTypeAny, {
|
|
177
177
|
body: string;
|
|
178
178
|
embeddables?: {
|
|
179
179
|
role: "link" | "profile" | "mention";
|
|
180
|
-
|
|
180
|
+
associated_gid: string;
|
|
181
181
|
indices?: number[] | null | undefined;
|
|
182
182
|
}[] | null | undefined;
|
|
183
183
|
attachments?: {
|
|
@@ -192,7 +192,7 @@ export declare const searchValidationSchema: z.ZodObject<{
|
|
|
192
192
|
body: string;
|
|
193
193
|
embeddables?: {
|
|
194
194
|
role: "link" | "profile" | "mention";
|
|
195
|
-
|
|
195
|
+
associated_gid: string;
|
|
196
196
|
indices?: number[] | null | undefined;
|
|
197
197
|
}[] | null | undefined;
|
|
198
198
|
attachments?: {
|
|
@@ -213,7 +213,7 @@ export declare const searchValidationSchema: z.ZodObject<{
|
|
|
213
213
|
body: string;
|
|
214
214
|
embeddables?: {
|
|
215
215
|
role: "link" | "profile" | "mention";
|
|
216
|
-
|
|
216
|
+
associated_gid: string;
|
|
217
217
|
indices?: number[] | null | undefined;
|
|
218
218
|
}[] | null | undefined;
|
|
219
219
|
attachments?: {
|
|
@@ -234,7 +234,7 @@ export declare const searchValidationSchema: z.ZodObject<{
|
|
|
234
234
|
body: string;
|
|
235
235
|
embeddables?: {
|
|
236
236
|
role: "link" | "profile" | "mention";
|
|
237
|
-
|
|
237
|
+
associated_gid: string;
|
|
238
238
|
indices?: number[] | null | undefined;
|
|
239
239
|
}[] | null | undefined;
|
|
240
240
|
attachments?: {
|
|
@@ -287,23 +287,23 @@ export declare const recommendationValidationSchema: z.ZodObject<{
|
|
|
287
287
|
}>>;
|
|
288
288
|
body: z.ZodString;
|
|
289
289
|
embeddables: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
290
|
-
|
|
290
|
+
associated_gid: z.ZodString;
|
|
291
291
|
indices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
292
292
|
role: z.ZodEnum<["mention", "link", "profile"]>;
|
|
293
293
|
}, "strip", z.ZodTypeAny, {
|
|
294
294
|
role: "link" | "profile" | "mention";
|
|
295
|
-
|
|
295
|
+
associated_gid: string;
|
|
296
296
|
indices?: number[] | null | undefined;
|
|
297
297
|
}, {
|
|
298
298
|
role: "link" | "profile" | "mention";
|
|
299
|
-
|
|
299
|
+
associated_gid: string;
|
|
300
300
|
indices?: number[] | null | undefined;
|
|
301
301
|
}>, "many">>>;
|
|
302
302
|
}, "strip", z.ZodTypeAny, {
|
|
303
303
|
body: string;
|
|
304
304
|
embeddables?: {
|
|
305
305
|
role: "link" | "profile" | "mention";
|
|
306
|
-
|
|
306
|
+
associated_gid: string;
|
|
307
307
|
indices?: number[] | null | undefined;
|
|
308
308
|
}[] | null | undefined;
|
|
309
309
|
attachments?: {
|
|
@@ -318,7 +318,7 @@ export declare const recommendationValidationSchema: z.ZodObject<{
|
|
|
318
318
|
body: string;
|
|
319
319
|
embeddables?: {
|
|
320
320
|
role: "link" | "profile" | "mention";
|
|
321
|
-
|
|
321
|
+
associated_gid: string;
|
|
322
322
|
indices?: number[] | null | undefined;
|
|
323
323
|
}[] | null | undefined;
|
|
324
324
|
attachments?: {
|
|
@@ -339,7 +339,7 @@ export declare const recommendationValidationSchema: z.ZodObject<{
|
|
|
339
339
|
body: string;
|
|
340
340
|
embeddables?: {
|
|
341
341
|
role: "link" | "profile" | "mention";
|
|
342
|
-
|
|
342
|
+
associated_gid: string;
|
|
343
343
|
indices?: number[] | null | undefined;
|
|
344
344
|
}[] | null | undefined;
|
|
345
345
|
attachments?: {
|
|
@@ -360,7 +360,7 @@ export declare const recommendationValidationSchema: z.ZodObject<{
|
|
|
360
360
|
body: string;
|
|
361
361
|
embeddables?: {
|
|
362
362
|
role: "link" | "profile" | "mention";
|
|
363
|
-
|
|
363
|
+
associated_gid: string;
|
|
364
364
|
indices?: number[] | null | undefined;
|
|
365
365
|
}[] | null | undefined;
|
|
366
366
|
attachments?: {
|
|
@@ -35,9 +35,9 @@ export type RichTextAreaProps = {
|
|
|
35
35
|
value: RichTextAreaValueType;
|
|
36
36
|
};
|
|
37
37
|
export type CoreV3Embed = {
|
|
38
|
+
associated_gid: string;
|
|
38
39
|
cta_url?: string;
|
|
39
40
|
description?: string | null;
|
|
40
|
-
gid: string;
|
|
41
41
|
image_url?: string | null;
|
|
42
42
|
indices?: number[] | null;
|
|
43
43
|
recommendations_count?: number;
|