@_henriquewilson/gabirubi-domain 1.3.59 → 1.3.60
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 +22 -22
- package/dist/model/journey.d.ts +22 -22
- package/dist/model/podcast.d.mts +2 -1
- package/dist/model/podcast.d.ts +2 -1
- package/dist/model/podcast.js.map +1 -1
- package/dist/model/podcast.mjs.map +1 -1
- package/dist/model/subscription.model.d.mts +8 -8
- package/dist/model/subscription.model.d.ts +8 -8
- package/dist/model/user.model.d.mts +2 -2
- package/dist/model/user.model.d.ts +2 -2
- package/package.json +1 -1
package/dist/model/journey.d.mts
CHANGED
|
@@ -58,8 +58,8 @@ declare const PlanSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
58
58
|
stripePrice: z.ZodString;
|
|
59
59
|
}>, "strip", z.ZodTypeAny, {
|
|
60
60
|
id: string | number;
|
|
61
|
-
title: string;
|
|
62
61
|
enabled: boolean;
|
|
62
|
+
title: string;
|
|
63
63
|
price: number;
|
|
64
64
|
period: "month" | "year";
|
|
65
65
|
pixPrice: number;
|
|
@@ -79,8 +79,8 @@ declare const PlanSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
79
79
|
createdAt?: unknown;
|
|
80
80
|
updatedAt?: unknown;
|
|
81
81
|
order?: number | null | undefined;
|
|
82
|
-
description?: string | undefined;
|
|
83
82
|
enabled?: boolean | undefined;
|
|
83
|
+
description?: string | undefined;
|
|
84
84
|
period?: "month" | "year" | undefined;
|
|
85
85
|
}>;
|
|
86
86
|
declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -347,8 +347,8 @@ declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
347
347
|
stripePrice: z.ZodString;
|
|
348
348
|
}>, "strip", z.ZodTypeAny, {
|
|
349
349
|
id: string | number;
|
|
350
|
-
title: string;
|
|
351
350
|
enabled: boolean;
|
|
351
|
+
title: string;
|
|
352
352
|
price: number;
|
|
353
353
|
period: "month" | "year";
|
|
354
354
|
pixPrice: number;
|
|
@@ -368,8 +368,8 @@ declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
368
368
|
createdAt?: unknown;
|
|
369
369
|
updatedAt?: unknown;
|
|
370
370
|
order?: number | null | undefined;
|
|
371
|
-
description?: string | undefined;
|
|
372
371
|
enabled?: boolean | undefined;
|
|
372
|
+
description?: string | undefined;
|
|
373
373
|
period?: "month" | "year" | undefined;
|
|
374
374
|
}>, "many">>;
|
|
375
375
|
}>, z.objectUtil.extendShape<{
|
|
@@ -447,8 +447,8 @@ declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
447
447
|
stripeProductId?: string | undefined;
|
|
448
448
|
plans?: {
|
|
449
449
|
id: string | number;
|
|
450
|
-
title: string;
|
|
451
450
|
enabled: boolean;
|
|
451
|
+
title: string;
|
|
452
452
|
price: number;
|
|
453
453
|
period: "month" | "year";
|
|
454
454
|
pixPrice: number;
|
|
@@ -533,8 +533,8 @@ declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
533
533
|
createdAt?: unknown;
|
|
534
534
|
updatedAt?: unknown;
|
|
535
535
|
order?: number | null | undefined;
|
|
536
|
-
description?: string | undefined;
|
|
537
536
|
enabled?: boolean | undefined;
|
|
537
|
+
description?: string | undefined;
|
|
538
538
|
period?: "month" | "year" | undefined;
|
|
539
539
|
}[] | undefined;
|
|
540
540
|
}>;
|
|
@@ -586,32 +586,32 @@ declare const ModuleSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
586
586
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
587
587
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
588
588
|
order?: number | null | undefined;
|
|
589
|
-
publishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
590
|
-
unpublishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
591
|
-
isExclusive?: boolean | null | undefined;
|
|
592
589
|
previous?: {
|
|
593
590
|
id: string | number;
|
|
594
591
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
595
592
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
596
593
|
order?: number | null | undefined;
|
|
597
594
|
}[] | undefined;
|
|
595
|
+
publishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
596
|
+
unpublishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
597
|
+
isExclusive?: boolean | null | undefined;
|
|
598
598
|
}, {
|
|
599
599
|
title: string;
|
|
600
600
|
id?: unknown;
|
|
601
601
|
createdAt?: unknown;
|
|
602
602
|
updatedAt?: unknown;
|
|
603
603
|
order?: number | null | undefined;
|
|
604
|
-
publishOnDate?: unknown;
|
|
605
|
-
unpublishOnDate?: unknown;
|
|
606
|
-
published?: boolean | undefined;
|
|
607
|
-
isPrivate?: boolean | undefined;
|
|
608
|
-
isExclusive?: boolean | null | undefined;
|
|
609
604
|
previous?: {
|
|
610
605
|
id?: unknown;
|
|
611
606
|
createdAt?: unknown;
|
|
612
607
|
updatedAt?: unknown;
|
|
613
608
|
order?: number | null | undefined;
|
|
614
609
|
}[] | undefined;
|
|
610
|
+
publishOnDate?: unknown;
|
|
611
|
+
unpublishOnDate?: unknown;
|
|
612
|
+
published?: boolean | undefined;
|
|
613
|
+
isPrivate?: boolean | undefined;
|
|
614
|
+
isExclusive?: boolean | null | undefined;
|
|
615
615
|
}>;
|
|
616
616
|
declare const JourneyContentTypeSchema: z.ZodEnum<["video", "document", "audio", "text", "soundcloud", "youtube", "form", "live", "file"]>;
|
|
617
617
|
declare const ActivitySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -835,15 +835,15 @@ declare const ModuleWithActivities: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
835
835
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
836
836
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
837
837
|
order?: number | null | undefined;
|
|
838
|
-
publishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
839
|
-
unpublishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
840
|
-
isExclusive?: boolean | null | undefined;
|
|
841
838
|
previous?: {
|
|
842
839
|
id: string | number;
|
|
843
840
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
844
841
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
845
842
|
order?: number | null | undefined;
|
|
846
843
|
}[] | undefined;
|
|
844
|
+
publishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
845
|
+
unpublishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
846
|
+
isExclusive?: boolean | null | undefined;
|
|
847
847
|
}, {
|
|
848
848
|
title: string;
|
|
849
849
|
activities: {
|
|
@@ -871,17 +871,17 @@ declare const ModuleWithActivities: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
871
871
|
createdAt?: unknown;
|
|
872
872
|
updatedAt?: unknown;
|
|
873
873
|
order?: number | null | undefined;
|
|
874
|
-
publishOnDate?: unknown;
|
|
875
|
-
unpublishOnDate?: unknown;
|
|
876
|
-
published?: boolean | undefined;
|
|
877
|
-
isPrivate?: boolean | undefined;
|
|
878
|
-
isExclusive?: boolean | null | undefined;
|
|
879
874
|
previous?: {
|
|
880
875
|
id?: unknown;
|
|
881
876
|
createdAt?: unknown;
|
|
882
877
|
updatedAt?: unknown;
|
|
883
878
|
order?: number | null | undefined;
|
|
884
879
|
}[] | undefined;
|
|
880
|
+
publishOnDate?: unknown;
|
|
881
|
+
unpublishOnDate?: unknown;
|
|
882
|
+
published?: boolean | undefined;
|
|
883
|
+
isPrivate?: boolean | undefined;
|
|
884
|
+
isExclusive?: boolean | null | undefined;
|
|
885
885
|
}>;
|
|
886
886
|
type ModuleWithActivities = z.infer<typeof ModuleWithActivities>;
|
|
887
887
|
type Activity = z.infer<typeof ActivitySchema>;
|
package/dist/model/journey.d.ts
CHANGED
|
@@ -58,8 +58,8 @@ declare const PlanSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
58
58
|
stripePrice: z.ZodString;
|
|
59
59
|
}>, "strip", z.ZodTypeAny, {
|
|
60
60
|
id: string | number;
|
|
61
|
-
title: string;
|
|
62
61
|
enabled: boolean;
|
|
62
|
+
title: string;
|
|
63
63
|
price: number;
|
|
64
64
|
period: "month" | "year";
|
|
65
65
|
pixPrice: number;
|
|
@@ -79,8 +79,8 @@ declare const PlanSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
79
79
|
createdAt?: unknown;
|
|
80
80
|
updatedAt?: unknown;
|
|
81
81
|
order?: number | null | undefined;
|
|
82
|
-
description?: string | undefined;
|
|
83
82
|
enabled?: boolean | undefined;
|
|
83
|
+
description?: string | undefined;
|
|
84
84
|
period?: "month" | "year" | undefined;
|
|
85
85
|
}>;
|
|
86
86
|
declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -347,8 +347,8 @@ declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
347
347
|
stripePrice: z.ZodString;
|
|
348
348
|
}>, "strip", z.ZodTypeAny, {
|
|
349
349
|
id: string | number;
|
|
350
|
-
title: string;
|
|
351
350
|
enabled: boolean;
|
|
351
|
+
title: string;
|
|
352
352
|
price: number;
|
|
353
353
|
period: "month" | "year";
|
|
354
354
|
pixPrice: number;
|
|
@@ -368,8 +368,8 @@ declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
368
368
|
createdAt?: unknown;
|
|
369
369
|
updatedAt?: unknown;
|
|
370
370
|
order?: number | null | undefined;
|
|
371
|
-
description?: string | undefined;
|
|
372
371
|
enabled?: boolean | undefined;
|
|
372
|
+
description?: string | undefined;
|
|
373
373
|
period?: "month" | "year" | undefined;
|
|
374
374
|
}>, "many">>;
|
|
375
375
|
}>, z.objectUtil.extendShape<{
|
|
@@ -447,8 +447,8 @@ declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
447
447
|
stripeProductId?: string | undefined;
|
|
448
448
|
plans?: {
|
|
449
449
|
id: string | number;
|
|
450
|
-
title: string;
|
|
451
450
|
enabled: boolean;
|
|
451
|
+
title: string;
|
|
452
452
|
price: number;
|
|
453
453
|
period: "month" | "year";
|
|
454
454
|
pixPrice: number;
|
|
@@ -533,8 +533,8 @@ declare const JourneySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
533
533
|
createdAt?: unknown;
|
|
534
534
|
updatedAt?: unknown;
|
|
535
535
|
order?: number | null | undefined;
|
|
536
|
-
description?: string | undefined;
|
|
537
536
|
enabled?: boolean | undefined;
|
|
537
|
+
description?: string | undefined;
|
|
538
538
|
period?: "month" | "year" | undefined;
|
|
539
539
|
}[] | undefined;
|
|
540
540
|
}>;
|
|
@@ -586,32 +586,32 @@ declare const ModuleSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
586
586
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
587
587
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
588
588
|
order?: number | null | undefined;
|
|
589
|
-
publishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
590
|
-
unpublishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
591
|
-
isExclusive?: boolean | null | undefined;
|
|
592
589
|
previous?: {
|
|
593
590
|
id: string | number;
|
|
594
591
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
595
592
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
596
593
|
order?: number | null | undefined;
|
|
597
594
|
}[] | undefined;
|
|
595
|
+
publishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
596
|
+
unpublishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
597
|
+
isExclusive?: boolean | null | undefined;
|
|
598
598
|
}, {
|
|
599
599
|
title: string;
|
|
600
600
|
id?: unknown;
|
|
601
601
|
createdAt?: unknown;
|
|
602
602
|
updatedAt?: unknown;
|
|
603
603
|
order?: number | null | undefined;
|
|
604
|
-
publishOnDate?: unknown;
|
|
605
|
-
unpublishOnDate?: unknown;
|
|
606
|
-
published?: boolean | undefined;
|
|
607
|
-
isPrivate?: boolean | undefined;
|
|
608
|
-
isExclusive?: boolean | null | undefined;
|
|
609
604
|
previous?: {
|
|
610
605
|
id?: unknown;
|
|
611
606
|
createdAt?: unknown;
|
|
612
607
|
updatedAt?: unknown;
|
|
613
608
|
order?: number | null | undefined;
|
|
614
609
|
}[] | undefined;
|
|
610
|
+
publishOnDate?: unknown;
|
|
611
|
+
unpublishOnDate?: unknown;
|
|
612
|
+
published?: boolean | undefined;
|
|
613
|
+
isPrivate?: boolean | undefined;
|
|
614
|
+
isExclusive?: boolean | null | undefined;
|
|
615
615
|
}>;
|
|
616
616
|
declare const JourneyContentTypeSchema: z.ZodEnum<["video", "document", "audio", "text", "soundcloud", "youtube", "form", "live", "file"]>;
|
|
617
617
|
declare const ActivitySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -835,15 +835,15 @@ declare const ModuleWithActivities: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
835
835
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
836
836
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
837
837
|
order?: number | null | undefined;
|
|
838
|
-
publishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
839
|
-
unpublishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
840
|
-
isExclusive?: boolean | null | undefined;
|
|
841
838
|
previous?: {
|
|
842
839
|
id: string | number;
|
|
843
840
|
createdAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
844
841
|
updatedAt?: FirebaseFirestore.Timestamp | null | undefined;
|
|
845
842
|
order?: number | null | undefined;
|
|
846
843
|
}[] | undefined;
|
|
844
|
+
publishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
845
|
+
unpublishOnDate?: FirebaseFirestore.Timestamp | null | undefined;
|
|
846
|
+
isExclusive?: boolean | null | undefined;
|
|
847
847
|
}, {
|
|
848
848
|
title: string;
|
|
849
849
|
activities: {
|
|
@@ -871,17 +871,17 @@ declare const ModuleWithActivities: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
871
871
|
createdAt?: unknown;
|
|
872
872
|
updatedAt?: unknown;
|
|
873
873
|
order?: number | null | undefined;
|
|
874
|
-
publishOnDate?: unknown;
|
|
875
|
-
unpublishOnDate?: unknown;
|
|
876
|
-
published?: boolean | undefined;
|
|
877
|
-
isPrivate?: boolean | undefined;
|
|
878
|
-
isExclusive?: boolean | null | undefined;
|
|
879
874
|
previous?: {
|
|
880
875
|
id?: unknown;
|
|
881
876
|
createdAt?: unknown;
|
|
882
877
|
updatedAt?: unknown;
|
|
883
878
|
order?: number | null | undefined;
|
|
884
879
|
}[] | undefined;
|
|
880
|
+
publishOnDate?: unknown;
|
|
881
|
+
unpublishOnDate?: unknown;
|
|
882
|
+
published?: boolean | undefined;
|
|
883
|
+
isPrivate?: boolean | undefined;
|
|
884
|
+
isExclusive?: boolean | null | undefined;
|
|
885
885
|
}>;
|
|
886
886
|
type ModuleWithActivities = z.infer<typeof ModuleWithActivities>;
|
|
887
887
|
type Activity = z.infer<typeof ActivitySchema>;
|
package/dist/model/podcast.d.mts
CHANGED
|
@@ -115,5 +115,6 @@ declare const PodcastSchema: z.ZodObject<{
|
|
|
115
115
|
extension: string;
|
|
116
116
|
}>;
|
|
117
117
|
type Podcast = z.infer<typeof PodcastSchema>;
|
|
118
|
+
type PodcastLesson = z.infer<typeof LessonSchema>;
|
|
118
119
|
|
|
119
|
-
export { LessonSchema, type Podcast, PodcastSchema };
|
|
120
|
+
export { LessonSchema, type Podcast, type PodcastLesson, PodcastSchema };
|
package/dist/model/podcast.d.ts
CHANGED
|
@@ -115,5 +115,6 @@ declare const PodcastSchema: z.ZodObject<{
|
|
|
115
115
|
extension: string;
|
|
116
116
|
}>;
|
|
117
117
|
type Podcast = z.infer<typeof PodcastSchema>;
|
|
118
|
+
type PodcastLesson = z.infer<typeof LessonSchema>;
|
|
118
119
|
|
|
119
|
-
export { LessonSchema, type Podcast, PodcastSchema };
|
|
120
|
+
export { LessonSchema, type Podcast, type PodcastLesson, PodcastSchema };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/Users/henriquewilson/Developer/Projects/gabirubi-domain/dist/model/podcast.js","../../src/model/podcast.ts"],"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__toCommonJS","mod","value","podcast_exports","LessonSchema","PodcastSchema","module","exports","import_zod","require","z","object","moduleId","string","activityId","date","crystal","affirmation","meditation","lesson","ratio","number","allLessons","array","transcription","extension"],"mappings":"AAAA;AACA,IAAIA,YAAYC,OAAOC,cAAc;AACrC,IAAIC,mBAAmBF,OAAOG,wBAAwB;AACtD,IAAIC,oBAAoBJ,OAAOK,mBAAmB;AAClD,IAAIC,eAAeN,OAAOO,SAAS,CAACC,cAAc;AAClD,IAAIC,WAAW,SAACC,QAAQC;IACtB,IAAK,IAAIC,QAAQD,IACfZ,UAAUW,QAAQE,MAAM;QAAEC,KAAKF,GAAG,CAACC,KAAK;QAAEE,YAAY;IAAK;AAC/D;AACA,IAAIC,cAAc,SAACC,IAAIC,MAAMC,QAAQC;IACnC,IAAIF,QAAQ,OAAOA,SAAS,YAAY,OAAOA,SAAS,YAAY;YAC7D,kCAAA,2BAAA;;;gBAAA,IAAIG,MAAJ;gBACH,IAAI,CAACd,aAAae,IAAI,CAACL,IAAII,QAAQA,QAAQF,QACzCnB,UAAUiB,IAAII,KAAK;oBAAEP,KAAK;+BAAMI,IAAI,CAACG,IAAI;;oBAAEN,YAAY,CAAEK,CAAAA,OAAOjB,iBAAiBe,MAAMG,IAAG,KAAMD,KAAKL,UAAU;gBAAC;;YAFpH,QAAK,YAAWV,kBAAkBa,0BAA7B,SAAA,6BAAA,QAAA,yBAAA;;YAAA;YAAA;;;qBAAA,6BAAA;oBAAA;;;oBAAA;0BAAA;;;;IAGP;IACA,OAAOD;AACT;AACA,IAAIM,eAAe,SAACC;WAAQR,YAAYhB,UAAU,CAAC,GAAG,cAAc;QAAEyB,OAAO;IAAK,IAAID;;AAEtF,uBAAuB;ACnBvB,IAAAE,kBAAA,CAAA;AAAAhB,SAAAgB,iBAAA;IAAAC,cAAA;eAAAA;;IAAAC,eAAA;eAAAA;;AAAA;AAAAC,OAAAC,OAAA,GAAAP,aAAAG;AAAA,IAAAK,aAAkBC,QAAA;AAEX,IAAML,eAAeI,WAAAE,CAAA,CAAEC,MAAA,CAAO;IAAEC,UAAUJ,WAAAE,CAAA,CAAEG,MAAA;IAAUC,YAAYN,WAAAE,CAAA,CAAEG,MAAA;IAAUvB,MAAMkB,WAAAE,CAAA,CAAEG,MAAA;AAAQ;AAC9F,IAAMR,gBAAgBG,WAAAE,CAAA,CAAEC,MAAA,CAAO;IACpCI,MAAMP,WAAAE,CAAA,CAAEG,MAAA;IACRG,SAASR,WAAAE,CAAA,CAAEG,MAAA;IACXI,aAAaT,WAAAE,CAAA,CAAEG,MAAA;IACfK,YAAYV,WAAAE,CAAA,CAAEG,MAAA;IACdM,QAAQX,WAAAE,CAAA,CAAEC,MAAA,CAAO;QACfQ,QAAQf;QACRgB,OAAOZ,WAAAE,CAAA,CAAEW,MAAA;QACTC,YAAYlB,aAAamB,KAAA;IAC3B;IACAC,eAAehB,WAAAE,CAAA,CAAEG,MAAA;IACjBY,WAAWjB,WAAAE,CAAA,CAAEG,MAAA;AACf;AD0BA,6DAA6D;AAC7D,KAAMP,CAAAA,OAAOC,OAAO,GAAG;IACrBH,cAAAA;IACAC,eAAAA;AACF,CAAA","sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\n\n// src/model/podcast.ts\nvar podcast_exports = {};\n__export(podcast_exports, {\n LessonSchema: () => LessonSchema,\n PodcastSchema: () => PodcastSchema\n});\nmodule.exports = __toCommonJS(podcast_exports);\nvar import_zod = require(\"zod\");\nvar LessonSchema = import_zod.z.object({ moduleId: import_zod.z.string(), activityId: import_zod.z.string(), name: import_zod.z.string() });\nvar PodcastSchema = import_zod.z.object({\n date: import_zod.z.string(),\n crystal: import_zod.z.string(),\n affirmation: import_zod.z.string(),\n meditation: import_zod.z.string(),\n lesson: import_zod.z.object({\n lesson: LessonSchema,\n ratio: import_zod.z.number(),\n allLessons: LessonSchema.array()\n }),\n transcription: import_zod.z.string(),\n extension: import_zod.z.string()\n});\n// Annotate the CommonJS export names for ESM import in node:\n0 && (module.exports = {\n LessonSchema,\n PodcastSchema\n});\n","import { z } from \"zod\"\n\nexport const LessonSchema = z.object({ moduleId: z.string(), activityId: z.string(), name: z.string()})\nexport const PodcastSchema = z.object({\n date: z.string(),\n crystal: z.string(),\n affirmation: z.string(),\n meditation: z.string(),\n lesson: z.object({\n lesson: LessonSchema,\n ratio: z.number(),\n allLessons: LessonSchema.array()\n }),\n transcription: z.string(),\n extension: z.string()\n})\n\nexport type Podcast = z.infer<typeof PodcastSchema>\n"]}
|
|
1
|
+
{"version":3,"sources":["/Users/henriquewilson/Developer/Projects/gabirubi-domain/dist/model/podcast.js","../../src/model/podcast.ts"],"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__toCommonJS","mod","value","podcast_exports","LessonSchema","PodcastSchema","module","exports","import_zod","require","z","object","moduleId","string","activityId","date","crystal","affirmation","meditation","lesson","ratio","number","allLessons","array","transcription","extension"],"mappings":"AAAA;AACA,IAAIA,YAAYC,OAAOC,cAAc;AACrC,IAAIC,mBAAmBF,OAAOG,wBAAwB;AACtD,IAAIC,oBAAoBJ,OAAOK,mBAAmB;AAClD,IAAIC,eAAeN,OAAOO,SAAS,CAACC,cAAc;AAClD,IAAIC,WAAW,SAACC,QAAQC;IACtB,IAAK,IAAIC,QAAQD,IACfZ,UAAUW,QAAQE,MAAM;QAAEC,KAAKF,GAAG,CAACC,KAAK;QAAEE,YAAY;IAAK;AAC/D;AACA,IAAIC,cAAc,SAACC,IAAIC,MAAMC,QAAQC;IACnC,IAAIF,QAAQ,OAAOA,SAAS,YAAY,OAAOA,SAAS,YAAY;YAC7D,kCAAA,2BAAA;;;gBAAA,IAAIG,MAAJ;gBACH,IAAI,CAACd,aAAae,IAAI,CAACL,IAAII,QAAQA,QAAQF,QACzCnB,UAAUiB,IAAII,KAAK;oBAAEP,KAAK;+BAAMI,IAAI,CAACG,IAAI;;oBAAEN,YAAY,CAAEK,CAAAA,OAAOjB,iBAAiBe,MAAMG,IAAG,KAAMD,KAAKL,UAAU;gBAAC;;YAFpH,QAAK,YAAWV,kBAAkBa,0BAA7B,SAAA,6BAAA,QAAA,yBAAA;;YAAA;YAAA;;;qBAAA,6BAAA;oBAAA;;;oBAAA;0BAAA;;;;IAGP;IACA,OAAOD;AACT;AACA,IAAIM,eAAe,SAACC;WAAQR,YAAYhB,UAAU,CAAC,GAAG,cAAc;QAAEyB,OAAO;IAAK,IAAID;;AAEtF,uBAAuB;ACnBvB,IAAAE,kBAAA,CAAA;AAAAhB,SAAAgB,iBAAA;IAAAC,cAAA;eAAAA;;IAAAC,eAAA;eAAAA;;AAAA;AAAAC,OAAAC,OAAA,GAAAP,aAAAG;AAAA,IAAAK,aAAkBC,QAAA;AAEX,IAAML,eAAeI,WAAAE,CAAA,CAAEC,MAAA,CAAO;IAAEC,UAAUJ,WAAAE,CAAA,CAAEG,MAAA;IAAUC,YAAYN,WAAAE,CAAA,CAAEG,MAAA;IAAUvB,MAAMkB,WAAAE,CAAA,CAAEG,MAAA;AAAQ;AAC9F,IAAMR,gBAAgBG,WAAAE,CAAA,CAAEC,MAAA,CAAO;IACpCI,MAAMP,WAAAE,CAAA,CAAEG,MAAA;IACRG,SAASR,WAAAE,CAAA,CAAEG,MAAA;IACXI,aAAaT,WAAAE,CAAA,CAAEG,MAAA;IACfK,YAAYV,WAAAE,CAAA,CAAEG,MAAA;IACdM,QAAQX,WAAAE,CAAA,CAAEC,MAAA,CAAO;QACfQ,QAAQf;QACRgB,OAAOZ,WAAAE,CAAA,CAAEW,MAAA;QACTC,YAAYlB,aAAamB,KAAA;IAC3B;IACAC,eAAehB,WAAAE,CAAA,CAAEG,MAAA;IACjBY,WAAWjB,WAAAE,CAAA,CAAEG,MAAA;AACf;AD0BA,6DAA6D;AAC7D,KAAMP,CAAAA,OAAOC,OAAO,GAAG;IACrBH,cAAAA;IACAC,eAAAA;AACF,CAAA","sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\n\n// src/model/podcast.ts\nvar podcast_exports = {};\n__export(podcast_exports, {\n LessonSchema: () => LessonSchema,\n PodcastSchema: () => PodcastSchema\n});\nmodule.exports = __toCommonJS(podcast_exports);\nvar import_zod = require(\"zod\");\nvar LessonSchema = import_zod.z.object({ moduleId: import_zod.z.string(), activityId: import_zod.z.string(), name: import_zod.z.string() });\nvar PodcastSchema = import_zod.z.object({\n date: import_zod.z.string(),\n crystal: import_zod.z.string(),\n affirmation: import_zod.z.string(),\n meditation: import_zod.z.string(),\n lesson: import_zod.z.object({\n lesson: LessonSchema,\n ratio: import_zod.z.number(),\n allLessons: LessonSchema.array()\n }),\n transcription: import_zod.z.string(),\n extension: import_zod.z.string()\n});\n// Annotate the CommonJS export names for ESM import in node:\n0 && (module.exports = {\n LessonSchema,\n PodcastSchema\n});\n","import { z } from \"zod\"\n\nexport const LessonSchema = z.object({ moduleId: z.string(), activityId: z.string(), name: z.string()})\nexport const PodcastSchema = z.object({\n date: z.string(),\n crystal: z.string(),\n affirmation: z.string(),\n meditation: z.string(),\n lesson: z.object({\n lesson: LessonSchema,\n ratio: z.number(),\n allLessons: LessonSchema.array()\n }),\n transcription: z.string(),\n extension: z.string()\n})\n\nexport type Podcast = z.infer<typeof PodcastSchema>\nexport type PodcastLesson = z.infer<typeof LessonSchema>\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/Users/henriquewilson/Developer/Projects/gabirubi-domain/dist/model/podcast.mjs","../../src/model/podcast.ts"],"names":["z","LessonSchema","object","moduleId","string","activityId","name","PodcastSchema","date","crystal","affirmation","meditation","lesson","ratio","number","allLessons","array","transcription","extension"],"mappings":"AAAA,uBAAuB;ACAvB,SAASA,CAAA,QAAS,MAAA;AAEX,IAAMC,eAAeD,EAAEE,MAAA,CAAO;IAAEC,UAAUH,EAAEI,MAAA;IAAUC,YAAYL,EAAEI,MAAA;IAAUE,MAAMN,EAAEI,MAAA;AAAQ;AAC9F,IAAMG,gBAAgBP,EAAEE,MAAA,CAAO;IACpCM,MAAMR,EAAEI,MAAA;IACRK,SAAST,EAAEI,MAAA;IACXM,aAAaV,EAAEI,MAAA;IACfO,YAAYX,EAAEI,MAAA;IACdQ,QAAQZ,EAAEE,MAAA,CAAO;QACfU,QAAQX;QACRY,OAAOb,EAAEc,MAAA;QACTC,YAAYd,aAAae,KAAA;IAC3B;IACAC,eAAejB,EAAEI,MAAA;IACjBc,WAAWlB,EAAEI,MAAA;AACf;ADCA,SACEH,YAAY,EACZM,aAAa,GACb","sourcesContent":["// src/model/podcast.ts\nimport { z } from \"zod\";\nvar LessonSchema = z.object({ moduleId: z.string(), activityId: z.string(), name: z.string() });\nvar PodcastSchema = z.object({\n date: z.string(),\n crystal: z.string(),\n affirmation: z.string(),\n meditation: z.string(),\n lesson: z.object({\n lesson: LessonSchema,\n ratio: z.number(),\n allLessons: LessonSchema.array()\n }),\n transcription: z.string(),\n extension: z.string()\n});\nexport {\n LessonSchema,\n PodcastSchema\n};\n","import { z } from \"zod\"\n\nexport const LessonSchema = z.object({ moduleId: z.string(), activityId: z.string(), name: z.string()})\nexport const PodcastSchema = z.object({\n date: z.string(),\n crystal: z.string(),\n affirmation: z.string(),\n meditation: z.string(),\n lesson: z.object({\n lesson: LessonSchema,\n ratio: z.number(),\n allLessons: LessonSchema.array()\n }),\n transcription: z.string(),\n extension: z.string()\n})\n\nexport type Podcast = z.infer<typeof PodcastSchema>\n"]}
|
|
1
|
+
{"version":3,"sources":["/Users/henriquewilson/Developer/Projects/gabirubi-domain/dist/model/podcast.mjs","../../src/model/podcast.ts"],"names":["z","LessonSchema","object","moduleId","string","activityId","name","PodcastSchema","date","crystal","affirmation","meditation","lesson","ratio","number","allLessons","array","transcription","extension"],"mappings":"AAAA,uBAAuB;ACAvB,SAASA,CAAA,QAAS,MAAA;AAEX,IAAMC,eAAeD,EAAEE,MAAA,CAAO;IAAEC,UAAUH,EAAEI,MAAA;IAAUC,YAAYL,EAAEI,MAAA;IAAUE,MAAMN,EAAEI,MAAA;AAAQ;AAC9F,IAAMG,gBAAgBP,EAAEE,MAAA,CAAO;IACpCM,MAAMR,EAAEI,MAAA;IACRK,SAAST,EAAEI,MAAA;IACXM,aAAaV,EAAEI,MAAA;IACfO,YAAYX,EAAEI,MAAA;IACdQ,QAAQZ,EAAEE,MAAA,CAAO;QACfU,QAAQX;QACRY,OAAOb,EAAEc,MAAA;QACTC,YAAYd,aAAae,KAAA;IAC3B;IACAC,eAAejB,EAAEI,MAAA;IACjBc,WAAWlB,EAAEI,MAAA;AACf;ADCA,SACEH,YAAY,EACZM,aAAa,GACb","sourcesContent":["// src/model/podcast.ts\nimport { z } from \"zod\";\nvar LessonSchema = z.object({ moduleId: z.string(), activityId: z.string(), name: z.string() });\nvar PodcastSchema = z.object({\n date: z.string(),\n crystal: z.string(),\n affirmation: z.string(),\n meditation: z.string(),\n lesson: z.object({\n lesson: LessonSchema,\n ratio: z.number(),\n allLessons: LessonSchema.array()\n }),\n transcription: z.string(),\n extension: z.string()\n});\nexport {\n LessonSchema,\n PodcastSchema\n};\n","import { z } from \"zod\"\n\nexport const LessonSchema = z.object({ moduleId: z.string(), activityId: z.string(), name: z.string()})\nexport const PodcastSchema = z.object({\n date: z.string(),\n crystal: z.string(),\n affirmation: z.string(),\n meditation: z.string(),\n lesson: z.object({\n lesson: LessonSchema,\n ratio: z.number(),\n allLessons: LessonSchema.array()\n }),\n transcription: z.string(),\n extension: z.string()\n})\n\nexport type Podcast = z.infer<typeof PodcastSchema>\nexport type PodcastLesson = z.infer<typeof LessonSchema>\n"]}
|
|
@@ -1641,10 +1641,10 @@ declare const SubscriptionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1641
1641
|
createdAt?: Timestamp | null | undefined;
|
|
1642
1642
|
updatedAt?: Timestamp | null | undefined;
|
|
1643
1643
|
order?: number | null | undefined;
|
|
1644
|
-
enabled?: boolean | undefined;
|
|
1645
|
-
lastNewsDate?: Timestamp | null | undefined;
|
|
1646
1644
|
email?: string | undefined;
|
|
1647
1645
|
name?: string | undefined;
|
|
1646
|
+
enabled?: boolean | undefined;
|
|
1647
|
+
lastNewsDate?: Timestamp | null | undefined;
|
|
1648
1648
|
password?: string | undefined;
|
|
1649
1649
|
phone?: string | undefined;
|
|
1650
1650
|
userHash?: string | null | undefined;
|
|
@@ -1662,10 +1662,10 @@ declare const SubscriptionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1662
1662
|
createdAt?: unknown;
|
|
1663
1663
|
updatedAt?: unknown;
|
|
1664
1664
|
order?: number | null | undefined;
|
|
1665
|
-
enabled?: boolean | undefined;
|
|
1666
|
-
lastNewsDate?: unknown;
|
|
1667
1665
|
email?: string | undefined;
|
|
1668
1666
|
name?: string | undefined;
|
|
1667
|
+
enabled?: boolean | undefined;
|
|
1668
|
+
lastNewsDate?: unknown;
|
|
1669
1669
|
password?: string | undefined;
|
|
1670
1670
|
phone?: string | undefined;
|
|
1671
1671
|
userHash?: string | null | undefined;
|
|
@@ -1695,10 +1695,10 @@ declare const SubscriptionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1695
1695
|
createdAt?: Timestamp | null | undefined;
|
|
1696
1696
|
updatedAt?: Timestamp | null | undefined;
|
|
1697
1697
|
order?: number | null | undefined;
|
|
1698
|
-
enabled?: boolean | undefined;
|
|
1699
|
-
lastNewsDate?: Timestamp | null | undefined;
|
|
1700
1698
|
email?: string | undefined;
|
|
1701
1699
|
name?: string | undefined;
|
|
1700
|
+
enabled?: boolean | undefined;
|
|
1701
|
+
lastNewsDate?: Timestamp | null | undefined;
|
|
1702
1702
|
password?: string | undefined;
|
|
1703
1703
|
phone?: string | undefined;
|
|
1704
1704
|
userHash?: string | null | undefined;
|
|
@@ -2191,10 +2191,10 @@ declare const SubscriptionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2191
2191
|
createdAt?: unknown;
|
|
2192
2192
|
updatedAt?: unknown;
|
|
2193
2193
|
order?: number | null | undefined;
|
|
2194
|
-
enabled?: boolean | undefined;
|
|
2195
|
-
lastNewsDate?: unknown;
|
|
2196
2194
|
email?: string | undefined;
|
|
2197
2195
|
name?: string | undefined;
|
|
2196
|
+
enabled?: boolean | undefined;
|
|
2197
|
+
lastNewsDate?: unknown;
|
|
2198
2198
|
password?: string | undefined;
|
|
2199
2199
|
phone?: string | undefined;
|
|
2200
2200
|
userHash?: string | null | undefined;
|
|
@@ -1641,10 +1641,10 @@ declare const SubscriptionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1641
1641
|
createdAt?: Timestamp | null | undefined;
|
|
1642
1642
|
updatedAt?: Timestamp | null | undefined;
|
|
1643
1643
|
order?: number | null | undefined;
|
|
1644
|
-
enabled?: boolean | undefined;
|
|
1645
|
-
lastNewsDate?: Timestamp | null | undefined;
|
|
1646
1644
|
email?: string | undefined;
|
|
1647
1645
|
name?: string | undefined;
|
|
1646
|
+
enabled?: boolean | undefined;
|
|
1647
|
+
lastNewsDate?: Timestamp | null | undefined;
|
|
1648
1648
|
password?: string | undefined;
|
|
1649
1649
|
phone?: string | undefined;
|
|
1650
1650
|
userHash?: string | null | undefined;
|
|
@@ -1662,10 +1662,10 @@ declare const SubscriptionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1662
1662
|
createdAt?: unknown;
|
|
1663
1663
|
updatedAt?: unknown;
|
|
1664
1664
|
order?: number | null | undefined;
|
|
1665
|
-
enabled?: boolean | undefined;
|
|
1666
|
-
lastNewsDate?: unknown;
|
|
1667
1665
|
email?: string | undefined;
|
|
1668
1666
|
name?: string | undefined;
|
|
1667
|
+
enabled?: boolean | undefined;
|
|
1668
|
+
lastNewsDate?: unknown;
|
|
1669
1669
|
password?: string | undefined;
|
|
1670
1670
|
phone?: string | undefined;
|
|
1671
1671
|
userHash?: string | null | undefined;
|
|
@@ -1695,10 +1695,10 @@ declare const SubscriptionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1695
1695
|
createdAt?: Timestamp | null | undefined;
|
|
1696
1696
|
updatedAt?: Timestamp | null | undefined;
|
|
1697
1697
|
order?: number | null | undefined;
|
|
1698
|
-
enabled?: boolean | undefined;
|
|
1699
|
-
lastNewsDate?: Timestamp | null | undefined;
|
|
1700
1698
|
email?: string | undefined;
|
|
1701
1699
|
name?: string | undefined;
|
|
1700
|
+
enabled?: boolean | undefined;
|
|
1701
|
+
lastNewsDate?: Timestamp | null | undefined;
|
|
1702
1702
|
password?: string | undefined;
|
|
1703
1703
|
phone?: string | undefined;
|
|
1704
1704
|
userHash?: string | null | undefined;
|
|
@@ -2191,10 +2191,10 @@ declare const SubscriptionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2191
2191
|
createdAt?: unknown;
|
|
2192
2192
|
updatedAt?: unknown;
|
|
2193
2193
|
order?: number | null | undefined;
|
|
2194
|
-
enabled?: boolean | undefined;
|
|
2195
|
-
lastNewsDate?: unknown;
|
|
2196
2194
|
email?: string | undefined;
|
|
2197
2195
|
name?: string | undefined;
|
|
2196
|
+
enabled?: boolean | undefined;
|
|
2197
|
+
lastNewsDate?: unknown;
|
|
2198
2198
|
password?: string | undefined;
|
|
2199
2199
|
phone?: string | undefined;
|
|
2200
2200
|
userHash?: string | null | undefined;
|
|
@@ -32,9 +32,9 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
32
32
|
createdAt?: Timestamp | null | undefined;
|
|
33
33
|
updatedAt?: Timestamp | null | undefined;
|
|
34
34
|
order?: number | null | undefined;
|
|
35
|
+
name?: string | undefined;
|
|
35
36
|
enabled?: boolean | undefined;
|
|
36
37
|
lastNewsDate?: Timestamp | null | undefined;
|
|
37
|
-
name?: string | undefined;
|
|
38
38
|
password?: string | undefined;
|
|
39
39
|
phone?: string | undefined;
|
|
40
40
|
userHash?: string | null | undefined;
|
|
@@ -53,9 +53,9 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
53
53
|
createdAt?: unknown;
|
|
54
54
|
updatedAt?: unknown;
|
|
55
55
|
order?: number | null | undefined;
|
|
56
|
+
name?: string | undefined;
|
|
56
57
|
enabled?: boolean | undefined;
|
|
57
58
|
lastNewsDate?: unknown;
|
|
58
|
-
name?: string | undefined;
|
|
59
59
|
password?: string | undefined;
|
|
60
60
|
phone?: string | undefined;
|
|
61
61
|
userHash?: string | null | undefined;
|
|
@@ -32,9 +32,9 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
32
32
|
createdAt?: Timestamp | null | undefined;
|
|
33
33
|
updatedAt?: Timestamp | null | undefined;
|
|
34
34
|
order?: number | null | undefined;
|
|
35
|
+
name?: string | undefined;
|
|
35
36
|
enabled?: boolean | undefined;
|
|
36
37
|
lastNewsDate?: Timestamp | null | undefined;
|
|
37
|
-
name?: string | undefined;
|
|
38
38
|
password?: string | undefined;
|
|
39
39
|
phone?: string | undefined;
|
|
40
40
|
userHash?: string | null | undefined;
|
|
@@ -53,9 +53,9 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
53
53
|
createdAt?: unknown;
|
|
54
54
|
updatedAt?: unknown;
|
|
55
55
|
order?: number | null | undefined;
|
|
56
|
+
name?: string | undefined;
|
|
56
57
|
enabled?: boolean | undefined;
|
|
57
58
|
lastNewsDate?: unknown;
|
|
58
|
-
name?: string | undefined;
|
|
59
59
|
password?: string | undefined;
|
|
60
60
|
phone?: string | undefined;
|
|
61
61
|
userHash?: string | null | undefined;
|