dating-schema 0.7.0 → 0.9.0

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.
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Convenience helpers for accessing profile field metadata.
3
+ *
4
+ * @module dating-schema/field-helpers
5
+ */
6
+ import type { FieldOption } from './profile-fields/types.js';
7
+ /**
8
+ * Get the `{ value, label }` options array for a profile field by its key.
9
+ *
10
+ * @example
11
+ * ```ts
12
+ * import { getFieldOptions } from 'dating-schema';
13
+ * const genderOptions = getFieldOptions('gender');
14
+ * // → [{ value: 'man', label: 'Man' }, { value: 'woman', label: 'Woman' }, ...]
15
+ * ```
16
+ */
17
+ export declare function getFieldOptions(fieldKey: string): readonly FieldOption[];
18
+ //# sourceMappingURL=field-helpers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"field-helpers.d.ts","sourceRoot":"","sources":["../src/field-helpers.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAY7D;;;;;;;;;GASG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,SAAS,WAAW,EAAE,CAExE"}
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Convenience helpers for accessing profile field metadata.
3
+ *
4
+ * @module dating-schema/field-helpers
5
+ */
6
+ import { allFieldGroups } from './profile-fields/index.js';
7
+ // Pre-build a flat lookup: fieldKey → options[]
8
+ const optionsMap = new Map();
9
+ for (const group of allFieldGroups) {
10
+ for (const field of group.fields) {
11
+ if ('options' in field && Array.isArray(field.options)) {
12
+ optionsMap.set(field.key, field.options);
13
+ }
14
+ }
15
+ }
16
+ /**
17
+ * Get the `{ value, label }` options array for a profile field by its key.
18
+ *
19
+ * @example
20
+ * ```ts
21
+ * import { getFieldOptions } from 'dating-schema';
22
+ * const genderOptions = getFieldOptions('gender');
23
+ * // → [{ value: 'man', label: 'Man' }, { value: 'woman', label: 'Woman' }, ...]
24
+ * ```
25
+ */
26
+ export function getFieldOptions(fieldKey) {
27
+ return optionsMap.get(fieldKey) ?? [];
28
+ }
29
+ //# sourceMappingURL=field-helpers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"field-helpers.js","sourceRoot":"","sources":["../src/field-helpers.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAG3D,gDAAgD;AAChD,MAAM,UAAU,GAAG,IAAI,GAAG,EAAkC,CAAC;AAC7D,KAAK,MAAM,KAAK,IAAI,cAAc,EAAE,CAAC;IACnC,KAAK,MAAM,KAAK,IAAI,KAAK,CAAC,MAAM,EAAE,CAAC;QACjC,IAAI,SAAS,IAAI,KAAK,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC;YACvD,UAAU,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;QAC3C,CAAC;IACH,CAAC;AACH,CAAC;AAED;;;;;;;;;GASG;AACH,MAAM,UAAU,eAAe,CAAC,QAAgB;IAC9C,OAAO,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;AACxC,CAAC","sourcesContent":["/**\n * Convenience helpers for accessing profile field metadata.\n *\n * @module dating-schema/field-helpers\n */\n\nimport { allFieldGroups } from './profile-fields/index.js';\nimport type { FieldOption } from './profile-fields/types.js';\n\n// Pre-build a flat lookup: fieldKey → options[]\nconst optionsMap = new Map<string, readonly FieldOption[]>();\nfor (const group of allFieldGroups) {\n for (const field of group.fields) {\n if ('options' in field && Array.isArray(field.options)) {\n optionsMap.set(field.key, field.options);\n }\n }\n}\n\n/**\n * Get the `{ value, label }` options array for a profile field by its key.\n *\n * @example\n * ```ts\n * import { getFieldOptions } from 'dating-schema';\n * const genderOptions = getFieldOptions('gender');\n * // → [{ value: 'man', label: 'Man' }, { value: 'woman', label: 'Woman' }, ...]\n * ```\n */\nexport function getFieldOptions(fieldKey: string): readonly FieldOption[] {\n return optionsMap.get(fieldKey) ?? [];\n}\n"]}
package/dist/index.d.ts CHANGED
@@ -7,9 +7,11 @@
7
7
  * @module dating-schema
8
8
  */
9
9
  export { type AgeRange, ageRangeSchema, emptyStringToUndefined, type Gender, genderSchema, type InterestedIn, interestedInSchema, type LookingFor, lookingForSchema, type MaritalStatus, type MatchStatus, type MessageType, maritalStatusSchema, matchStatusSchema, messageTypeSchema, optionalTrimmedString, type Pagination, type Photo, paginationSchema, photoSchema, type SwipeAction, swipeActionSchema, } from './common.js';
10
+ export { getFieldOptions } from './field-helpers.js';
10
11
  export { type BoostBody, boostBodySchema, type ComplimentBody, complimentBodySchema, type ImageLikeBody, type InteractionListQuery, type InteractionType, imageLikeBodySchema, interactionListQuerySchema, interactionTypeSchema, type RewindBody, rewindBodySchema, type SwipeBody, type SwipeResponse, swipeBodySchema, swipeResponseSchema, } from './interactions.js';
11
12
  export { type BooleanFeatureKey, type EnumFeatureKey, type FeatureKey, type FilterLevel, getMinPlanForFeature, getPlanLimit, getPlanLimits, hasRemainingQuota, isFeatureEnabled, type NumericFeatureKey, PLAN_IDS, PLAN_LIMITS, type PlanId, type PlanLimits, type WhoLikedYouLevel, } from './plan-limits.js';
12
13
  export { type CreateProfileInput, createProfileSchema, type FullProfileData, fullProfileSchema, type UpdateProfileInput, updateProfileSchema, } from './profile.js';
14
+ export { allFieldGroups, basics, career, cognitive, type FieldGroup, type FieldOption, familyHome, favourites, financeLegal, healthWellness, heroIdentity, interestCategories, interests, lifestyle, lookingFor, type MultiSelectField, type OptionCategory, type ProfileField, personality, relationshipIntimacy, type SelectField, selfAssessment, storyPrompts, values, } from './profile-fields/index.js';
13
15
  export { type BlockBody, blockBodySchema, type ReportBody, type ReportReason, type ReportStatus, reportBodySchema, reportReasonSchema, reportStatusSchema, } from './safety.js';
14
16
  export { type CreateSubscriptionBody, createSubscriptionBodySchema, type SubscriptionStatus, subscriptionStatusSchema, type Tenure, tenureSchema, } from './subscription.js';
15
17
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EACL,KAAK,QAAQ,EAEb,cAAc,EACd,sBAAsB,EACtB,KAAK,MAAM,EAEX,YAAY,EACZ,KAAK,YAAY,EACjB,kBAAkB,EAClB,KAAK,UAAU,EACf,gBAAgB,EAChB,KAAK,aAAa,EAClB,KAAK,WAAW,EAChB,KAAK,WAAW,EAChB,mBAAmB,EACnB,iBAAiB,EACjB,iBAAiB,EACjB,qBAAqB,EACrB,KAAK,UAAU,EACf,KAAK,KAAK,EACV,gBAAgB,EAChB,WAAW,EACX,KAAK,WAAW,EAChB,iBAAiB,GAClB,MAAM,aAAa,CAAC;AAErB,OAAO,EACL,KAAK,SAAS,EACd,eAAe,EACf,KAAK,cAAc,EACnB,oBAAoB,EACpB,KAAK,aAAa,EAClB,KAAK,oBAAoB,EACzB,KAAK,eAAe,EACpB,mBAAmB,EACnB,0BAA0B,EAC1B,qBAAqB,EACrB,KAAK,UAAU,EACf,gBAAgB,EAChB,KAAK,SAAS,EACd,KAAK,aAAa,EAClB,eAAe,EACf,mBAAmB,GACpB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,cAAc,EACnB,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,oBAAoB,EACpB,YAAY,EACZ,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAChB,KAAK,iBAAiB,EACtB,QAAQ,EACR,WAAW,EACX,KAAK,MAAM,EACX,KAAK,UAAU,EACf,KAAK,gBAAgB,GACtB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EACL,KAAK,kBAAkB,EACvB,mBAAmB,EACnB,KAAK,eAAe,EACpB,iBAAiB,EACjB,KAAK,kBAAkB,EACvB,mBAAmB,GACpB,MAAM,cAAc,CAAC;AAGtB,OAAO,EACL,KAAK,SAAS,EACd,eAAe,EACf,KAAK,UAAU,EACf,KAAK,YAAY,EACjB,KAAK,YAAY,EACjB,gBAAgB,EAChB,kBAAkB,EAClB,kBAAkB,GACnB,MAAM,aAAa,CAAC;AAGrB,OAAO,EACL,KAAK,sBAAsB,EAC3B,4BAA4B,EAC5B,KAAK,kBAAkB,EACvB,wBAAwB,EACxB,KAAK,MAAM,EACX,YAAY,GACb,MAAM,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EACL,KAAK,QAAQ,EAEb,cAAc,EACd,sBAAsB,EACtB,KAAK,MAAM,EAEX,YAAY,EACZ,KAAK,YAAY,EACjB,kBAAkB,EAClB,KAAK,UAAU,EACf,gBAAgB,EAChB,KAAK,aAAa,EAClB,KAAK,WAAW,EAChB,KAAK,WAAW,EAChB,mBAAmB,EACnB,iBAAiB,EACjB,iBAAiB,EACjB,qBAAqB,EACrB,KAAK,UAAU,EACf,KAAK,KAAK,EACV,gBAAgB,EAChB,WAAW,EACX,KAAK,WAAW,EAChB,iBAAiB,GAClB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAErD,OAAO,EACL,KAAK,SAAS,EACd,eAAe,EACf,KAAK,cAAc,EACnB,oBAAoB,EACpB,KAAK,aAAa,EAClB,KAAK,oBAAoB,EACzB,KAAK,eAAe,EACpB,mBAAmB,EACnB,0BAA0B,EAC1B,qBAAqB,EACrB,KAAK,UAAU,EACf,gBAAgB,EAChB,KAAK,SAAS,EACd,KAAK,aAAa,EAClB,eAAe,EACf,mBAAmB,GACpB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,cAAc,EACnB,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,oBAAoB,EACpB,YAAY,EACZ,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAChB,KAAK,iBAAiB,EACtB,QAAQ,EACR,WAAW,EACX,KAAK,MAAM,EACX,KAAK,UAAU,EACf,KAAK,gBAAgB,GACtB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EACL,KAAK,kBAAkB,EACvB,mBAAmB,EACnB,KAAK,eAAe,EACpB,iBAAiB,EACjB,KAAK,kBAAkB,EACvB,mBAAmB,GACpB,MAAM,cAAc,CAAC;AAEtB,OAAO,EACL,cAAc,EACd,MAAM,EACN,MAAM,EACN,SAAS,EACT,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,UAAU,EACV,UAAU,EACV,YAAY,EACZ,cAAc,EACd,YAAY,EACZ,kBAAkB,EAClB,SAAS,EACT,SAAS,EACT,UAAU,EACV,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,YAAY,EACjB,WAAW,EACX,oBAAoB,EACpB,KAAK,WAAW,EAChB,cAAc,EACd,YAAY,EACZ,MAAM,GACP,MAAM,2BAA2B,CAAC;AAGnC,OAAO,EACL,KAAK,SAAS,EACd,eAAe,EACf,KAAK,UAAU,EACf,KAAK,YAAY,EACjB,KAAK,YAAY,EACjB,gBAAgB,EAChB,kBAAkB,EAClB,kBAAkB,GACnB,MAAM,aAAa,CAAC;AAGrB,OAAO,EACL,KAAK,sBAAsB,EAC3B,4BAA4B,EAC5B,KAAK,kBAAkB,EACvB,wBAAwB,EACxB,KAAK,MAAM,EACX,YAAY,GACb,MAAM,mBAAmB,CAAC"}
package/dist/index.js CHANGED
@@ -12,12 +12,15 @@ export {
12
12
  ageRangeSchema, emptyStringToUndefined,
13
13
  // enums
14
14
  genderSchema, interestedInSchema, lookingForSchema, maritalStatusSchema, matchStatusSchema, messageTypeSchema, optionalTrimmedString, paginationSchema, photoSchema, swipeActionSchema, } from './common.js';
15
+ export { getFieldOptions } from './field-helpers.js';
15
16
  // ─── Interaction schemas ─────────────────────────────────────────────────────
16
17
  export { boostBodySchema, complimentBodySchema, imageLikeBodySchema, interactionListQuerySchema, interactionTypeSchema, rewindBodySchema, swipeBodySchema, swipeResponseSchema, } from './interactions.js';
17
18
  // ─── Plan limits ─────────────────────────────────────────────────────────────
18
19
  export { getMinPlanForFeature, getPlanLimit, getPlanLimits, hasRemainingQuota, isFeatureEnabled, PLAN_IDS, PLAN_LIMITS, } from './plan-limits.js';
19
20
  // ─── Profile schemas ─────────────────────────────────────────────────────────
20
21
  export { createProfileSchema, fullProfileSchema, updateProfileSchema, } from './profile.js';
22
+ // ─── Profile field configs (option arrays with labels for UI rendering) ──────
23
+ export { allFieldGroups, basics, career, cognitive, familyHome, favourites, financeLegal, healthWellness, heroIdentity, interestCategories, interests, lifestyle, lookingFor, personality, relationshipIntimacy, selfAssessment, storyPrompts, values, } from './profile-fields/index.js';
21
24
  // ─── Safety schemas ──────────────────────────────────────────────────────────
