@@ -3,6 +3,13 @@ import type {User} from 'common/user'
33
44// for email template testing
55
6+ // A subset of Profile with only essential fields for testing
7+ export type PartialProfile = Pick < ProfileRow ,
8+ 'id' | 'user_id' | 'created_time' | 'last_modification_time' |
9+ 'disabled' | 'looking_for_matches' | 'messaging_status' |
10+ 'comments_enabled' | 'visibility'
11+ > & Partial < ProfileRow >
12+
613export const mockUser : User = {
714 createdTime : 0 ,
815 bio : 'the futa in futarchy' ,
@@ -26,98 +33,22 @@ export const mockUser: User = {
2633 } ,
2734}
2835
29- export const sinclairProfile : ProfileRow = {
36+ export const sinclairProfile : PartialProfile = {
37+ // Required fields
3038 id : 55 ,
3139 user_id : '0k1suGSJKVUnHbCPEhHNpgZPkUP2' ,
3240 created_time : '2023-10-27T00:41:59.851776+00:00' ,
3341 last_modification_time : '2024-05-17T02:11:48.83+00:00' ,
34- city : 'San Francisco' ,
35- gender : 'trans-female' ,
36- pref_gender : [ 'female' , 'trans-female' ] ,
37- pref_age_min : 18 ,
38- pref_age_max : 21 ,
39- religion : [ ] ,
40- image_descriptions : { } ,
41- languages : [ 'english' ] ,
42- pref_relation_styles : [ 'friendship' ] ,
43- pref_romantic_styles : [ 'poly' , 'open' , 'mono' ] ,
4442 disabled : false ,
45- wants_kids_strength : 3 ,
4643 looking_for_matches : true ,
47- visibility : 'public' ,
48- mbti : 'intj' ,
4944 messaging_status : 'open' ,
5045 comments_enabled : true ,
51- has_kids : 0 ,
52- is_smoker : false ,
53- drinks_per_month : 0 ,
54- diet : null ,
55- political_beliefs : [ 'e/acc' , 'libertarian' ] ,
56- relationship_status : [ 'married' ] ,
57- religious_belief_strength : null ,
58- religious_beliefs : null ,
59- political_details : '' ,
60- photo_urls : [
61- 'https://firebasestorage.googleapis.com/v0/b/mantic-markets.appspot.com/o/user-images%2FSinclair%2Flove-images%2FnJz22lr3Bl.jpg?alt=media&token=f1e99ba3-39cc-4637-8702-16a3a8dd49db' ,
62- 'https://firebasestorage.googleapis.com/v0/b/mantic-markets.appspot.com/o/user-images%2FSinclair%2Flove-images%2FygM0mGgP_j.HEIC?alt=media&token=573b23d9-693c-4d6e-919b-097309f370e1' ,
63- 'https://firebasestorage.googleapis.com/v0/b/mantic-markets.appspot.com/o/user-images%2FSinclair%2Flove-images%2FWPZNKxjHGV.HEIC?alt=media&token=190625e1-2cf0-49a6-824b-09b6f4002f2a' ,
64- 'https://firebasestorage.googleapis.com/v0/b/polylove.firebasestorage.app/o/user-images%2FSinclair%2Flove-images%2FlVFKKoLHyV.jpg?alt=media&token=ecb3a003-3672-4382-9ba0-ca894247bb3f' ,
65- 'https://firebasestorage.googleapis.com/v0/b/polylove.firebasestorage.app/o/user-images%2FSinclair%2Flove-images%2Fh659K0bmd4.jpg?alt=media&token=6561ed05-0e2d-4f31-95ee-c7c1c0b33ea6' ,
66- 'https://firebasestorage.googleapis.com/v0/b/polylove.firebasestorage.app/o/user-images%2FSinclair%2Flove-images%2F5OMTo5rhB-.jpg?alt=media&token=4aba4e5a-5115-4d2e-9d57-1e6162e15708' ,
67- 'https://firebasestorage.googleapis.com/v0/b/polylove.firebasestorage.app/o/user-images%2FSinclair%2Flove-images%2FwCT-Y-bgpc.jpg?alt=media&token=91994528-e436-4055-af69-421fa9e29e5c' ,
68- ] ,
69- pinned_url :
70- 'https://firebasestorage.googleapis.com/v0/b/mantic-markets.appspot.com/o/user-images%2FSinclair%2Flove-images%2FYXD19m12D7.jpg?alt=media&token=6cb095b4-dfc8-4bc9-ae67-6f12f29be0a5' ,
71- ethnicity : [ 'asian' ] ,
72- born_in_location : null ,
73- height_in_inches : 70 ,
74- education_level : 'bachelors' ,
75- university : 'Santa Clara University' ,
76- occupation : null ,
77- occupation_title : 'Founding Engineer' ,
78- company : 'Manifold Markets' ,
79- website : 'sincl.ai' ,
80- twitter : 'x.com/singularitttt' ,
81- region_code : 'CA' ,
82- country : 'United States of America' ,
83- city_latitude : 37.7775 ,
84- city_longitude : - 122.416389 ,
85- geodb_city_id : '126964' ,
86- referred_by_username : null ,
87- bio_length : 1000 ,
88- bio : {
89- type : 'doc' ,
90- content : [
91- {
92- type : 'paragraph' ,
93- content : [
94- {
95- type : 'text' ,
96- marks : [
97- {
98- type : 'link' ,
99- attrs : {
100- href : 'https://sinclaaair.notion.site/Date-Me-487ef432c1f54938bf5e7a45ef05d57b' ,
101- target : '_blank' ,
102- } ,
103- } ,
104- ] ,
105- text : 'https://sinclaaair.notion.site/Date-Me-487ef432c1f54938bf5e7a45ef05d57b' ,
106- } ,
107- ] ,
108- } ,
109- ] ,
110- } ,
111- bio_text : 'the futa in futarchy' ,
112- bio_tsv : 'the futa in futarchy' ,
113- search_text : 'the futa in futarchy' ,
114- search_tsv : 'the futa in futarchy' ,
46+ visibility : 'public' ,
47+
48+ // Optional commonly used fields for testing
49+ city : 'San Francisco' ,
50+ gender : 'trans-female' ,
11551 age : 25 ,
116- big5_agreeableness : 10 ,
117- big5_openness : 10 ,
118- big5_conscientiousness : 10 ,
119- big5_extraversion : 10 ,
120- big5_neuroticism : 10 ,
12152}
12253
12354export const jamesUser : User = {
@@ -141,99 +72,20 @@ export const jamesUser: User = {
14172 } ,
14273}
14374
144- export const jamesProfile : ProfileRow = {
75+ export const jamesProfile : PartialProfile = {
76+ // Required fields
14577 id : 2 ,
14678 user_id : '5LZ4LgYuySdL1huCWe7bti02ghx2' ,
14779 created_time : '2023-10-21T21:18:26.691211+00:00' ,
14880 last_modification_time : '2024-05-17T02:11:48.83+00:00' ,
149- city : 'San Francisco' ,
150- gender : 'male' ,
151- pref_gender : [ 'female' ] ,
15281 disabled : false ,
153- pref_age_min : 22 ,
154- pref_age_max : 32 ,
155- religion : [ ] ,
156- image_descriptions : { } ,
157- languages : [ 'english' ] ,
158- pref_relation_styles : [ 'friendship' ] ,
159- pref_romantic_styles : [ 'poly' , 'open' , 'mono' ] ,
160- wants_kids_strength : 4 ,
16182 looking_for_matches : true ,
162- visibility : 'public' ,
16383 messaging_status : 'open' ,
16484 comments_enabled : true ,
165- has_kids : 0 ,
166- is_smoker : false ,
167- drinks_per_month : 5 ,
168- diet : null ,
169- political_beliefs : [ 'libertarian' ] ,
170- relationship_status : [ 'single' ] ,
171- religious_belief_strength : null ,
172- religious_beliefs : '' ,
173- mbti : 'intj' ,
174- political_details : '' ,
175- photo_urls : [
176- 'https://firebasestorage.googleapis.com/v0/b/mantic-markets.appspot.com/o/user-images%2FJamesGrugett%2Flove-images%2FKl0WtbZsZW.jpg?alt=media&token=c928604f-e5ff-4406-a229-152864a4aa48' ,
177- 'https://firebasestorage.googleapis.com/v0/b/mantic-markets.appspot.com/o/user-images%2FJamesGrugett%2Flove-images%2Fsii17zOItz.jpg?alt=media&token=474034b9-0d23-4005-97ad-5864abfd85fe' ,
178- 'https://firebasestorage.googleapis.com/v0/b/mantic-markets.appspot.com/o/user-images%2FJamesGrugett%2Flove-images%2F3ICeb-0mwB.jpg?alt=media&token=975dbdb9-5547-4553-b504-e6545eb82ec0' ,
179- 'https://firebasestorage.googleapis.com/v0/b/mantic-markets.appspot.com/o/user-images%2FJamesGrugett%2Flove-images%2FdtuSGk_13Q.jpg?alt=media&token=98191d86-9d10-4571-879c-d00ab9cab09e' ,
180- ] ,
181- pinned_url :
182- 'https://firebasestorage.googleapis.com/v0/b/mantic-markets.appspot.com/o/user-images%2FJamesGrugett%2Flove-images%2FXkLhuxZoOX.jpg?alt=media&token=7f2304dd-bace-4806-8e3c-78c35e57287c' ,
183- ethnicity : [ 'caucasian' ] ,
184- born_in_location : 'Melbourne, FL' ,
185- height_in_inches : 70 ,
186- education_level : 'bachelors' ,
187- university : 'Carnegie Mellon' ,
188- occupation : 'Entrepreneur' ,
189- occupation_title : 'CEO' ,
190- company : 'Codebuff' ,
191- website : 'https://jamesgrugett.com/' ,
192- twitter : 'https://twitter.com/jahooma' ,
193- region_code : 'CA' ,
194- country : 'United States of America' ,
195- city_latitude : 37.7775 ,
196- city_longitude : - 122.416389 ,
197- geodb_city_id : '126964' ,
198- referred_by_username : null ,
199- bio_length : 1000 ,
200- bio : {
201- type : 'doc' ,
202- content : [
203- {
204- type : 'paragraph' ,
205- content : [
206- {
207- type : 'text' ,
208- text : "Optimist that's working to improve the world!" ,
209- } ,
210- ] ,
211- } ,
212- {
213- type : 'paragraph' ,
214- } ,
215- {
216- type : 'paragraph' ,
217- content : [
218- {
219- type : 'text' ,
220- text : 'I like outdoor activities, hanging out with my housemates, strategy board games, libertarian and utilitarian ideas, getting boba, and riding my electric unicycle. I also enjoy working hard on bold new initiatives with huge potential for value creation!' ,
221- } ,
222- ] ,
223- } ,
224- {
225- type : 'paragraph' ,
226- } ,
227- ] ,
228- } ,
229- bio_text : 'the futa in futarchy' ,
230- bio_tsv : 'the futa in futarchy' ,
231- search_text : 'the futa in futarchy' ,
232- search_tsv : 'the futa in futarchy' ,
85+ visibility : 'public' ,
86+
87+ // Optional commonly used fields for testing
88+ city : 'San Francisco' ,
89+ gender : 'male' ,
23390 age : 32 ,
234- big5_agreeableness : 10 ,
235- big5_openness : 10 ,
236- big5_conscientiousness : 10 ,
237- big5_extraversion : 10 ,
238- big5_neuroticism : 10 ,
23991}
0 commit comments