@_henriquewilson/gabirubi-domain 1.0.4 → 1.0.7
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/model/journey.d.mts
CHANGED
|
@@ -62,10 +62,12 @@ declare const ActivitySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
62
62
|
updateAt: z.ZodOptional<z.ZodEffects<z.ZodType<FirebaseFirestore.Timestamp, z.ZodTypeDef, FirebaseFirestore.Timestamp>, FirebaseFirestore.Timestamp, unknown>>;
|
|
63
63
|
}, {
|
|
64
64
|
title: z.ZodString;
|
|
65
|
+
description: z.ZodString;
|
|
65
66
|
contentType: z.ZodEnum<["video", "file", "audio", "text"]>;
|
|
66
67
|
content: z.ZodString;
|
|
67
68
|
}>, "strip", z.ZodTypeAny, {
|
|
68
69
|
title: string;
|
|
70
|
+
description: string;
|
|
69
71
|
contentType: "video" | "file" | "audio" | "text";
|
|
70
72
|
content: string;
|
|
71
73
|
id?: string | null | undefined;
|
|
@@ -74,6 +76,7 @@ declare const ActivitySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74
76
|
updateAt?: FirebaseFirestore.Timestamp | undefined;
|
|
75
77
|
}, {
|
|
76
78
|
title: string;
|
|
79
|
+
description: string;
|
|
77
80
|
contentType: "video" | "file" | "audio" | "text";
|
|
78
81
|
content: string;
|
|
79
82
|
id?: string | null | undefined;
|
package/dist/model/journey.d.ts
CHANGED
|
@@ -62,10 +62,12 @@ declare const ActivitySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
62
62
|
updateAt: z.ZodOptional<z.ZodEffects<z.ZodType<FirebaseFirestore.Timestamp, z.ZodTypeDef, FirebaseFirestore.Timestamp>, FirebaseFirestore.Timestamp, unknown>>;
|
|
63
63
|
}, {
|
|
64
64
|
title: z.ZodString;
|
|
65
|
+
description: z.ZodString;
|
|
65
66
|
contentType: z.ZodEnum<["video", "file", "audio", "text"]>;
|
|
66
67
|
content: z.ZodString;
|
|
67
68
|
}>, "strip", z.ZodTypeAny, {
|
|
68
69
|
title: string;
|
|
70
|
+
description: string;
|
|
69
71
|
contentType: "video" | "file" | "audio" | "text";
|
|
70
72
|
content: string;
|
|
71
73
|
id?: string | null | undefined;
|
|
@@ -74,6 +76,7 @@ declare const ActivitySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74
76
|
updateAt?: FirebaseFirestore.Timestamp | undefined;
|
|
75
77
|
}, {
|
|
76
78
|
title: string;
|
|
79
|
+
description: string;
|
|
77
80
|
contentType: "video" | "file" | "audio" | "text";
|
|
78
81
|
content: string;
|
|
79
82
|
id?: string | null | undefined;
|
package/dist/model/journey.js
CHANGED
|
@@ -186811,6 +186811,7 @@ var JourneyContentTypeSchema = import_zod3.z.enum([
|
|
|
186811
186811
|
]);
|
|
186812
186812
|
var ActivitySchema = ModelSchema.extend({
|
|
186813
186813
|
title: import_zod3.z.string(),
|
|
186814
|
+
description: import_zod3.z.string(),
|
|
186814
186815
|
contentType: JourneyContentTypeSchema,
|
|
186815
186816
|
content: import_zod3.z.string()
|
|
186816
186817
|
});
|