22
25
  export { blockBodySchema, reportBodySchema, reportReasonSchema, reportStatusSchema, } from './safety.js';
23
26
  // ─── Subscription schemas ────────────────────────────────────────────────────
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,gFAAgF;AAChF,OAAO;AAEL,cAAc;AACd,cAAc,EACd,sBAAsB;AAEtB,QAAQ;AACR,YAAY,EAEZ,kBAAkB,EAElB,gBAAgB,EAIhB,mBAAmB,EACnB,iBAAiB,EACjB,iBAAiB,EACjB,qBAAqB,EAGrB,gBAAgB,EAChB,WAAW,EAEX,iBAAiB,GAClB,MAAM,aAAa,CAAC;AACrB,gFAAgF;AAChF,OAAO,EAEL,eAAe,EAEf,oBAAoB,EAIpB,mBAAmB,EACnB,0BAA0B,EAC1B,qBAAqB,EAErB,gBAAgB,EAGhB,eAAe,EACf,mBAAmB,GACpB,MAAM,mBAAmB,CAAC;AAC3B,gFAAgF;AAChF,OAAO,EAKL,oBAAoB,EACpB,YAAY,EACZ,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAEhB,QAAQ,EACR,WAAW,GAIZ,MAAM,kBAAkB,CAAC;AAC1B,gFAAgF;AAChF,OAAO,EAEL,mBAAmB,EAEnB,iBAAiB,EAEjB,mBAAmB,GACpB,MAAM,cAAc,CAAC;AAEtB,gFAAgF;AAChF,OAAO,EAEL,eAAe,EAIf,gBAAgB,EAChB,kBAAkB,EAClB,kBAAkB,GACnB,MAAM,aAAa,CAAC;AAErB,gFAAgF;AAChF,OAAO,EAEL,4BAA4B,EAE5B,wBAAwB,EAExB,YAAY,GACb,MAAM,mBAAmB,CAAC","sourcesContent":["/**\n * dating-schema — Shared Zod schemas for the Dating feature\n *\n * Single source of truth consumed by both jansathi-frontend and reform-backend.\n * Guarantees identical validation logic and TypeScript types on both sides.\n *\n * @module dating-schema\n */\n\n// ─── Common helpers and enums ────────────────────────────────────────────────\nexport {\n type AgeRange,\n // sub-schemas\n ageRangeSchema,\n emptyStringToUndefined,\n type Gender,\n // enums\n genderSchema,\n type InterestedIn,\n interestedInSchema,\n type LookingFor,\n lookingForSchema,\n type MaritalStatus,\n type MatchStatus,\n type MessageType,\n maritalStatusSchema,\n matchStatusSchema,\n messageTypeSchema,\n optionalTrimmedString,\n type Pagination,\n type Photo,\n paginationSchema,\n photoSchema,\n type SwipeAction,\n swipeActionSchema,\n} from './common.js';\n// ─── Interaction schemas ─────────────────────────────────────────────────────\nexport {\n type BoostBody,\n boostBodySchema,\n type ComplimentBody,\n complimentBodySchema,\n type ImageLikeBody,\n type InteractionListQuery,\n type InteractionType,\n imageLikeBodySchema,\n interactionListQuerySchema,\n interactionTypeSchema,\n type RewindBody,\n rewindBodySchema,\n type SwipeBody,\n type SwipeResponse,\n swipeBodySchema,\n swipeResponseSchema,\n} from './interactions.js';\n// ─── Plan limits ─────────────────────────────────────────────────────────────\nexport {\n type BooleanFeatureKey,\n type EnumFeatureKey,\n type FeatureKey,\n type FilterLevel,\n getMinPlanForFeature,\n getPlanLimit,\n getPlanLimits,\n hasRemainingQuota,\n isFeatureEnabled,\n type NumericFeatureKey,\n PLAN_IDS,\n PLAN_LIMITS,\n type PlanId,\n type PlanLimits,\n type WhoLikedYouLevel,\n} from './plan-limits.js';\n// ─── Profile schemas ─────────────────────────────────────────────────────────\nexport {\n type CreateProfileInput,\n createProfileSchema,\n type FullProfileData,\n fullProfileSchema,\n type UpdateProfileInput,\n updateProfileSchema,\n} from './profile.js';\n\n// ─── Safety schemas ──────────────────────────────────────────────────────────\nexport {\n type BlockBody,\n blockBodySchema,\n type ReportBody,\n type ReportReason,\n type ReportStatus,\n reportBodySchema,\n reportReasonSchema,\n reportStatusSchema,\n} from './safety.js';\n\n// ─── Subscription schemas ────────────────────────────────────────────────────\nexport {\n type CreateSubscriptionBody,\n createSubscriptionBodySchema,\n type SubscriptionStatus,\n subscriptionStatusSchema,\n type Tenure,\n tenureSchema,\n} from './subscription.js';\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,gFAAgF;AAChF,OAAO;AAEL,cAAc;AACd,cAAc,EACd,sBAAsB;AAEtB,QAAQ;AACR,YAAY,EAEZ,kBAAkB,EAElB,gBAAgB,EAIhB,mBAAmB,EACnB,iBAAiB,EACjB,iBAAiB,EACjB,qBAAqB,EAGrB,gBAAgB,EAChB,WAAW,EAEX,iBAAiB,GAClB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,gFAAgF;AAChF,OAAO,EAEL,eAAe,EAEf,oBAAoB,EAIpB,mBAAmB,EACnB,0BAA0B,EAC1B,qBAAqB,EAErB,gBAAgB,EAGhB,eAAe,EACf,mBAAmB,GACpB,MAAM,mBAAmB,CAAC;AAC3B,gFAAgF;AAChF,OAAO,EAKL,oBAAoB,EACpB,YAAY,EACZ,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAEhB,QAAQ,EACR,WAAW,GAIZ,MAAM,kBAAkB,CAAC;AAC1B,gFAAgF;AAChF,OAAO,EAEL,mBAAmB,EAEnB,iBAAiB,EAEjB,mBAAmB,GACpB,MAAM,cAAc,CAAC;AACtB,gFAAgF;AAChF,OAAO,EACL,cAAc,EACd,MAAM,EACN,MAAM,EACN,SAAS,EAGT,UAAU,EACV,UAAU,EACV,YAAY,EACZ,cAAc,EACd,YAAY,EACZ,kBAAkB,EAClB,SAAS,EACT,SAAS,EACT,UAAU,EAIV,WAAW,EACX,oBAAoB,EAEpB,cAAc,EACd,YAAY,EACZ,MAAM,GACP,MAAM,2BAA2B,CAAC;AAEnC,gFAAgF;AAChF,OAAO,EAEL,eAAe,EAIf,gBAAgB,EAChB,kBAAkB,EAClB,kBAAkB,GACnB,MAAM,aAAa,CAAC;AAErB,gFAAgF;AAChF,OAAO,EAEL,4BAA4B,EAE5B,wBAAwB,EAExB,YAAY,GACb,MAAM,mBAAmB,CAAC","sourcesContent":["/**\n * dating-schema — Shared Zod schemas for the Dating feature\n *\n * Single source of truth consumed by both jansathi-frontend and reform-backend.\n * Guarantees identical validation logic and TypeScript types on both sides.\n *\n * @module dating-schema\n */\n\n// ─── Common helpers and enums ────────────────────────────────────────────────\nexport {\n type AgeRange,\n // sub-schemas\n ageRangeSchema,\n emptyStringToUndefined,\n type Gender,\n // enums\n genderSchema,\n type InterestedIn,\n interestedInSchema,\n type LookingFor,\n lookingForSchema,\n type MaritalStatus,\n type MatchStatus,\n type MessageType,\n maritalStatusSchema,\n matchStatusSchema,\n messageTypeSchema,\n optionalTrimmedString,\n type Pagination,\n type Photo,\n paginationSchema,\n photoSchema,\n type SwipeAction,\n swipeActionSchema,\n} from './common.js';\nexport { getFieldOptions } from './field-helpers.js';\n// ─── Interaction schemas ─────────────────────────────────────────────────────\nexport {\n type BoostBody,\n boostBodySchema,\n type ComplimentBody,\n complimentBodySchema,\n type ImageLikeBody,\n type InteractionListQuery,\n type InteractionType,\n imageLikeBodySchema,\n interactionListQuerySchema,\n interactionTypeSchema,\n type RewindBody,\n rewindBodySchema,\n type SwipeBody,\n type SwipeResponse,\n swipeBodySchema,\n swipeResponseSchema,\n} from './interactions.js';\n// ─── Plan limits ─────────────────────────────────────────────────────────────\nexport {\n type BooleanFeatureKey,\n type EnumFeatureKey,\n type FeatureKey,\n type FilterLevel,\n getMinPlanForFeature,\n getPlanLimit,\n getPlanLimits,\n hasRemainingQuota,\n isFeatureEnabled,\n type NumericFeatureKey,\n PLAN_IDS,\n PLAN_LIMITS,\n type PlanId,\n type PlanLimits,\n type WhoLikedYouLevel,\n} from './plan-limits.js';\n// ─── Profile schemas ─────────────────────────────────────────────────────────\nexport {\n type CreateProfileInput,\n createProfileSchema,\n type FullProfileData,\n fullProfileSchema,\n type UpdateProfileInput,\n updateProfileSchema,\n} from './profile.js';\n// ─── Profile field configs (option arrays with labels for UI rendering) ──────\nexport {\n allFieldGroups,\n basics,\n career,\n cognitive,\n type FieldGroup,\n type FieldOption,\n familyHome,\n favourites,\n financeLegal,\n healthWellness,\n heroIdentity,\n interestCategories,\n interests,\n lifestyle,\n lookingFor,\n type MultiSelectField,\n type OptionCategory,\n type ProfileField,\n personality,\n relationshipIntimacy,\n type SelectField,\n selfAssessment,\n storyPrompts,\n values,\n} from './profile-fields/index.js';\n\n// ─── Safety schemas ──────────────────────────────────────────────────────────\nexport {\n type BlockBody,\n blockBodySchema,\n type ReportBody,\n type ReportReason,\n type ReportStatus,\n reportBodySchema,\n reportReasonSchema,\n reportStatusSchema,\n} from './safety.js';\n\n// ─── Subscription schemas ────────────────────────────────────────────────────\nexport {\n type CreateSubscriptionBody,\n createSubscriptionBodySchema,\n type SubscriptionStatus,\n subscriptionStatusSchema,\n type Tenure,\n tenureSchema,\n} from './subscription.js';\n"]}
@@ -1,3 +1,8 @@
1
- import type { FieldGroup } from './types.js';
1
+ import type { FieldGroup, OptionCategory } from './types.js';
2
+ /**
3
+ * Hobbies grouped by category with emoji labels — for UI rendering.
4
+ * Every `value` here must exist in the flat `hobbies` field options below.
5
+ */
6
+ export declare const interestCategories: readonly OptionCategory[];
2
7
  export declare const interests: FieldGroup;
3
8
  //# sourceMappingURL=07-interests.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"07-interests.d.ts","sourceRoot":"","sources":["../../src/profile-fields/07-interests.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,SAAS,EAAE,UA0SvB,CAAC"}
1
+ {"version":3,"file":"07-interests.d.ts","sourceRoot":"","sources":["../../src/profile-fields/07-interests.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAE7D;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAE,SAAS,cAAc,EAsIvD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UA0SvB,CAAC"}
@@ -1,3 +1,142 @@
1
+ /**
2
+ * Hobbies grouped by category with emoji labels — for UI rendering.
3
+ * Every `value` here must exist in the flat `hobbies` field options below.
4
+ */
5
+ export const interestCategories = [
6
+ {
7
+ label: 'Creative',
8
+ options: [
9
+ { value: 'photography', label: '📷 Photography' },
10
+ { value: 'painting', label: '🎨 Painting' },
11
+ { value: 'drawing', label: '✏️ Drawing' },
12
+ { value: 'writing', label: '✍️ Writing' },
13
+ { value: 'crafts', label: '🎨 Crafts & DIY' },
14
+ { value: 'pottery', label: '🏺 Pottery' },
15
+ { value: 'knitting', label: '🧶 Knitting' },
16
+ { value: 'woodworking', label: '🪵 Woodworking' },
17
+ { value: 'blogging', label: '📝 Blogging' },
18
+ { value: 'vlogging', label: '📹 Vlogging' },
19
+ ],
20
+ },
21
+ {
22
+ label: 'Sports & Fitness',
23
+ options: [
24
+ { value: 'gym', label: '💪 Gym' },
25
+ { value: 'running', label: '🏃 Running' },
26
+ { value: 'cycling', label: '🚴 Cycling' },
27
+ { value: 'swimming', label: '🏊 Swimming' },
28
+ { value: 'yoga', label: '🧘 Yoga' },
29
+ { value: 'martial_arts', label: '🥋 Martial Arts' },
30
+ { value: 'rock_climbing', label: '🧗 Rock Climbing' },
31
+ { value: 'hiking', label: '🥾 Hiking' },
32
+ { value: 'skating', label: '⛸️ Skating' },
33
+ { value: 'skateboarding', label: '🛹 Skateboarding' },
34
+ { value: 'surfing', label: '🏄 Surfing' },
35
+ { value: 'skiing', label: '⛷️ Skiing' },
36
+ { value: 'cricket', label: '🏏 Cricket' },
37
+ { value: 'football', label: '⚽ Football' },
38
+ { value: 'badminton', label: '🏸 Badminton' },
39
+ { value: 'tennis', label: '🎾 Tennis' },
40
+ { value: 'basketball', label: '🏀 Basketball' },
41
+ { value: 'table_tennis', label: '🏓 Table Tennis' },
42
+ { value: 'archery', label: '🏹 Archery' },
43
+ { value: 'horse_riding', label: '🐎 Horse Riding' },
44
+ ],
45
+ },
46
+ {
47
+ label: 'Music & Performance',
48
+ options: [
49
+ { value: 'singing', label: '🎤 Singing' },
50
+ { value: 'playing_instrument', label: '🎸 Playing Instrument' },
51
+ { value: 'dancing', label: '💃 Dancing' },
52
+ { value: 'karaoke', label: '🎤 Karaoke' },
53
+ { value: 'dj', label: '🎧 DJing' },
54
+ { value: 'stand_up_comedy', label: '😂 Stand-up Comedy' },
55
+ { value: 'theater', label: '🎭 Theater' },
56
+ ],
57
+ },
58
+ {
59
+ label: 'Entertainment',
60
+ options: [
61
+ { value: 'movies', label: '🎬 Movies' },
62
+ { value: 'anime', label: '🎌 Anime' },
63
+ { value: 'reading', label: '📚 Reading' },
64
+ { value: 'podcasts', label: '🎧 Podcasts' },
65
+ { value: 'gaming', label: '🎮 Gaming' },
66
+ { value: 'board_games', label: '🎲 Board Games' },
67
+ { value: 'binge_watching', label: '📺 Binge Watching' },
68
+ { value: 'k_drama', label: '🇰🇷 K-Drama' },
69
+ ],
70
+ },
71
+ {
72
+ label: 'Food & Drink',
73
+ options: [
74
+ { value: 'cooking', label: '🍳 Cooking' },
75
+ { value: 'baking', label: '🧁 Baking' },
76
+ { value: 'coffee', label: '☕ Coffee' },
77
+ { value: 'tea', label: '🍵 Tea' },
78
+ { value: 'wine_tasting', label: '🍷 Wine Tasting' },
79
+ { value: 'street_food', label: '🍜 Street Food' },
80
+ { value: 'fine_dining', label: '🍽️ Fine Dining' },
81
+ { value: 'food_photography', label: '📸 Food Photography' },
82
+ ],
83
+ },
84
+ {
85
+ label: 'Travel & Outdoors',
86
+ options: [
87
+ { value: 'traveling', label: '✈️ Traveling' },
88
+ { value: 'camping', label: '⛺ Camping' },
89
+ { value: 'backpacking', label: '🎒 Backpacking' },
90
+ { value: 'road_trips', label: '🚗 Road Trips' },
91
+ { value: 'scuba_diving', label: '🤿 Scuba Diving' },
92
+ { value: 'bird_watching', label: '🐦 Bird Watching' },
93
+ { value: 'fishing', label: '🎣 Fishing' },
94
+ { value: 'gardening', label: '🌱 Gardening' },
95
+ { value: 'stargazing', label: '🌌 Stargazing' },
96
+ ],
97
+ },
98
+ {
99
+ label: 'Mindfulness & Wellness',
100
+ options: [
101
+ { value: 'meditation', label: '🧘 Meditation' },
102
+ { value: 'spirituality_practice', label: '🙏 Spirituality' },
103
+ { value: 'astrology_hobby', label: '♈ Astrology' },
104
+ { value: 'tarot', label: '🔮 Tarot' },
105
+ { value: 'journaling', label: '📓 Journaling' },
106
+ { value: 'self_improvement', label: '📈 Self Improvement' },
107
+ ],
108
+ },
109
+ {
110
+ label: 'Social & Community',
111
+ options: [
112
+ { value: 'volunteering', label: '🤝 Volunteering' },
113
+ { value: 'activism', label: '✊ Activism' },
114
+ { value: 'mentoring', label: '🎓 Mentoring' },
115
+ { value: 'networking', label: '🤝 Networking' },
116
+ { value: 'pet_care', label: '🐾 Pet Care' },
117
+ ],
118
+ },
119
+ {
120
+ label: 'Tech & Learning',
121
+ options: [
122
+ { value: 'coding', label: '💻 Coding' },
123
+ { value: 'investing', label: '📈 Investing' },
124
+ { value: 'entrepreneurship', label: '🚀 Entrepreneurship' },
125
+ { value: 'languages', label: '🗣️ Languages' },
126
+ { value: 'science', label: '🔬 Science' },
127
+ ],
128
+ },
129
+ {
130
+ label: 'Home & Lifestyle',
131
+ options: [
132
+ { value: 'interior_design', label: '🏠 Interior Design' },
133
+ { value: 'fashion', label: '👗 Fashion' },
134
+ { value: 'skincare', label: '✨ Skincare' },
135
+ { value: 'thrifting', label: '🛍️ Thrifting' },
136
+ { value: 'bowling', label: '🎳 Bowling' },
137
+ ],
138
+ },
139
+ ];
1
140
  export const interests = {
2
141
  key: 'interests',
3
142
  label: 'Interests & Hobbies',
@@ -1 +1 @@
1
- {"version":3,"file":"07-interests.js","sourceRoot":"","sources":["../../src/profile-fields/07-interests.ts"],"names":[],"mappings":"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","sourcesContent":["import type { FieldGroup } from './types.js';\n\nexport const interests: FieldGroup = {\n key: 'interests',\n label: 'Interests & Hobbies',\n tier: 1,\n fields: [\n {\n order: 70,\n key: 'hobbies',\n label: 'Hobbies & Interests',\n type: 'multi_select',\n maxSelect: 10,\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n description: 'Pick up to 10 hobbies.',\n options: [\n { value: 'reading', label: 'Reading' },\n { value: 'writing', label: 'Writing' },\n { value: 'cooking', label: 'Cooking' },\n { value: 'baking', label: 'Baking' },\n { value: 'photography', label: 'Photography' },\n { value: 'painting', label: 'Painting' },\n { value: 'drawing', label: 'Drawing' },\n { value: 'hiking', label: 'Hiking' },\n { value: 'camping', label: 'Camping' },\n { value: 'cycling', label: 'Cycling' },\n { value: 'running', label: 'Running' },\n { value: 'yoga', label: 'Yoga' },\n { value: 'meditation', label: 'Meditation' },\n { value: 'dancing', label: 'Dancing' },\n { value: 'singing', label: 'Singing' },\n { value: 'playing_instrument', label: 'Playing Instrument' },\n { value: 'gardening', label: 'Gardening' },\n { value: 'gaming', label: 'Gaming' },\n { value: 'board_games', label: 'Board Games' },\n { value: 'traveling', label: 'Traveling' },\n { value: 'swimming', label: 'Swimming' },\n { value: 'gym', label: 'Gym' },\n { value: 'martial_arts', label: 'Martial Arts' },\n { value: 'rock_climbing', label: 'Rock Climbing' },\n { value: 'surfing', label: 'Surfing' },\n { value: 'skiing', label: 'Skiing' },\n { value: 'fishing', label: 'Fishing' },\n { value: 'bird_watching', label: 'Bird Watching' },\n { value: 'volunteering', label: 'Volunteering' },\n { value: 'crafts', label: 'Crafts' },\n { value: 'pottery', label: 'Pottery' },\n { value: 'knitting', label: 'Knitting' },\n { value: 'woodworking', label: 'Woodworking' },\n { value: 'diy', label: 'DIY' },\n { value: 'podcasts', label: 'Podcasts' },\n { value: 'movies', label: 'Movies' },\n { value: 'anime', label: 'Anime' },\n { value: 'theater', label: 'Theater' },\n { value: 'stand_up_comedy', label: 'Stand-Up Comedy' },\n { value: 'karaoke', label: 'Karaoke' },\n { value: 'wine_tasting', label: 'Wine Tasting' },\n { value: 'coffee', label: 'Coffee' },\n { value: 'tea', label: 'Tea' },\n { value: 'blogging', label: 'Blogging' },\n { value: 'vlogging', label: 'Vlogging' },\n { value: 'coding', label: 'Coding' },\n { value: 'investing', label: 'Investing' },\n { value: 'astrology_hobby', label: 'Astrology' },\n { value: 'tarot', label: 'Tarot' },\n { value: 'spirituality_practice', label: 'Spirituality Practice' },\n { value: 'pet_care', label: 'Pet Care' },\n { value: 'horse_riding', label: 'Horse Riding' },\n { value: 'scuba_diving', label: 'Scuba Diving' },\n { value: 'skateboarding', label: 'Skateboarding' },\n { value: 'bowling', label: 'Bowling' },\n { value: 'archery', label: 'Archery' },\n { value: 'cricket', label: 'Cricket' },\n { value: 'football', label: 'Football' },\n { value: 'badminton', label: 'Badminton' },\n { value: 'tennis', label: 'Tennis' },\n { value: 'basketball', label: 'Basketball' },\n { value: 'table_tennis', label: 'Table Tennis' },\n { value: 'skating', label: 'Skating' },\n { value: 'dj', label: 'DJing' },\n { value: 'binge_watching', label: 'Binge Watching' },\n { value: 'k_drama', label: 'K-Drama' },\n { value: 'backpacking', label: 'Backpacking' },\n { value: 'road_trips', label: 'Road Trips' },\n { value: 'stargazing', label: 'Stargazing' },\n { value: 'journaling', label: 'Journaling' },\n { value: 'self_improvement', label: 'Self Improvement' },\n { value: 'activism', label: 'Activism' },\n { value: 'mentoring', label: 'Mentoring' },\n { value: 'networking', label: 'Networking' },\n { value: 'entrepreneurship', label: 'Entrepreneurship' },\n { value: 'languages', label: 'Languages' },\n { value: 'science', label: 'Science' },\n { value: 'interior_design', label: 'Interior Design' },\n { value: 'fashion', label: 'Fashion' },\n { value: 'skincare', label: 'Skincare' },\n { value: 'thrifting', label: 'Thrifting' },\n { value: 'street_food', label: 'Street Food' },\n { value: 'fine_dining', label: 'Fine Dining' },\n { value: 'food_photography', label: 'Food Photography' },\n { value: 'other', label: 'Other' },\n ],\n },\n {\n order: 71,\n key: 'musicGenres',\n label: 'Music Genres',\n type: 'multi_select',\n maxSelect: 5,\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'pop', label: 'Pop' },\n { value: 'rock', label: 'Rock' },\n { value: 'hip_hop', label: 'Hip Hop' },\n { value: 'rnb', label: 'R&B' },\n { value: 'jazz', label: 'Jazz' },\n { value: 'classical', label: 'Classical' },\n { value: 'electronic', label: 'Electronic' },\n { value: 'edm', label: 'EDM' },\n { value: 'country', label: 'Country' },\n { value: 'folk', label: 'Folk' },\n { value: 'indie', label: 'Indie' },\n { value: 'metal', label: 'Metal' },\n { value: 'punk', label: 'Punk' },\n { value: 'reggae', label: 'Reggae' },\n { value: 'latin', label: 'Latin' },\n { value: 'kpop', label: 'K-Pop' },\n { value: 'bollywood', label: 'Bollywood' },\n { value: 'sufi', label: 'Sufi' },\n { value: 'ghazal', label: 'Ghazal' },\n { value: 'carnatic', label: 'Carnatic' },\n { value: 'hindustani_classical', label: 'Hindustani Classical' },\n { value: 'devotional', label: 'Devotional' },\n { value: 'lofi', label: 'Lo-Fi' },\n { value: 'ambient', label: 'Ambient' },\n { value: 'other', label: 'Other' },\n ],\n },\n {\n order: 72,\n key: 'gamingInterest',\n label: 'Gaming',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'hardcore', label: 'Hardcore gamer', description: 'Daily gaming, competitive' },\n { value: 'casual', label: 'Casual gamer', description: 'Play sometimes for fun' },\n { value: 'mobile_only', label: 'Mobile gamer', description: 'Candy Crush to PUBG Mobile' },\n {\n value: 'board_tabletop',\n label: 'Board / Tabletop',\n description: 'Physical games, D&D, etc.',\n },\n { value: 'retro', label: 'Retro gamer', description: 'Classic consoles and games' },\n { value: 'not_a_gamer', label: 'Not a gamer' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 73,\n key: 'readingHabit',\n label: 'Reading Habit',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'voracious', label: 'Voracious reader', description: 'Multiple books a month' },\n { value: 'regular', label: 'Regular reader', description: 'A book or two a month' },\n { value: 'occasional', label: 'Occasional', description: 'A few books a year' },\n { value: 'audiobooks', label: 'Audiobooks mostly' },\n { value: 'articles_only', label: 'Articles / blogs only' },\n { value: 'not_a_reader', label: 'Not really a reader' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 74,\n key: 'artApreciation',\n label: 'Art & Creativity',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'creator', label: 'Active creator', description: 'Make art regularly' },\n { value: 'hobbyist', label: 'Hobbyist', description: 'Create occasionally' },\n { value: 'appreciator', label: 'Appreciator', description: 'Love experiencing art' },\n { value: 'casual', label: 'Casual', description: 'Enjoy it when I encounter it' },\n { value: 'not_into_art', label: 'Not really into art' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 75,\n key: 'eventPreference',\n label: 'Event Preferences',\n type: 'multi_select',\n maxSelect: 5,\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'concerts', label: 'Concerts / Live music' },\n { value: 'festivals', label: 'Festivals' },\n { value: 'sports_events', label: 'Sports events' },\n { value: 'comedy_shows', label: 'Comedy shows' },\n { value: 'theater_plays', label: 'Theater / Plays' },\n { value: 'art_exhibitions', label: 'Art exhibitions' },\n { value: 'food_festivals', label: 'Food festivals' },\n { value: 'book_readings', label: 'Book readings' },\n { value: 'hackathons', label: 'Hackathons / Tech events' },\n { value: 'spiritual_gatherings', label: 'Spiritual gatherings' },\n { value: 'house_parties', label: 'House parties' },\n { value: 'club_nights', label: 'Club nights' },\n { value: 'outdoor_adventures', label: 'Outdoor adventures' },\n { value: 'workshops', label: 'Workshops / Classes' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 76,\n key: 'riskAppetite',\n label: 'Risk Appetite',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n {\n value: 'thrill_seeker',\n label: 'Thrill seeker',\n description: 'Bungee, skydiving, extreme sports',\n },\n {\n value: 'adventurous',\n label: 'Adventurous',\n description: 'Try new things, calculated risks',\n },\n {\n value: 'moderate',\n label: 'Moderate',\n description: 'Open to new things but play it safe',\n },\n { value: 'cautious', label: 'Cautious', description: 'Prefer the familiar and safe' },\n { value: 'risk_averse', label: 'Risk averse', description: 'Avoid risk at all costs' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 77,\n key: 'volunteerInterest',\n label: 'Volunteer / Social Cause Interest',\n type: 'multi_select',\n maxSelect: 5,\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'environment', label: 'Environment & Climate' },\n { value: 'animal_welfare', label: 'Animal welfare' },\n { value: 'education_literacy', label: 'Education & Literacy' },\n { value: 'poverty', label: 'Poverty & Hunger' },\n { value: 'health', label: 'Health & Medicine' },\n { value: 'mental_health', label: 'Mental health' },\n { value: 'gender_equality', label: 'Gender equality' },\n { value: 'lgbtq_rights', label: 'LGBTQ+ rights' },\n { value: 'disability', label: 'Disability rights' },\n { value: 'children', label: \"Children's welfare\" },\n { value: 'elderly', label: 'Elderly care' },\n { value: 'disaster_relief', label: 'Disaster relief' },\n { value: 'human_rights', label: 'Human rights' },\n { value: 'tech_for_good', label: 'Tech for good' },\n { value: 'none', label: 'Not active in volunteering' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 78,\n key: 'socialCircleSize',\n label: 'Social Circle Size',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'small', label: 'Small and close-knit' },\n { value: 'medium', label: 'Medium — a solid crew' },\n { value: 'large', label: 'Large — I know everyone' },\n { value: 'mostly_solo', label: 'Mostly solo / introvert' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n ],\n};\n"]}
1
+ {"version":3,"file":"07-interests.js","sourceRoot":"","sources":["../../src/profile-fields/07-interests.ts"],"names":[],"mappings":"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","sourcesContent":["import type { FieldGroup, OptionCategory } from './types.js';\n\n/**\n * Hobbies grouped by category with emoji labels — for UI rendering.\n * Every `value` here must exist in the flat `hobbies` field options below.\n */\nexport const interestCategories: readonly OptionCategory[] = [\n {\n label: 'Creative',\n options: [\n { value: 'photography', label: '📷 Photography' },\n { value: 'painting', label: '🎨 Painting' },\n { value: 'drawing', label: '✏️ Drawing' },\n { value: 'writing', label: '✍️ Writing' },\n { value: 'crafts', label: '🎨 Crafts & DIY' },\n { value: 'pottery', label: '🏺 Pottery' },\n { value: 'knitting', label: '🧶 Knitting' },\n { value: 'woodworking', label: '🪵 Woodworking' },\n { value: 'blogging', label: '📝 Blogging' },\n { value: 'vlogging', label: '📹 Vlogging' },\n ],\n },\n {\n label: 'Sports & Fitness',\n options: [\n { value: 'gym', label: '💪 Gym' },\n { value: 'running', label: '🏃 Running' },\n { value: 'cycling', label: '🚴 Cycling' },\n { value: 'swimming', label: '🏊 Swimming' },\n { value: 'yoga', label: '🧘 Yoga' },\n { value: 'martial_arts', label: '🥋 Martial Arts' },\n { value: 'rock_climbing', label: '🧗 Rock Climbing' },\n { value: 'hiking', label: '🥾 Hiking' },\n { value: 'skating', label: '⛸️ Skating' },\n { value: 'skateboarding', label: '🛹 Skateboarding' },\n { value: 'surfing', label: '🏄 Surfing' },\n { value: 'skiing', label: '⛷️ Skiing' },\n { value: 'cricket', label: '🏏 Cricket' },\n { value: 'football', label: '⚽ Football' },\n { value: 'badminton', label: '🏸 Badminton' },\n { value: 'tennis', label: '🎾 Tennis' },\n { value: 'basketball', label: '🏀 Basketball' },\n { value: 'table_tennis', label: '🏓 Table Tennis' },\n { value: 'archery', label: '🏹 Archery' },\n { value: 'horse_riding', label: '🐎 Horse Riding' },\n ],\n },\n {\n label: 'Music & Performance',\n options: [\n { value: 'singing', label: '🎤 Singing' },\n { value: 'playing_instrument', label: '🎸 Playing Instrument' },\n { value: 'dancing', label: '💃 Dancing' },\n { value: 'karaoke', label: '🎤 Karaoke' },\n { value: 'dj', label: '🎧 DJing' },\n { value: 'stand_up_comedy', label: '😂 Stand-up Comedy' },\n { value: 'theater', label: '🎭 Theater' },\n ],\n },\n {\n label: 'Entertainment',\n options: [\n { value: 'movies', label: '🎬 Movies' },\n { value: 'anime', label: '🎌 Anime' },\n { value: 'reading', label: '📚 Reading' },\n { value: 'podcasts', label: '🎧 Podcasts' },\n { value: 'gaming', label: '🎮 Gaming' },\n { value: 'board_games', label: '🎲 Board Games' },\n { value: 'binge_watching', label: '📺 Binge Watching' },\n { value: 'k_drama', label: '🇰🇷 K-Drama' },\n ],\n },\n {\n label: 'Food & Drink',\n options: [\n { value: 'cooking', label: '🍳 Cooking' },\n { value: 'baking', label: '🧁 Baking' },\n { value: 'coffee', label: '☕ Coffee' },\n { value: 'tea', label: '🍵 Tea' },\n { value: 'wine_tasting', label: '🍷 Wine Tasting' },\n { value: 'street_food', label: '🍜 Street Food' },\n { value: 'fine_dining', label: '🍽️ Fine Dining' },\n { value: 'food_photography', label: '📸 Food Photography' },\n ],\n },\n {\n label: 'Travel & Outdoors',\n options: [\n { value: 'traveling', label: '✈️ Traveling' },\n { value: 'camping', label: '⛺ Camping' },\n { value: 'backpacking', label: '🎒 Backpacking' },\n { value: 'road_trips', label: '🚗 Road Trips' },\n { value: 'scuba_diving', label: '🤿 Scuba Diving' },\n { value: 'bird_watching', label: '🐦 Bird Watching' },\n { value: 'fishing', label: '🎣 Fishing' },\n { value: 'gardening', label: '🌱 Gardening' },\n { value: 'stargazing', label: '🌌 Stargazing' },\n ],\n },\n {\n label: 'Mindfulness & Wellness',\n options: [\n { value: 'meditation', label: '🧘 Meditation' },\n { value: 'spirituality_practice', label: '🙏 Spirituality' },\n { value: 'astrology_hobby', label: '♈ Astrology' },\n { value: 'tarot', label: '🔮 Tarot' },\n { value: 'journaling', label: '📓 Journaling' },\n { value: 'self_improvement', label: '📈 Self Improvement' },\n ],\n },\n {\n label: 'Social & Community',\n options: [\n { value: 'volunteering', label: '🤝 Volunteering' },\n { value: 'activism', label: '✊ Activism' },\n { value: 'mentoring', label: '🎓 Mentoring' },\n { value: 'networking', label: '🤝 Networking' },\n { value: 'pet_care', label: '🐾 Pet Care' },\n ],\n },\n {\n label: 'Tech & Learning',\n options: [\n { value: 'coding', label: '💻 Coding' },\n { value: 'investing', label: '📈 Investing' },\n { value: 'entrepreneurship', label: '🚀 Entrepreneurship' },\n { value: 'languages', label: '🗣️ Languages' },\n { value: 'science', label: '🔬 Science' },\n ],\n },\n {\n label: 'Home & Lifestyle',\n options: [\n { value: 'interior_design', label: '🏠 Interior Design' },\n { value: 'fashion', label: '👗 Fashion' },\n { value: 'skincare', label: '✨ Skincare' },\n { value: 'thrifting', label: '🛍️ Thrifting' },\n { value: 'bowling', label: '🎳 Bowling' },\n ],\n },\n];\n\nexport const interests: FieldGroup = {\n key: 'interests',\n label: 'Interests & Hobbies',\n tier: 1,\n fields: [\n {\n order: 70,\n key: 'hobbies',\n label: 'Hobbies & Interests',\n type: 'multi_select',\n maxSelect: 10,\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n description: 'Pick up to 10 hobbies.',\n options: [\n { value: 'reading', label: 'Reading' },\n { value: 'writing', label: 'Writing' },\n { value: 'cooking', label: 'Cooking' },\n { value: 'baking', label: 'Baking' },\n { value: 'photography', label: 'Photography' },\n { value: 'painting', label: 'Painting' },\n { value: 'drawing', label: 'Drawing' },\n { value: 'hiking', label: 'Hiking' },\n { value: 'camping', label: 'Camping' },\n { value: 'cycling', label: 'Cycling' },\n { value: 'running', label: 'Running' },\n { value: 'yoga', label: 'Yoga' },\n { value: 'meditation', label: 'Meditation' },\n { value: 'dancing', label: 'Dancing' },\n { value: 'singing', label: 'Singing' },\n { value: 'playing_instrument', label: 'Playing Instrument' },\n { value: 'gardening', label: 'Gardening' },\n { value: 'gaming', label: 'Gaming' },\n { value: 'board_games', label: 'Board Games' },\n { value: 'traveling', label: 'Traveling' },\n { value: 'swimming', label: 'Swimming' },\n { value: 'gym', label: 'Gym' },\n { value: 'martial_arts', label: 'Martial Arts' },\n { value: 'rock_climbing', label: 'Rock Climbing' },\n { value: 'surfing', label: 'Surfing' },\n { value: 'skiing', label: 'Skiing' },\n { value: 'fishing', label: 'Fishing' },\n { value: 'bird_watching', label: 'Bird Watching' },\n { value: 'volunteering', label: 'Volunteering' },\n { value: 'crafts', label: 'Crafts' },\n { value: 'pottery', label: 'Pottery' },\n { value: 'knitting', label: 'Knitting' },\n { value: 'woodworking', label: 'Woodworking' },\n { value: 'diy', label: 'DIY' },\n { value: 'podcasts', label: 'Podcasts' },\n { value: 'movies', label: 'Movies' },\n { value: 'anime', label: 'Anime' },\n { value: 'theater', label: 'Theater' },\n { value: 'stand_up_comedy', label: 'Stand-Up Comedy' },\n { value: 'karaoke', label: 'Karaoke' },\n { value: 'wine_tasting', label: 'Wine Tasting' },\n { value: 'coffee', label: 'Coffee' },\n { value: 'tea', label: 'Tea' },\n { value: 'blogging', label: 'Blogging' },\n { value: 'vlogging', label: 'Vlogging' },\n { value: 'coding', label: 'Coding' },\n { value: 'investing', label: 'Investing' },\n { value: 'astrology_hobby', label: 'Astrology' },\n { value: 'tarot', label: 'Tarot' },\n { value: 'spirituality_practice', label: 'Spirituality Practice' },\n { value: 'pet_care', label: 'Pet Care' },\n { value: 'horse_riding', label: 'Horse Riding' },\n { value: 'scuba_diving', label: 'Scuba Diving' },\n { value: 'skateboarding', label: 'Skateboarding' },\n { value: 'bowling', label: 'Bowling' },\n { value: 'archery', label: 'Archery' },\n { value: 'cricket', label: 'Cricket' },\n { value: 'football', label: 'Football' },\n { value: 'badminton', label: 'Badminton' },\n { value: 'tennis', label: 'Tennis' },\n { value: 'basketball', label: 'Basketball' },\n { value: 'table_tennis', label: 'Table Tennis' },\n { value: 'skating', label: 'Skating' },\n { value: 'dj', label: 'DJing' },\n { value: 'binge_watching', label: 'Binge Watching' },\n { value: 'k_drama', label: 'K-Drama' },\n { value: 'backpacking', label: 'Backpacking' },\n { value: 'road_trips', label: 'Road Trips' },\n { value: 'stargazing', label: 'Stargazing' },\n { value: 'journaling', label: 'Journaling' },\n { value: 'self_improvement', label: 'Self Improvement' },\n { value: 'activism', label: 'Activism' },\n { value: 'mentoring', label: 'Mentoring' },\n { value: 'networking', label: 'Networking' },\n { value: 'entrepreneurship', label: 'Entrepreneurship' },\n { value: 'languages', label: 'Languages' },\n { value: 'science', label: 'Science' },\n { value: 'interior_design', label: 'Interior Design' },\n { value: 'fashion', label: 'Fashion' },\n { value: 'skincare', label: 'Skincare' },\n { value: 'thrifting', label: 'Thrifting' },\n { value: 'street_food', label: 'Street Food' },\n { value: 'fine_dining', label: 'Fine Dining' },\n { value: 'food_photography', label: 'Food Photography' },\n { value: 'other', label: 'Other' },\n ],\n },\n {\n order: 71,\n key: 'musicGenres',\n label: 'Music Genres',\n type: 'multi_select',\n maxSelect: 5,\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'pop', label: 'Pop' },\n { value: 'rock', label: 'Rock' },\n { value: 'hip_hop', label: 'Hip Hop' },\n { value: 'rnb', label: 'R&B' },\n { value: 'jazz', label: 'Jazz' },\n { value: 'classical', label: 'Classical' },\n { value: 'electronic', label: 'Electronic' },\n { value: 'edm', label: 'EDM' },\n { value: 'country', label: 'Country' },\n { value: 'folk', label: 'Folk' },\n { value: 'indie', label: 'Indie' },\n { value: 'metal', label: 'Metal' },\n { value: 'punk', label: 'Punk' },\n { value: 'reggae', label: 'Reggae' },\n { value: 'latin', label: 'Latin' },\n { value: 'kpop', label: 'K-Pop' },\n { value: 'bollywood', label: 'Bollywood' },\n { value: 'sufi', label: 'Sufi' },\n { value: 'ghazal', label: 'Ghazal' },\n { value: 'carnatic', label: 'Carnatic' },\n { value: 'hindustani_classical', label: 'Hindustani Classical' },\n { value: 'devotional', label: 'Devotional' },\n { value: 'lofi', label: 'Lo-Fi' },\n { value: 'ambient', label: 'Ambient' },\n { value: 'other', label: 'Other' },\n ],\n },\n {\n order: 72,\n key: 'gamingInterest',\n label: 'Gaming',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'hardcore', label: 'Hardcore gamer', description: 'Daily gaming, competitive' },\n { value: 'casual', label: 'Casual gamer', description: 'Play sometimes for fun' },\n { value: 'mobile_only', label: 'Mobile gamer', description: 'Candy Crush to PUBG Mobile' },\n {\n value: 'board_tabletop',\n label: 'Board / Tabletop',\n description: 'Physical games, D&D, etc.',\n },\n { value: 'retro', label: 'Retro gamer', description: 'Classic consoles and games' },\n { value: 'not_a_gamer', label: 'Not a gamer' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 73,\n key: 'readingHabit',\n label: 'Reading Habit',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'voracious', label: 'Voracious reader', description: 'Multiple books a month' },\n { value: 'regular', label: 'Regular reader', description: 'A book or two a month' },\n { value: 'occasional', label: 'Occasional', description: 'A few books a year' },\n { value: 'audiobooks', label: 'Audiobooks mostly' },\n { value: 'articles_only', label: 'Articles / blogs only' },\n { value: 'not_a_reader', label: 'Not really a reader' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 74,\n key: 'artApreciation',\n label: 'Art & Creativity',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'creator', label: 'Active creator', description: 'Make art regularly' },\n { value: 'hobbyist', label: 'Hobbyist', description: 'Create occasionally' },\n { value: 'appreciator', label: 'Appreciator', description: 'Love experiencing art' },\n { value: 'casual', label: 'Casual', description: 'Enjoy it when I encounter it' },\n { value: 'not_into_art', label: 'Not really into art' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 75,\n key: 'eventPreference',\n label: 'Event Preferences',\n type: 'multi_select',\n maxSelect: 5,\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'concerts', label: 'Concerts / Live music' },\n { value: 'festivals', label: 'Festivals' },\n { value: 'sports_events', label: 'Sports events' },\n { value: 'comedy_shows', label: 'Comedy shows' },\n { value: 'theater_plays', label: 'Theater / Plays' },\n { value: 'art_exhibitions', label: 'Art exhibitions' },\n { value: 'food_festivals', label: 'Food festivals' },\n { value: 'book_readings', label: 'Book readings' },\n { value: 'hackathons', label: 'Hackathons / Tech events' },\n { value: 'spiritual_gatherings', label: 'Spiritual gatherings' },\n { value: 'house_parties', label: 'House parties' },\n { value: 'club_nights', label: 'Club nights' },\n { value: 'outdoor_adventures', label: 'Outdoor adventures' },\n { value: 'workshops', label: 'Workshops / Classes' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 76,\n key: 'riskAppetite',\n label: 'Risk Appetite',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n {\n value: 'thrill_seeker',\n label: 'Thrill seeker',\n description: 'Bungee, skydiving, extreme sports',\n },\n {\n value: 'adventurous',\n label: 'Adventurous',\n description: 'Try new things, calculated risks',\n },\n {\n value: 'moderate',\n label: 'Moderate',\n description: 'Open to new things but play it safe',\n },\n { value: 'cautious', label: 'Cautious', description: 'Prefer the familiar and safe' },\n { value: 'risk_averse', label: 'Risk averse', description: 'Avoid risk at all costs' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 77,\n key: 'volunteerInterest',\n label: 'Volunteer / Social Cause Interest',\n type: 'multi_select',\n maxSelect: 5,\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'environment', label: 'Environment & Climate' },\n { value: 'animal_welfare', label: 'Animal welfare' },\n { value: 'education_literacy', label: 'Education & Literacy' },\n { value: 'poverty', label: 'Poverty & Hunger' },\n { value: 'health', label: 'Health & Medicine' },\n { value: 'mental_health', label: 'Mental health' },\n { value: 'gender_equality', label: 'Gender equality' },\n { value: 'lgbtq_rights', label: 'LGBTQ+ rights' },\n { value: 'disability', label: 'Disability rights' },\n { value: 'children', label: \"Children's welfare\" },\n { value: 'elderly', label: 'Elderly care' },\n { value: 'disaster_relief', label: 'Disaster relief' },\n { value: 'human_rights', label: 'Human rights' },\n { value: 'tech_for_good', label: 'Tech for good' },\n { value: 'none', label: 'Not active in volunteering' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n {\n order: 78,\n key: 'socialCircleSize',\n label: 'Social Circle Size',\n type: 'single_select',\n tier: 1,\n isFilter: false,\n isOnboarding: false,\n options: [\n { value: 'small', label: 'Small and close-knit' },\n { value: 'medium', label: 'Medium — a solid crew' },\n { value: 'large', label: 'Large — I know everyone' },\n { value: 'mostly_solo', label: 'Mostly solo / introvert' },\n { value: 'prefer_not_to_say', label: 'Prefer not to say' },\n ],\n },\n ],\n};\n"]}
@@ -4,7 +4,7 @@ export { basics } from './03-basics.js';
4
4
  export { lookingFor } from './04-looking-for.js';
5
5
  export { personality } from './05-personality.js';
6
6
  export { selfAssessment } from './06-self-assessment.js';
7
- export { interests } from './07-interests.js';
7
+ export { interests, interestCategories } from './07-interests.js';
8
8
  export { favourites } from './08-favourites.js';
9
9
  export { values } from './09-values.js';
10
10
  export { career } from './10-career.js';
@@ -14,7 +14,7 @@ export { relationshipIntimacy } from './13-relationship-intimacy.js';
14
14
  export { familyHome } from './14-family-home.js';
15
15
  export { financeLegal } from './15-finance-legal.js';
16
16
  export { healthWellness } from './16-health-wellness.js';
17
- export type { AudioUploadField, BaseField, ComputedField, FieldGroup, FieldOption, ImageUploadField, MultiSelectField, NumberField, ObjectArrayField, ProfileField, PromptArrayField, RangeSliderField, RankingField, SelectField, SliderField, StringArrayField, TextField, } from './types.js';
17
+ export type { AudioUploadField, BaseField, ComputedField, FieldGroup, FieldOption, ImageUploadField, MultiSelectField, NumberField, ObjectArrayField, OptionCategory, ProfileField, PromptArrayField, RangeSliderField, RankingField, SelectField, SliderField, StringArrayField, TextField, } from './types.js';
18
18
  import type { FieldGroup } from './types.js';
19
19
  /** All field groups in display order */
20
20
  export declare const allFieldGroups: FieldGroup[];
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/profile-fields/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,YAAY,EACV,gBAAgB,EAChB,SAAS,EACT,aAAa,EACb,UAAU,EACV,WAAW,EACX,gBAAgB,EAChB,gBAAgB,EAChB,WAAW,EACX,gBAAgB,EAChB,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,EAChB,YAAY,EACZ,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,SAAS,GACV,MAAM,YAAY,CAAC;AAkBpB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,wCAAwC;AACxC,eAAO,MAAM,cAAc,EAAE,UAAU,EAiBtC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/profile-fields/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAClE,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,YAAY,EACV,gBAAgB,EAChB,SAAS,EACT,aAAa,EACb,UAAU,EACV,WAAW,EACX,gBAAgB,EAChB,gBAAgB,EAChB,WAAW,EACX,gBAAgB,EAChB,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,EAChB,YAAY,EACZ,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,SAAS,GACV,MAAM,YAAY,CAAC;AAkBpB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,wCAAwC;AACxC,eAAO,MAAM,cAAc,EAAE,UAAU,EAiBtC,CAAC"}
@@ -4,7 +4,7 @@ export { basics } from './03-basics.js';
4
4
  export { lookingFor } from './04-looking-for.js';
5
5
  export { personality } from './05-personality.js';
6
6
  export { selfAssessment } from './06-self-assessment.js';
7
- export { interests } from './07-interests.js';
7
+ export { interests, interestCategories } from './07-interests.js';
8
8
  export { favourites } from './08-favourites.js';
9
9
  export { values } from './09-values.js';
10
10
  export { career } from './10-career.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/profile-fields/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAqBzD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAGzD,wCAAwC;AACxC,MAAM,CAAC,MAAM,cAAc,GAAiB;IAC1C,YAAY;IACZ,YAAY;IACZ,MAAM;IACN,UAAU;IACV,WAAW;IACX,cAAc;IACd,SAAS;IACT,UAAU;IACV,MAAM;IACN,MAAM;IACN,SAAS;IACT,SAAS;IACT,oBAAoB;IACpB,UAAU;IACV,YAAY;IACZ,cAAc;CACf,CAAC","sourcesContent":["export { heroIdentity } from './01-hero-identity.js';\nexport { storyPrompts } from './02-story-prompts.js';\nexport { basics } from './03-basics.js';\nexport { lookingFor } from './04-looking-for.js';\nexport { personality } from './05-personality.js';\nexport { selfAssessment } from './06-self-assessment.js';\nexport { interests } from './07-interests.js';\nexport { favourites } from './08-favourites.js';\nexport { values } from './09-values.js';\nexport { career } from './10-career.js';\nexport { lifestyle } from './11-lifestyle.js';\nexport { cognitive } from './12-cognitive.js';\nexport { relationshipIntimacy } from './13-relationship-intimacy.js';\nexport { familyHome } from './14-family-home.js';\nexport { financeLegal } from './15-finance-legal.js';\nexport { healthWellness } from './16-health-wellness.js';\nexport type {\n AudioUploadField,\n BaseField,\n ComputedField,\n FieldGroup,\n FieldOption,\n ImageUploadField,\n MultiSelectField,\n NumberField,\n ObjectArrayField,\n ProfileField,\n PromptArrayField,\n RangeSliderField,\n RankingField,\n SelectField,\n SliderField,\n StringArrayField,\n TextField,\n} from './types.js';\n\nimport { heroIdentity } from './01-hero-identity.js';\nimport { storyPrompts } from './02-story-prompts.js';\nimport { basics } from './03-basics.js';\nimport { lookingFor } from './04-looking-for.js';\nimport { personality } from './05-personality.js';\nimport { selfAssessment } from './06-self-assessment.js';\nimport { interests } from './07-interests.js';\nimport { favourites } from './08-favourites.js';\nimport { values } from './09-values.js';\nimport { career } from './10-career.js';\nimport { lifestyle } from './11-lifestyle.js';\nimport { cognitive } from './12-cognitive.js';\nimport { relationshipIntimacy } from './13-relationship-intimacy.js';\nimport { familyHome } from './14-family-home.js';\nimport { financeLegal } from './15-finance-legal.js';\nimport { healthWellness } from './16-health-wellness.js';\nimport type { FieldGroup } from './types.js';\n\n/** All field groups in display order */\nexport const allFieldGroups: FieldGroup[] = [\n heroIdentity,\n storyPrompts,\n basics,\n lookingFor,\n personality,\n selfAssessment,\n interests,\n favourites,\n values,\n career,\n lifestyle,\n cognitive,\n relationshipIntimacy,\n familyHome,\n financeLegal,\n healthWellness,\n];\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/profile-fields/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAClE,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAsBzD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAGzD,wCAAwC;AACxC,MAAM,CAAC,MAAM,cAAc,GAAiB;IAC1C,YAAY;IACZ,YAAY;IACZ,MAAM;IACN,UAAU;IACV,WAAW;IACX,cAAc;IACd,SAAS;IACT,UAAU;IACV,MAAM;IACN,MAAM;IACN,SAAS;IACT,SAAS;IACT,oBAAoB;IACpB,UAAU;IACV,YAAY;IACZ,cAAc;CACf,CAAC","sourcesContent":["export { heroIdentity } from './01-hero-identity.js';\nexport { storyPrompts } from './02-story-prompts.js';\nexport { basics } from './03-basics.js';\nexport { lookingFor } from './04-looking-for.js';\nexport { personality } from './05-personality.js';\nexport { selfAssessment } from './06-self-assessment.js';\nexport { interests, interestCategories } from './07-interests.js';\nexport { favourites } from './08-favourites.js';\nexport { values } from './09-values.js';\nexport { career } from './10-career.js';\nexport { lifestyle } from './11-lifestyle.js';\nexport { cognitive } from './12-cognitive.js';\nexport { relationshipIntimacy } from './13-relationship-intimacy.js';\nexport { familyHome } from './14-family-home.js';\nexport { financeLegal } from './15-finance-legal.js';\nexport { healthWellness } from './16-health-wellness.js';\nexport type {\n AudioUploadField,\n BaseField,\n ComputedField,\n FieldGroup,\n FieldOption,\n ImageUploadField,\n MultiSelectField,\n NumberField,\n ObjectArrayField,\n OptionCategory,\n ProfileField,\n PromptArrayField,\n RangeSliderField,\n RankingField,\n SelectField,\n SliderField,\n StringArrayField,\n TextField,\n} from './types.js';\n\nimport { heroIdentity } from './01-hero-identity.js';\nimport { storyPrompts } from './02-story-prompts.js';\nimport { basics } from './03-basics.js';\nimport { lookingFor } from './04-looking-for.js';\nimport { personality } from './05-personality.js';\nimport { selfAssessment } from './06-self-assessment.js';\nimport { interests } from './07-interests.js';\nimport { favourites } from './08-favourites.js';\nimport { values } from './09-values.js';\nimport { career } from './10-career.js';\nimport { lifestyle } from './11-lifestyle.js';\nimport { cognitive } from './12-cognitive.js';\nimport { relationshipIntimacy } from './13-relationship-intimacy.js';\nimport { familyHome } from './14-family-home.js';\nimport { financeLegal } from './15-finance-legal.js';\nimport { healthWellness } from './16-health-wellness.js';\nimport type { FieldGroup } from './types.js';\n\n/** All field groups in display order */\nexport const allFieldGroups: FieldGroup[] = [\n heroIdentity,\n storyPrompts,\n basics,\n lookingFor,\n personality,\n selfAssessment,\n interests,\n favourites,\n values,\n career,\n lifestyle,\n cognitive,\n relationshipIntimacy,\n familyHome,\n financeLegal,\n healthWellness,\n];\n"]}
@@ -112,4 +112,9 @@ export interface FieldGroup {
112
112
  tier: 1 | 2 | 3 | 'internal';
113
113
  fields: ProfileField[];
114
114
  }
115
+ /** A categorized group of selectable options (e.g. interests by category). */
116
+ export interface OptionCategory {
117
+ label: string;
118
+ options: FieldOption[];
119
+ }
115
120
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/profile-fields/types.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,SAAS;IACxB,kDAAkD;IAClD,KAAK,EAAE,MAAM,CAAC;IACd,yCAAyC;IACzC,GAAG,EAAE,MAAM,CAAC;IACZ,2BAA2B;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,oCAAoC;IACpC,IAAI,EACA,MAAM,GACN,UAAU,GACV,QAAQ,GACR,MAAM,GACN,eAAe,GACf,cAAc,GACd,gBAAgB,GAChB,cAAc,GACd,QAAQ,GACR,SAAS,GACT,cAAc,GACd,cAAc,GACd,cAAc,GACd,cAAc,GACd,cAAc,GACd,UAAU,GACV,UAAU,CAAC;IACf,qFAAqF;IACrF,IAAI,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,CAAC;IAC7B,gEAAgE;IAChE,QAAQ,EAAE,OAAO,CAAC;IAClB,+DAA+D;IAC/D,YAAY,EAAE,OAAO,CAAC;IACtB,gDAAgD;IAChD,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,sCAAsC;IACtC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,2DAA2D;IAC3D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,uCAAuC;IACvC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,oDAAoD;IACpD,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,IAAI,EAAE,eAAe,CAAC;IACtB,OAAO,EAAE,WAAW,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,gBAAiB,SAAQ,SAAS;IACjD,IAAI,EAAE,cAAc,GAAG,gBAAgB,CAAC;IACxC,OAAO,EAAE,WAAW,EAAE,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,SAAU,SAAQ,SAAS;IAC1C,IAAI,EAAE,MAAM,GAAG,UAAU,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,IAAI,EAAE,QAAQ,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,IAAI,EAAE,QAAQ,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;CACvC;AAED,MAAM,WAAW,gBAAiB,SAAQ,SAAS;IACjD,IAAI,EAAE,cAAc,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,gBAAiB,SAAQ,SAAS;IACjD,IAAI,EAAE,cAAc,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,gBAAiB,SAAQ,SAAS;IACjD,IAAI,EAAE,cAAc,CAAC;IACrB,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,gBAAiB,SAAQ,SAAS;IACjD,IAAI,EAAE,cAAc,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,YAAa,SAAQ,SAAS;IAC7C,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,EAAE,WAAW,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,gBAAiB,SAAQ,SAAS;IACjD,IAAI,EAAE,cAAc,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACnC;AAED,MAAM,WAAW,gBAAiB,SAAQ,SAAS;IACjD,IAAI,EAAE,cAAc,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,aAAc,SAAQ,SAAS;IAC9C,IAAI,EAAE,UAAU,CAAC;IACjB,YAAY,EAAE,MAAM,EAAE,CAAC;CACxB;AAED,MAAM,MAAM,YAAY,GACpB,WAAW,GACX,gBAAgB,GAChB,SAAS,GACT,WAAW,GACX,WAAW,GACX,gBAAgB,GAChB,gBAAgB,GAChB,gBAAgB,GAChB,gBAAgB,GAChB,YAAY,GACZ,gBAAgB,GAChB,gBAAgB,GAChB,aAAa,GACb,CAAC,SAAS,GAAG;IAAE,IAAI,EAAE,MAAM,GAAG,UAAU,CAAA;CAAE,CAAC,CAAC;AAEhD,MAAM,WAAW,UAAU;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,CAAC;IAC7B,MAAM,EAAE,YAAY,EAAE,CAAC;CACxB"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/profile-fields/types.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/profile-fields/types.ts"],"names":[],"mappings":"AAAA;;;;GAIG","sourcesContent":["/**\n * Type definitions for dating profile field configuration.\n * These types describe the shape of each field's metadata —\n * NOT the user's actual profile data (that's the Zod schemas).\n */\n\nexport interface FieldOption {\n value: string;\n label: string;\n description?: string;\n}\n\nexport interface BaseField {\n /** Display order on edit page and profile view */\n order: number;\n /** Unique key — maps to DB field name */\n key: string;\n /** Human-readable label */\n label: string;\n /** Field type for form rendering */\n type:\n | 'text'\n | 'textarea'\n | 'number'\n | 'date'\n | 'single_select'\n | 'multi_select'\n | 'keyword_select'\n | 'range_slider'\n | 'slider'\n | 'ranking'\n | 'image_upload'\n | 'audio_upload'\n | 'prompt_array'\n | 'object_array'\n | 'string_array'\n | 'location'\n | 'computed';\n /** Visibility tier: 1=public, 2=match-only, 3=trust-gated, 'internal'=never shown */\n tier: 1 | 2 | 3 | 'internal';\n /** Whether this field appears in the filter/preferences page */\n isFilter: boolean;\n /** Whether this field is collected during dating onboarding */\n isOnboarding: boolean;\n /** If true, can be skipped during onboarding */\n isOnboardingOptional?: boolean;\n /** Help text shown below the field */\n description?: string;\n /** If this field is pre-filled from the core User model */\n prefillFrom?: string;\n /** Mark as optional (user can skip) */\n optional?: boolean;\n /** Mark as sensitive (shown with privacy notice) */\n sensitive?: boolean;\n}\n\nexport interface SelectField extends BaseField {\n type: 'single_select';\n options: FieldOption[];\n}\n\nexport interface MultiSelectField extends BaseField {\n type: 'multi_select' | 'keyword_select';\n options: FieldOption[];\n maxSelect?: number;\n}\n\nexport interface TextField extends BaseField {\n type: 'text' | 'textarea';\n maxLength?: number;\n}\n\nexport interface NumberField extends BaseField {\n type: 'number';\n min?: number;\n max?: number;\n unit?: string;\n}\n\nexport interface SliderField extends BaseField {\n type: 'slider';\n min: number;\n max: number;\n step?: number;\n labels?: { min: string; max: string };\n}\n\nexport interface RangeSliderField extends BaseField {\n type: 'range_slider';\n min: number;\n max: number;\n unit?: string;\n default?: number;\n}\n\nexport interface ImageUploadField extends BaseField {\n type: 'image_upload';\n min: number;\n max: number;\n}\n\nexport interface AudioUploadField extends BaseField {\n type: 'audio_upload';\n maxDurationSeconds: number;\n}\n\nexport interface PromptArrayField extends BaseField {\n type: 'prompt_array';\n min: number;\n max: number;\n maxAnswerLength: number;\n promptPool: string[];\n}\n\nexport interface RankingField extends BaseField {\n type: 'ranking';\n options: FieldOption[];\n}\n\nexport interface ObjectArrayField extends BaseField {\n type: 'object_array';\n itemShape: Record<string, string>;\n}\n\nexport interface StringArrayField extends BaseField {\n type: 'string_array';\n maxItems?: number;\n}\n\nexport interface ComputedField extends BaseField {\n type: 'computed';\n computedFrom: string[];\n}\n\nexport type ProfileField =\n | SelectField\n | MultiSelectField\n | TextField\n | NumberField\n | SliderField\n | RangeSliderField\n | ImageUploadField\n | AudioUploadField\n | PromptArrayField\n | RankingField\n | ObjectArrayField\n | StringArrayField\n | ComputedField\n | (BaseField & { type: 'date' | 'location' });\n\nexport interface FieldGroup {\n key: string;\n label: string;\n description?: string;\n tier: 1 | 2 | 3 | 'internal';\n fields: ProfileField[];\n}\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/profile-fields/types.ts"],"names":[],"mappings":"AAAA;;;;GAIG","sourcesContent":["/**\n * Type definitions for dating profile field configuration.\n * These types describe the shape of each field's metadata —\n * NOT the user's actual profile data (that's the Zod schemas).\n */\n\nexport interface FieldOption {\n value: string;\n label: string;\n description?: string;\n}\n\nexport interface BaseField {\n /** Display order on edit page and profile view */\n order: number;\n /** Unique key — maps to DB field name */\n key: string;\n /** Human-readable label */\n label: string;\n /** Field type for form rendering */\n type:\n | 'text'\n | 'textarea'\n | 'number'\n | 'date'\n | 'single_select'\n | 'multi_select'\n | 'keyword_select'\n | 'range_slider'\n | 'slider'\n | 'ranking'\n | 'image_upload'\n | 'audio_upload'\n | 'prompt_array'\n | 'object_array'\n | 'string_array'\n | 'location'\n | 'computed';\n /** Visibility tier: 1=public, 2=match-only, 3=trust-gated, 'internal'=never shown */\n tier: 1 | 2 | 3 | 'internal';\n /** Whether this field appears in the filter/preferences page */\n isFilter: boolean;\n /** Whether this field is collected during dating onboarding */\n isOnboarding: boolean;\n /** If true, can be skipped during onboarding */\n isOnboardingOptional?: boolean;\n /** Help text shown below the field */\n description?: string;\n /** If this field is pre-filled from the core User model */\n prefillFrom?: string;\n /** Mark as optional (user can skip) */\n optional?: boolean;\n /** Mark as sensitive (shown with privacy notice) */\n sensitive?: boolean;\n}\n\nexport interface SelectField extends BaseField {\n type: 'single_select';\n options: FieldOption[];\n}\n\nexport interface MultiSelectField extends BaseField {\n type: 'multi_select' | 'keyword_select';\n options: FieldOption[];\n maxSelect?: number;\n}\n\nexport interface TextField extends BaseField {\n type: 'text' | 'textarea';\n maxLength?: number;\n}\n\nexport interface NumberField extends BaseField {\n type: 'number';\n min?: number;\n max?: number;\n unit?: string;\n}\n\nexport interface SliderField extends BaseField {\n type: 'slider';\n min: number;\n max: number;\n step?: number;\n labels?: { min: string; max: string };\n}\n\nexport interface RangeSliderField extends BaseField {\n type: 'range_slider';\n min: number;\n max: number;\n unit?: string;\n default?: number;\n}\n\nexport interface ImageUploadField extends BaseField {\n type: 'image_upload';\n min: number;\n max: number;\n}\n\nexport interface AudioUploadField extends BaseField {\n type: 'audio_upload';\n maxDurationSeconds: number;\n}\n\nexport interface PromptArrayField extends BaseField {\n type: 'prompt_array';\n min: number;\n max: number;\n maxAnswerLength: number;\n promptPool: string[];\n}\n\nexport interface RankingField extends BaseField {\n type: 'ranking';\n options: FieldOption[];\n}\n\nexport interface ObjectArrayField extends BaseField {\n type: 'object_array';\n itemShape: Record<string, string>;\n}\n\nexport interface StringArrayField extends BaseField {\n type: 'string_array';\n maxItems?: number;\n}\n\nexport interface ComputedField extends BaseField {\n type: 'computed';\n computedFrom: string[];\n}\n\nexport type ProfileField =\n | SelectField\n | MultiSelectField\n | TextField\n | NumberField\n | SliderField\n | RangeSliderField\n | ImageUploadField\n | AudioUploadField\n | PromptArrayField\n | RankingField\n | ObjectArrayField\n | StringArrayField\n | ComputedField\n | (BaseField & { type: 'date' | 'location' });\n\nexport interface FieldGroup {\n key: string;\n label: string;\n description?: string;\n tier: 1 | 2 | 3 | 'internal';\n fields: ProfileField[];\n}\n\n/** A categorized group of selectable options (e.g. interests by category). */\nexport interface OptionCategory {\n label: string;\n options: FieldOption[];\n}\n"]}
package/dist/profile.d.ts CHANGED
@@ -680,80 +680,81 @@ export declare const fullProfileSchema: z.ZodObject<{
680
680
  rateBoredom: z.ZodOptional<z.ZodNumber>;
681
681
  hobbies: z.ZodOptional<z.ZodArray<z.ZodEnum<{
682
682
  other: "other";
683
- reading: "reading";
684
- writing: "writing";
685
- cooking: "cooking";
686
- baking: "baking";
687
683
  photography: "photography";
688
684
  painting: "painting";
689
685
  drawing: "drawing";
690
- hiking: "hiking";
691
- camping: "camping";
692
- cycling: "cycling";
693
- running: "running";
694
- yoga: "yoga";
695
- meditation: "meditation";
696
- dancing: "dancing";
697
- singing: "singing";
698
- playing_instrument: "playing_instrument";
699
- gardening: "gardening";
700
- gaming: "gaming";
701
- board_games: "board_games";
702
- traveling: "traveling";
703
- swimming: "swimming";
704
- gym: "gym";
705
- martial_arts: "martial_arts";
706
- rock_climbing: "rock_climbing";
707
- surfing: "surfing";
708
- skiing: "skiing";
709
- fishing: "fishing";
710
- bird_watching: "bird_watching";
711
- volunteering: "volunteering";
686
+ writing: "writing";
712
687
  crafts: "crafts";
713
688
  pottery: "pottery";
714
689
  knitting: "knitting";
715
690
  woodworking: "woodworking";
716
- diy: "diy";
717
- podcasts: "podcasts";
718
- movies: "movies";
719
- anime: "anime";
720
- theater: "theater";
721
- stand_up_comedy: "stand_up_comedy";
722
- karaoke: "karaoke";
723
- wine_tasting: "wine_tasting";
724
- coffee: "coffee";
725
- tea: "tea";
726
691
  blogging: "blogging";
727
692
  vlogging: "vlogging";
728
- coding: "coding";
729
- investing: "investing";
730
- astrology_hobby: "astrology_hobby";
731
- tarot: "tarot";
732
- spirituality_practice: "spirituality_practice";
733
- pet_care: "pet_care";
734
- horse_riding: "horse_riding";
735
- scuba_diving: "scuba_diving";
693
+ gym: "gym";
694
+ running: "running";
695
+ cycling: "cycling";
696
+ swimming: "swimming";
697
+ yoga: "yoga";
698
+ martial_arts: "martial_arts";
699
+ rock_climbing: "rock_climbing";
700
+ hiking: "hiking";
701
+ skating: "skating";
736
702
  skateboarding: "skateboarding";
737
- bowling: "bowling";
738
- archery: "archery";
703
+ surfing: "surfing";
704
+ skiing: "skiing";
739
705
  cricket: "cricket";
740
706
  football: "football";
741
707
  badminton: "badminton";
742
708
  tennis: "tennis";
743
709
  basketball: "basketball";
744
710
  table_tennis: "table_tennis";
745
- skating: "skating";
711
+ archery: "archery";
712
+ horse_riding: "horse_riding";
713
+ singing: "singing";
714
+ playing_instrument: "playing_instrument";
715
+ dancing: "dancing";
716
+ karaoke: "karaoke";
746
717
  dj: "dj";
718
+ stand_up_comedy: "stand_up_comedy";
719
+ theater: "theater";
720
+ movies: "movies";
721
+ anime: "anime";
722
+ reading: "reading";
723
+ podcasts: "podcasts";
724
+ gaming: "gaming";
725
+ board_games: "board_games";
747
726
  binge_watching: "binge_watching";
748
727
  k_drama: "k_drama";
728
+ cooking: "cooking";
729
+ baking: "baking";
730
+ coffee: "coffee";
731
+ tea: "tea";
732
+ wine_tasting: "wine_tasting";
733
+ street_food: "street_food";
734
+ fine_dining: "fine_dining";
735
+ food_photography: "food_photography";
736
+ traveling: "traveling";
737
+ camping: "camping";
749
738
  backpacking: "backpacking";
750
739
  road_trips: "road_trips";
740
+ scuba_diving: "scuba_diving";
741
+ bird_watching: "bird_watching";
742
+ fishing: "fishing";
743
+ gardening: "gardening";
751
744
  stargazing: "stargazing";
745
+ meditation: "meditation";
746
+ spirituality_practice: "spirituality_practice";
747
+ astrology_hobby: "astrology_hobby";
748
+ tarot: "tarot";
752
749
  journaling: "journaling";
753
750
  self_improvement: "self_improvement";
751
+ volunteering: "volunteering";
754
752
  activism: "activism";
755
753
  mentoring: "mentoring";
756
754
  networking: "networking";
755
+ pet_care: "pet_care";
756
+ coding: "coding";
757
+ investing: "investing";
757
758
  entrepreneurship: "entrepreneurship";
758
759
  languages: "languages";
759
760
  science: "science";
@@ -761,9 +762,8 @@ export declare const fullProfileSchema: z.ZodObject<{
761
762
  fashion: "fashion";
762
763
  skincare: "skincare";
763
764
  thrifting: "thrifting";
764
- street_food: "street_food";
765
- fine_dining: "fine_dining";
766
- food_photography: "food_photography";
765
+ bowling: "bowling";
766
+ diy: "diy";
767
767
  }>>>;
768
768
  musicGenres: z.ZodOptional<z.ZodArray<z.ZodEnum<{
769
769
  other: "other";
@@ -845,7 +845,6 @@ export declare const fullProfileSchema: z.ZodObject<{
845
845
  }>>;
846
846
  volunteerInterest: z.ZodOptional<z.ZodArray<z.ZodEnum<{
847
847
  prefer_not_to_say: "prefer_not_to_say";
848
- none: "none";
849
848
  environment: "environment";
850
849
  animal_welfare: "animal_welfare";
851
850
  education_literacy: "education_literacy";
@@ -860,6 +859,7 @@ export declare const fullProfileSchema: z.ZodObject<{
860
859
  disaster_relief: "disaster_relief";
861
860
  human_rights: "human_rights";
862
861
  tech_for_good: "tech_for_good";
862
+ none: "none";
863
863
  }>>>;
864
864
  socialCircleSize: z.ZodOptional<z.ZodEnum<{
865
865
  prefer_not_to_say: "prefer_not_to_say";
@@ -1028,10 +1028,10 @@ export declare const fullProfileSchema: z.ZodObject<{
1028
1028
  }>>;
1029
1029
  cookingLevel: z.ZodOptional<z.ZodEnum<{
1030
1030
  prefer_not_to_say: "prefer_not_to_say";
1031
+ basics: "basics";
1031
1032
  regular: "regular";
1032
1033
  chef_level: "chef_level";
1033
1034
  follow_recipe: "follow_recipe";
1034
- basics: "basics";
1035
1035
  takeout: "takeout";
1036
1036
  willing_to_learn: "willing_to_learn";
1037
1037
  }>>;
@@ -1145,8 +1145,8 @@ export declare const fullProfileSchema: z.ZodObject<{
1145
1145
  }>>;
1146
1146
  bodyModifications: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1147
1147
  prefer_not_to_say: "prefer_not_to_say";
1148
- none: "none";
1149
1148
  open_to_it: "open_to_it";
1149
+ none: "none";
1150
1150
  tattoos: "tattoos";
1151
1151
  piercings: "piercings";
1152
1152
  nose_piercing: "nose_piercing";
@@ -1239,8 +1239,8 @@ export declare const fullProfileSchema: z.ZodObject<{
1239
1239
  }>>>;
1240
1240
  intellectualExperience: z.ZodOptional<z.ZodEnum<{
1241
1241
  prefer_not_to_say: "prefer_not_to_say";
1242
- advanced: "advanced";
1243
1242
  expert: "expert";
1243
+ advanced: "advanced";
1244
1244
  intermediate: "intermediate";
1245
1245
  growing: "growing";
1246
1246
  beginner: "beginner";
@@ -1396,8 +1396,8 @@ export declare const fullProfileSchema: z.ZodObject<{
1396
1396
  }>>;
1397
1397
  caregivingResponsibility: z.ZodOptional<z.ZodEnum<{
1398
1398
  prefer_not_to_say: "prefer_not_to_say";
1399
- none: "none";
1400
1399
  children: "children";
1400
+ none: "none";
1401
1401
  elderly_parents: "elderly_parents";
1402
1402
  disabled_family: "disabled_family";
1403
1403
  shared: "shared";
@@ -1600,9 +1600,9 @@ export declare const fullProfileSchema: z.ZodObject<{
1600
1600
  }>>;
1601
1601
  healthInsurance: z.ZodOptional<z.ZodEnum<{
1602
1602
  prefer_not_to_say: "prefer_not_to_say";
1603
- basic: "basic";
1604
1603
  none: "none";
1605
1604
  comprehensive: "comprehensive";
1605
+ basic: "basic";
1606
1606
  employer: "employer";
1607
1607
  }>>;
1608
1608
  citizenship: z.ZodOptional<z.ZodEnum<{
@@ -1676,17 +1676,17 @@ export declare const fullProfileSchema: z.ZodObject<{
1676
1676
  prefer_not_to_say: "prefer_not_to_say";
1677
1677
  none: "none";
1678
1678
  multiple: "multiple";
1679
+ cognitive: "cognitive";
1679
1680
  physical: "physical";
1680
1681
  visual: "visual";
1681
1682
  hearing: "hearing";
1682
- cognitive: "cognitive";
1683
1683
  chronic_condition: "chronic_condition";
1684
1684
  }>>;
1685
1685
  chronicCondition: z.ZodOptional<z.ZodEnum<{
1686
1686
  prefer_not_to_say: "prefer_not_to_say";
1687
- none: "none";
1688
1687
  other: "other";
1689
1688
  mental_health: "mental_health";
1689
+ none: "none";
1690
1690
  multiple: "multiple";
1691
1691
  diabetes: "diabetes";
1692
1692
  hypertension: "hypertension";
@@ -2133,80 +2133,81 @@ export declare const createProfileSchema: z.ZodObject<{
2133
2133
  }>>;
2134
2134
  hobbies: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2135
2135
  other: "other";
2136
- reading: "reading";
2137
- writing: "writing";
2138
- cooking: "cooking";
2139
- baking: "baking";
2140
2136
  photography: "photography";
2141
2137
  painting: "painting";
2142
2138
  drawing: "drawing";
2143
- hiking: "hiking";
2144
- camping: "camping";
2145
- cycling: "cycling";
2146
- running: "running";
2147
- yoga: "yoga";
2148
- meditation: "meditation";
2149
- dancing: "dancing";
2150
- singing: "singing";
2151
- playing_instrument: "playing_instrument";
2152
- gardening: "gardening";
2153
- gaming: "gaming";
2154
- board_games: "board_games";
2155
- traveling: "traveling";
2156
- swimming: "swimming";
2157
- gym: "gym";
2158
- martial_arts: "martial_arts";
2159
- rock_climbing: "rock_climbing";
2160
- surfing: "surfing";
2161
- skiing: "skiing";
2162
- fishing: "fishing";
2163
- bird_watching: "bird_watching";
2164
- volunteering: "volunteering";
2139
+ writing: "writing";
2165
2140
  crafts: "crafts";
2166
2141
  pottery: "pottery";
2167
2142
  knitting: "knitting";
2168
2143
  woodworking: "woodworking";
2169
- diy: "diy";
2170
- podcasts: "podcasts";
2171
- movies: "movies";
2172
- anime: "anime";
2173
- theater: "theater";
2174
- stand_up_comedy: "stand_up_comedy";
2175
- karaoke: "karaoke";
2176
- wine_tasting: "wine_tasting";
2177
- coffee: "coffee";
2178
- tea: "tea";
2179
2144
  blogging: "blogging";
2180
2145
  vlogging: "vlogging";
2181
- coding: "coding";
2182
- investing: "investing";
2183
- astrology_hobby: "astrology_hobby";
2184
- tarot: "tarot";
2185
- spirituality_practice: "spirituality_practice";
2186
- pet_care: "pet_care";
2187
- horse_riding: "horse_riding";
2188
- scuba_diving: "scuba_diving";
2146
+ gym: "gym";
2147
+ running: "running";
2148
+ cycling: "cycling";
2149
+ swimming: "swimming";
2150
+ yoga: "yoga";
2151
+ martial_arts: "martial_arts";
2152
+ rock_climbing: "rock_climbing";
2153
+ hiking: "hiking";
2154
+ skating: "skating";
2189
2155
  skateboarding: "skateboarding";
2190
- bowling: "bowling";
2191
- archery: "archery";
2156
+ surfing: "surfing";
2157
+ skiing: "skiing";
2192
2158
  cricket: "cricket";
2193
2159
  football: "football";
2194
2160
  badminton: "badminton";
2195
2161
  tennis: "tennis";
2196
2162
  basketball: "basketball";
2197
2163
  table_tennis: "table_tennis";
2198
- skating: "skating";
2164
+ archery: "archery";
2165
+ horse_riding: "horse_riding";
2166
+ singing: "singing";
2167
+ playing_instrument: "playing_instrument";
2168
+ dancing: "dancing";
2169
+ karaoke: "karaoke";
2199
2170
  dj: "dj";
2171
+ stand_up_comedy: "stand_up_comedy";
2172
+ theater: "theater";
2173
+ movies: "movies";
2174
+ anime: "anime";
2175
+ reading: "reading";
2176
+ podcasts: "podcasts";
2177
+ gaming: "gaming";
2178
+ board_games: "board_games";
2200
2179
  binge_watching: "binge_watching";
2201
2180
  k_drama: "k_drama";
2181
+ cooking: "cooking";
2182
+ baking: "baking";
2183
+ coffee: "coffee";
2184
+ tea: "tea";
2185
+ wine_tasting: "wine_tasting";
2186
+ street_food: "street_food";
2187
+ fine_dining: "fine_dining";
2188
+ food_photography: "food_photography";
2189
+ traveling: "traveling";
2190
+ camping: "camping";
2202
2191
  backpacking: "backpacking";
2203
2192
  road_trips: "road_trips";
2193
+ scuba_diving: "scuba_diving";
2194
+ bird_watching: "bird_watching";
2195
+ fishing: "fishing";
2196
+ gardening: "gardening";
2204
2197
  stargazing: "stargazing";
2198
+ meditation: "meditation";
2199
+ spirituality_practice: "spirituality_practice";
2200
+ astrology_hobby: "astrology_hobby";
2201
+ tarot: "tarot";
2205
2202
  journaling: "journaling";
2206
2203
  self_improvement: "self_improvement";
2204
+ volunteering: "volunteering";
2207
2205
  activism: "activism";
2208
2206
  mentoring: "mentoring";
2209
2207
  networking: "networking";
2208
+ pet_care: "pet_care";
2209
+ coding: "coding";
2210
+ investing: "investing";
2210
2211
  entrepreneurship: "entrepreneurship";
2211
2212
  languages: "languages";
2212
2213
  science: "science";
@@ -2214,9 +2215,8 @@ export declare const createProfileSchema: z.ZodObject<{
2214
2215
  fashion: "fashion";
2215
2216
  skincare: "skincare";
2216
2217
  thrifting: "thrifting";
2217
- street_food: "street_food";
2218
- fine_dining: "fine_dining";
2219
- food_photography: "food_photography";
2218
+ bowling: "bowling";
2219
+ diy: "diy";
2220
2220
  }>>>;
2221
2221
  diet: z.ZodOptional<z.ZodEnum<{
2222
2222
  prefer_not_to_say: "prefer_not_to_say";
@@ -2952,80 +2952,81 @@ export declare const updateProfileSchema: z.ZodObject<{
2952
2952
  rateBoredom: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
2953
2953
  hobbies: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2954
2954
  other: "other";
2955
- reading: "reading";
2956
- writing: "writing";
2957
- cooking: "cooking";
2958
- baking: "baking";
2959
2955
  photography: "photography";
2960
2956
  painting: "painting";
2961
2957
  drawing: "drawing";
2962
- hiking: "hiking";
2963
- camping: "camping";
2964
- cycling: "cycling";
2965
- running: "running";
2966
- yoga: "yoga";
2967
- meditation: "meditation";
2968
- dancing: "dancing";
2969
- singing: "singing";
2970
- playing_instrument: "playing_instrument";
2971
- gardening: "gardening";
2972
- gaming: "gaming";
2973
- board_games: "board_games";
2974
- traveling: "traveling";
2975
- swimming: "swimming";
2976
- gym: "gym";
2977
- martial_arts: "martial_arts";
2978
- rock_climbing: "rock_climbing";
2979
- surfing: "surfing";
2980
- skiing: "skiing";
2981
- fishing: "fishing";
2982
- bird_watching: "bird_watching";
2983
- volunteering: "volunteering";
2958
+ writing: "writing";
2984
2959
  crafts: "crafts";
2985
2960
  pottery: "pottery";
2986
2961
  knitting: "knitting";
2987
2962
  woodworking: "woodworking";
2988
- diy: "diy";
2989
- podcasts: "podcasts";
2990
- movies: "movies";
2991
- anime: "anime";
2992
- theater: "theater";
2993
- stand_up_comedy: "stand_up_comedy";
2994
- karaoke: "karaoke";
2995
- wine_tasting: "wine_tasting";
2996
- coffee: "coffee";
2997
- tea: "tea";
2998
2963
  blogging: "blogging";
2999
2964
  vlogging: "vlogging";
3000
- coding: "coding";
3001
- investing: "investing";
3002
- astrology_hobby: "astrology_hobby";
3003
- tarot: "tarot";
3004
- spirituality_practice: "spirituality_practice";
3005
- pet_care: "pet_care";
3006
- horse_riding: "horse_riding";
3007
- scuba_diving: "scuba_diving";
2965
+ gym: "gym";
2966
+ running: "running";
2967
+ cycling: "cycling";
2968
+ swimming: "swimming";
2969
+ yoga: "yoga";
2970
+ martial_arts: "martial_arts";
2971
+ rock_climbing: "rock_climbing";
2972
+ hiking: "hiking";
2973
+ skating: "skating";
3008
2974
  skateboarding: "skateboarding";
3009
- bowling: "bowling";
3010
- archery: "archery";
2975
+ surfing: "surfing";
2976
+ skiing: "skiing";
3011
2977
  cricket: "cricket";
3012
2978
  football: "football";
3013
2979
  badminton: "badminton";
3014
2980
  tennis: "tennis";
3015
2981
  basketball: "basketball";
3016
2982
  table_tennis: "table_tennis";
3017
- skating: "skating";
2983
+ archery: "archery";
2984
+ horse_riding: "horse_riding";
2985
+ singing: "singing";
2986
+ playing_instrument: "playing_instrument";
2987
+ dancing: "dancing";
2988
+ karaoke: "karaoke";
3018
2989
  dj: "dj";
2990
+ stand_up_comedy: "stand_up_comedy";
2991
+ theater: "theater";
2992
+ movies: "movies";
2993
+ anime: "anime";
2994
+ reading: "reading";
2995
+ podcasts: "podcasts";
2996
+ gaming: "gaming";
2997
+ board_games: "board_games";
3019
2998
  binge_watching: "binge_watching";
3020
2999
  k_drama: "k_drama";
3000
+ cooking: "cooking";
3001
+ baking: "baking";
3002
+ coffee: "coffee";
3003
+ tea: "tea";
3004
+ wine_tasting: "wine_tasting";
3005
+ street_food: "street_food";
3006
+ fine_dining: "fine_dining";
3007
+ food_photography: "food_photography";
3008
+ traveling: "traveling";
3009
+ camping: "camping";
3021
3010
  backpacking: "backpacking";
3022
3011
  road_trips: "road_trips";
3012
+ scuba_diving: "scuba_diving";
3013
+ bird_watching: "bird_watching";
3014
+ fishing: "fishing";
3015
+ gardening: "gardening";
3023
3016
  stargazing: "stargazing";
3017
+ meditation: "meditation";
3018
+ spirituality_practice: "spirituality_practice";
3019
+ astrology_hobby: "astrology_hobby";
3020
+ tarot: "tarot";
3024
3021
  journaling: "journaling";
3025
3022
  self_improvement: "self_improvement";
3023
+ volunteering: "volunteering";
3026
3024
  activism: "activism";
3027
3025
  mentoring: "mentoring";
3028
3026
  networking: "networking";
3027
+ pet_care: "pet_care";
3028
+ coding: "coding";
3029
+ investing: "investing";
3029
3030
  entrepreneurship: "entrepreneurship";
3030
3031
  languages: "languages";
3031
3032
  science: "science";
@@ -3033,9 +3034,8 @@ export declare const updateProfileSchema: z.ZodObject<{
3033
3034
  fashion: "fashion";
3034
3035
  skincare: "skincare";
3035
3036
  thrifting: "thrifting";
3036
- street_food: "street_food";
3037
- fine_dining: "fine_dining";
3038
- food_photography: "food_photography";
3037
+ bowling: "bowling";
3038
+ diy: "diy";
3039
3039
  }>>>>;
3040
3040
  musicGenres: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
3041
3041
  other: "other";
@@ -3117,7 +3117,6 @@ export declare const updateProfileSchema: z.ZodObject<{
3117
3117
  }>>>;
3118
3118
  volunteerInterest: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
3119
3119
  prefer_not_to_say: "prefer_not_to_say";
3120
- none: "none";
3121
3120
  environment: "environment";
3122
3121
  animal_welfare: "animal_welfare";
3123
3122
  education_literacy: "education_literacy";
@@ -3132,6 +3131,7 @@ export declare const updateProfileSchema: z.ZodObject<{
3132
3131
  disaster_relief: "disaster_relief";
3133
3132
  human_rights: "human_rights";
3134
3133
  tech_for_good: "tech_for_good";
3134
+ none: "none";
3135
3135
  }>>>>;
3136
3136
  socialCircleSize: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
3137
3137
  prefer_not_to_say: "prefer_not_to_say";
@@ -3300,10 +3300,10 @@ export declare const updateProfileSchema: z.ZodObject<{
3300
3300
  }>>>;
3301
3301
  cookingLevel: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
3302
3302
  prefer_not_to_say: "prefer_not_to_say";
3303
+ basics: "basics";
3303
3304
  regular: "regular";
3304
3305
  chef_level: "chef_level";
3305
3306
  follow_recipe: "follow_recipe";
3306
- basics: "basics";
3307
3307
  takeout: "takeout";
3308
3308
  willing_to_learn: "willing_to_learn";
3309
3309
  }>>>;
@@ -3417,8 +3417,8 @@ export declare const updateProfileSchema: z.ZodObject<{
3417
3417
  }>>>;
3418
3418
  bodyModifications: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
3419
3419
  prefer_not_to_say: "prefer_not_to_say";
3420
- none: "none";
3421
3420
  open_to_it: "open_to_it";
3421
+ none: "none";
3422
3422
  tattoos: "tattoos";
3423
3423
  piercings: "piercings";
3424
3424
  nose_piercing: "nose_piercing";
@@ -3511,8 +3511,8 @@ export declare const updateProfileSchema: z.ZodObject<{
3511
3511
  }>>>>;
3512
3512
  intellectualExperience: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
3513
3513
  prefer_not_to_say: "prefer_not_to_say";
3514
- advanced: "advanced";
3515
3514
  expert: "expert";
3515
+ advanced: "advanced";
3516
3516
  intermediate: "intermediate";
3517
3517
  growing: "growing";
3518
3518
  beginner: "beginner";
@@ -3668,8 +3668,8 @@ export declare const updateProfileSchema: z.ZodObject<{
3668
3668
  }>>>;
3669
3669
  caregivingResponsibility: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
3670
3670
  prefer_not_to_say: "prefer_not_to_say";
3671
- none: "none";
3672
3671
  children: "children";
3672
+ none: "none";
3673
3673
  elderly_parents: "elderly_parents";
3674
3674
  disabled_family: "disabled_family";
3675
3675
  shared: "shared";
@@ -3872,9 +3872,9 @@ export declare const updateProfileSchema: z.ZodObject<{
3872
3872
  }>>>;
3873
3873
  healthInsurance: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
3874
3874
  prefer_not_to_say: "prefer_not_to_say";
3875
- basic: "basic";
3876
3875
  none: "none";
3877
3876
  comprehensive: "comprehensive";
3877
+ basic: "basic";
3878
3878
  employer: "employer";
3879
3879
  }>>>;
3880
3880
  citizenship: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
@@ -3948,17 +3948,17 @@ export declare const updateProfileSchema: z.ZodObject<{
3948
3948
  prefer_not_to_say: "prefer_not_to_say";
3949
3949
  none: "none";
3950
3950
  multiple: "multiple";
3951
+ cognitive: "cognitive";
3951
3952
  physical: "physical";
3952
3953
  visual: "visual";
3953
3954
  hearing: "hearing";
3954
- cognitive: "cognitive";
3955
3955
  chronic_condition: "chronic_condition";
3956
3956
  }>>>;
3957
3957
  chronicCondition: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
3958
3958
  prefer_not_to_say: "prefer_not_to_say";
3959
- none: "none";
3960
3959
  other: "other";
3961
3960
  mental_health: "mental_health";
3961
+ none: "none";
3962
3962
  multiple: "multiple";
3963
3963
  diabetes: "diabetes";
3964
3964
  hypertension: "hypertension";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dating-schema",
3
- "version": "0.7.0",
3
+ "version": "0.9.0",
4
4
  "description": "Shared Zod schemas for the Dating feature — single source of truth for API contracts, validation, and TypeScript types (frontend + backend).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",