@superbright/indexeddb-orm 1.0.59 → 1.0.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/api.generated.d.ts +1009 -30
- package/dist/api/embed-schemas.generated.cjs +1 -1
- package/dist/api/embed-schemas.generated.cjs.map +1 -1
- package/dist/api/embed-schemas.generated.d.ts +48 -48
- package/dist/api/embed-schemas.generated.mjs +30 -30
- package/dist/api/embed-schemas.generated.mjs.map +1 -1
- package/dist/api/schemas.generated.cjs +1 -1
- package/dist/api/schemas.generated.cjs.map +1 -1
- package/dist/api/schemas.generated.d.ts +3423 -60
- package/dist/api/schemas.generated.mjs +324 -207
- package/dist/api/schemas.generated.mjs.map +1 -1
- package/dist/features/analytics/analytics.d.ts +20 -20
- package/dist/schema.d.ts +2 -2
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.mjs +79 -57
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.generated.mjs","sources":["../../src/api/schemas.generated.ts"],"sourcesContent":["/**\n * This file was auto-generated from openapi.json.\n * Do not edit manually — run `node scripts/gen-schemas.mjs` to regenerate.\n */\n\nimport { z } from 'zod';\n\nexport const LeadActivitySchema = z.object({\n type: z.enum([\"contact\", \"share\", \"subscribe\"]),\n date: z.string(),\n unit_id: z.number().optional(),\n unit_name: z.string().optional(),\n unit_slug: z.string().optional(),\n });\nexport type LeadActivity = z.infer<typeof LeadActivitySchema>;\n\nexport const LeadSchema = z.object({\n user_id: z.number(),\n email: z.string(),\n latest_activity: LeadActivitySchema,\n visitor_filter: z.array(z.string()),\n });\nexport type Lead = z.infer<typeof LeadSchema>;\n\nexport const PaginationSchema = z.object({\n total_records: z.number(),\n total_pages: z.number(),\n current_page: z.number(),\n per_page: z.number(),\n });\nexport type Pagination = z.infer<typeof PaginationSchema>;\n\nexport const LeadsListResponseSchema = z.object({\n data: z.object({\n data: z.array(LeadSchema),\n page: PaginationSchema,\n }),\n });\nexport type LeadsListResponse = z.infer<typeof LeadsListResponseSchema>;\n\nexport const LeadActivityItemSchema = z.object({\n type: z.enum([\"contact\", \"share\", \"subscribe\"]),\n date: z.string(),\n unit_id: z.number().optional(),\n unit_name: z.string().optional(),\n unit_slug: z.string().optional(),\n });\nexport type LeadActivityItem = z.infer<typeof LeadActivityItemSchema>;\n\nexport const LeadActivitiesResponseSchema = z.object({\n data: z.object({\n data: z.array(LeadActivityItemSchema),\n page: PaginationSchema,\n }),\n });\nexport type LeadActivitiesResponse = z.infer<typeof LeadActivitiesResponseSchema>;\n\nexport const LeadDetailsResponseSchema = z.object({\n data: z.object({\n availability: z.array(z.string()),\n bedrooms: z.array(z.string()),\n budget: z.array(z.string()),\n preferences: z.array(z.string()),\n most_recent_contact: z.object({\n date: z.string(),\n }),\n favorite_units: z.array(z.object({\n id: z.number(),\n slug: z.string(),\n name: z.string(),\n })),\n }),\n });\nexport type LeadDetailsResponse = z.infer<typeof LeadDetailsResponseSchema>;\n\nexport const ErrorSchema = z.object({\n code: z.number().optional(),\n message: z.string().optional(),\n });\nexport type Error = z.infer<typeof ErrorSchema>;\n\nexport const ErrorUnprocessableEntitySchema = z.object({\n error: z.object({\n message: z.string().optional(),\n }).optional(),\n });\nexport type ErrorUnprocessableEntity = z.infer<typeof ErrorUnprocessableEntitySchema>;\n\nexport const UploadUrlSchema = z.object({\n upload_url: z.string(),\n upload_file_key: z.string(),\n });\nexport type UploadUrl = z.infer<typeof UploadUrlSchema>;\n\nexport const UserSchema = z.object({\n id: z.number().optional(),\n email: z.string().optional(),\n first_name: z.string().optional(),\n last_name: z.string().optional(),\n role: z.enum([\"USER\", \"ADMIN\"]).optional(),\n });\nexport type User = z.infer<typeof UserSchema>;\n\nexport const MediaDataSchema = z.object({\n CFURL: z.string(),\n name: z.string(),\n signature: z.string(),\n });\nexport type MediaData = z.infer<typeof MediaDataSchema>;\n\nexport const MediaSchema = z.object({\n id: z.number().optional(),\n url: z.string().optional(),\n media_type: z.enum([\"image\", \"video\"]).optional(),\n data: MediaDataSchema.optional(),\n });\nexport type Media = z.infer<typeof MediaSchema>;\n\nexport const StyleSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n description: z.string().optional(),\n thumbnail: MediaSchema.optional(),\n });\nexport type Style = z.infer<typeof StyleSchema>;\n\nexport const RoomSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n order: z.number().optional(),\n cameras: z.number().optional(),\n floor_plan_id: z.number().optional(),\n });\nexport type Room = z.infer<typeof RoomSchema>;\n\nexport const FloorplanStylesSchema = z.object({\n id: z.number().optional(),\n floor_plan_id: z.number().optional(),\n style_id: z.number().optional(),\n style: StyleSchema.optional(),\n status: z.enum([\"UN_RENDERED\", \"RENDERING\", \"RENDERED\", \"FAILED\"]).optional(),\n });\nexport type FloorplanStyles = z.infer<typeof FloorplanStylesSchema>;\n\nexport const FloorPlanSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n description: z.string().optional(),\n blender_version: z.string().optional(),\n inresi_version: z.string().optional(),\n blender_file: MediaSchema.optional(),\n customer: UserSchema.optional(),\n rooms: z.array(RoomSchema).optional(),\n styles: z.array(FloorplanStylesSchema).optional(),\n });\nexport type FloorPlan = z.infer<typeof FloorPlanSchema>;\n\nexport const PropertySchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n description: z.string().optional(),\n slug: z.string().optional(),\n contact_name: z.string().optional(),\n contact_email: z.string().optional(),\n contact_phone: z.string().optional(),\n notification_email: z.string().optional(),\n address_street: z.string().optional(),\n address_city: z.string().optional(),\n address_state: z.string().optional(),\n address_zip: z.string().optional(),\n address_country: z.string().optional(),\n external_property_id: z.string().optional(),\n logo: MediaSchema.optional(),\n lead_media: MediaSchema.optional(),\n lead_video: MediaSchema.optional(),\n floor_plan_id: z.number().optional(),\n });\nexport type Property = z.infer<typeof PropertySchema>;\n\nexport const UnitAmenitySchema = z.object({\n id: z.number().optional(),\n title: z.string().optional(),\n unit_id: z.number().optional(),\n });\nexport type UnitAmenity = z.infer<typeof UnitAmenitySchema>;\n\nexport const RenderedStyleSchema = z.object({\n id: z.number().optional(),\n floor_plan_data: MediaSchema.optional(),\n floor_plan_extents_data: MediaSchema.optional(),\n floor_plan_image_data: MediaSchema.optional(),\n colorful_floor_plan_image: MediaSchema.optional(),\n renders: MediaSchema.optional(),\n unit_id: z.number().optional(),\n floor_plan_id: z.number().optional(),\n style_id: z.number().optional(),\n style: StyleSchema.optional(),\n visible_on_website: z.boolean().optional(),\n still_renders: z.array(MediaSchema).optional(),\n });\nexport type RenderedStyle = z.infer<typeof RenderedStyleSchema>;\n\nexport const UnitSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n slug: z.string().optional(),\n date_availability: z.string().optional(),\n qty_bedrooms: z.number().optional(),\n qty_bathrooms: z.number().optional(),\n base_price: z.number().optional(),\n dim_sq_ft: z.number().optional(),\n is_available: z.boolean().optional(),\n property_id: z.number().optional(),\n floor_plan_id: z.number().optional(),\n amenities: z.array(UnitAmenitySchema).optional(),\n rendered_style: z.array(RenderedStyleSchema).optional(),\n video: MediaSchema.optional(),\n video_thumbnail: MediaSchema.optional(),\n embed_gif: MediaSchema.optional(),\n thumbnail: MediaSchema.optional(),\n });\nexport type Unit = z.infer<typeof UnitSchema>;\n\nexport const UnitRenderedStyleSchema = z.object({\n id: z.number().optional(),\n unit_id: z.number().optional(),\n visible_on_website: z.boolean().optional(),\n unit: UnitSchema.optional(),\n rendered_style_id: z.number().optional(),\n rendered_style: RenderedStyleSchema.optional(),\n still_renders: z.array(MediaSchema).optional(),\n });\nexport type UnitRenderedStyle = z.infer<typeof UnitRenderedStyleSchema>;\n\nexport const FurnitureSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n category: z.string().optional(),\n width: z.string().optional(),\n depth: z.string().optional(),\n height: z.string().optional(),\n availability: z.enum([\"IN_STOCK\", \"OUT_OF_STOCK\"]).optional(),\n price: z.string().optional(),\n currency: z.enum([\"USD\", \"EUR\"]).optional(),\n brand_name: z.string().optional(),\n store_name: z.string().optional(),\n media: MediaSchema.optional(),\n styles: z.array(StyleSchema).optional(),\n });\nexport type Furniture = z.infer<typeof FurnitureSchema>;\n\nexport const FurnitureInRoomsSchema = z.object({\n id: z.number().optional(),\n floor_plan_id: z.number().optional(),\n room_id: z.number().optional(),\n furniture_id: z.number().optional(),\n furniture: FurnitureSchema.optional(),\n style_id: z.number().optional(),\n style: StyleSchema.optional(),\n });\nexport type FurnitureInRooms = z.infer<typeof FurnitureInRoomsSchema>;\n\nexport const PropertyAmenitySchema = z.object({\n id: z.number(),\n title: z.string(),\n property_id: z.number(),\n });\nexport type PropertyAmenity = z.infer<typeof PropertyAmenitySchema>;\n\nexport const PropertyHighlightSchema = z.object({\n id: z.number(),\n title: z.string(),\n property_id: z.number(),\n });\nexport type PropertyHighlight = z.infer<typeof PropertyHighlightSchema>;\n\nexport const ExternalServicesSchema = z.object({\n id: z.number(),\n type: z.string(),\n property_id: z.number(),\n created_at: z.string(),\n is_active: z.boolean(),\n parameters: z.string().optional(),\n config: z.record(z.string(), z.unknown()).optional(),\n });\nexport type ExternalServices = z.infer<typeof ExternalServicesSchema>;\n\nexport const RenderJobSchema = z.object({\n id: z.number(),\n queue_id: z.number(),\n floor_plan_id: z.number(),\n style_id: z.number(),\n status: z.string(),\n started_by_user_id: z.number().optional(),\n started_by_user_email: z.string().optional(),\n version: z.number().optional(),\n tests_passed: z.boolean().optional(),\n created_at: z.string(),\n updated_at: z.string(),\n started_at: z.string().optional(),\n finished_at: z.string().optional(),\n data: z.record(z.string(), z.unknown()).optional(),\n logs_file_id: z.number().optional(),\n });\nexport type RenderJob = z.infer<typeof RenderJobSchema>;\n\nexport const QueueJobSchema = z.object({\n id: z.number(),\n queue_ad: z.number(),\n parent_id: z.number(),\n status: z.string(),\n started_by_user_id: z.number().optional(),\n started_by_user_email: z.string().optional(),\n created_at: z.string(),\n updated_at: z.string(),\n started_at: z.string().optional(),\n finished_at: z.string().optional(),\n data: z.record(z.string(), z.unknown()).optional(),\n logs_file_id: z.number().optional(),\n });\nexport type QueueJob = z.infer<typeof QueueJobSchema>;\n\nexport const UserWebhookSchema = z.object({\n id: z.number(),\n account_id: z.number(),\n name: z.string(),\n url: z.string(),\n secret: z.string(),\n is_active: z.boolean(),\n created_at: z.string(),\n updated_at: z.string(),\n });\nexport type UserWebhook = z.infer<typeof UserWebhookSchema>;\n\nexport const OverviewImageSchema = z.object({\n media_id: z.number().optional(),\n property_id: z.number().optional(),\n media: MediaSchema.optional(),\n });\nexport type OverviewImage = z.infer<typeof OverviewImageSchema>;\n\nexport const ExternalServiceSnippetConfigSchema = z.object({\n code: z.string().optional(),\n placement: z.string(),\n description: z.string().optional(),\n tag: z.string(),\n props: z.object({\n src: z.string(),\n }).optional(),\n });\nexport type ExternalServiceSnippetConfig = z.infer<typeof ExternalServiceSnippetConfigSchema>;\n\nexport const ExternalServiceConfigSchema = z.object({\n type: z.string(),\n code: z.string().optional(),\n snippets: z.array(ExternalServiceSnippetConfigSchema).optional(),\n additional_data: z.record(z.string(), z.unknown()).optional(),\n });\nexport type ExternalServiceConfig = z.infer<typeof ExternalServiceConfigSchema>;\n\nexport const PropertyResponseDataSchema = z.object({\n id: z.number(),\n created_at: z.string(),\n updated_at: z.string(),\n name: z.string(),\n slug: z.string().optional(),\n description: z.string(),\n contact_name: z.string().optional(),\n contact_email: z.string(),\n contact_phone: z.string().optional(),\n notification_email: z.string().optional(),\n address_street: z.string(),\n address_city: z.string(),\n address_state: z.string().optional(),\n address_zip: z.string(),\n address_country: z.string(),\n status: z.enum([\"archived\", \"active\"]),\n user_id: z.number(),\n lead_media: MediaSchema.optional(),\n overview_images: z.array(OverviewImageSchema).optional(),\n _count: z.object({\n units: z.number(),\n }).optional(),\n lead_video: MediaSchema.optional(),\n external_services: z.array(ExternalServiceConfigSchema).optional(),\n });\nexport type PropertyResponseData = z.infer<typeof PropertyResponseDataSchema>;\n\nexport const PropertyResponseSchema = z.object({\n data: PropertyResponseDataSchema,\n });\nexport type PropertyResponse = z.infer<typeof PropertyResponseSchema>;\n\nexport const LinkedPropertySchema = z.object({\n id: z.number(),\n name: z.string(),\n });\nexport type LinkedProperty = z.infer<typeof LinkedPropertySchema>;\n\nexport const LinkedPropertiesResponseSchema = z.object({\n data: z.array(LinkedPropertySchema),\n });\nexport type LinkedPropertiesResponse = z.infer<typeof LinkedPropertiesResponseSchema>;\n\nexport const ImageSchema = z.object({\n CFURL: z.string().optional(),\n name: z.string().optional(),\n });\nexport type Image = z.infer<typeof ImageSchema>;\n\nexport const UnitSourceSchema = z.object({\n id: z.number(),\n name: z.string(),\n slug: z.string().optional(),\n base_price: z.number(),\n qty_bedrooms: z.number(),\n qty_bathrooms: z.number(),\n amenities: z.array(z.string()).optional(),\n highlights: z.array(z.string()).optional(),\n additional_images: z.array(ImageSchema).optional(),\n image: ImageSchema.optional(),\n is_favorite: z.boolean().optional(),\n seen_on: z.string().optional(),\n variant: z.number().optional(),\n });\nexport type UnitSource = z.infer<typeof UnitSourceSchema>;\n\nexport const UnitsByIdsResponseSchema = z.object({\n data: z.object({\n total: z.object({\n value: z.number(),\n relation: z.string(),\n }),\n max_score: z.number(),\n hits: z.array(z.object({\n _source: UnitSourceSchema,\n })),\n }),\n });\nexport type UnitsByIdsResponse = z.infer<typeof UnitsByIdsResponseSchema>;\n\nexport const BootstrapDataSchema = z.object({\n favorite_unit_ids: z.array(z.number()),\n current_filter: z.object({\n id: z.number(),\n filter: z.record(z.string(), z.unknown()).optional(),\n created_at: z.string(),\n }),\n contacted_property_at: z.string(),\n questionnaire: z.record(z.string(), z.unknown()).optional(),\n });\nexport type BootstrapData = z.infer<typeof BootstrapDataSchema>;\n\nexport const BootstrapResponseSchema = z.object({\n data: BootstrapDataSchema,\n });\nexport type BootstrapResponse = z.infer<typeof BootstrapResponseSchema>;\n\nexport const ContactBuildingPayloadSchema = z.object({\n name: z.string(),\n email: z.string(),\n date_time: z.string(),\n timezone: z.string(),\n visitor_uuid: z.string().optional(),\n });\nexport type ContactBuildingPayload = z.infer<typeof ContactBuildingPayloadSchema>;\n\nexport const ContactBuildingResponseSchema = z.object({\n message: z.string(),\n });\nexport type ContactBuildingResponse = z.infer<typeof ContactBuildingResponseSchema>;\n\nexport const EngagementTypeSchema = z.enum([\"FAVORITE\", \"SEEN\"]);\nexport type EngagementType = z.infer<typeof EngagementTypeSchema>;\n\nexport const EngagementResponseSchema = z.object({\n data: z.object({\n action: z.string(),\n unit_id: z.number(),\n }),\n });\nexport type EngagementResponse = z.infer<typeof EngagementResponseSchema>;\n\nexport const AvailabilityOptionSchema = z.object({\n label: z.string(),\n value: z.string(),\n frequency: z.number(),\n });\nexport type AvailabilityOption = z.infer<typeof AvailabilityOptionSchema>;\n\nexport const BedroomsOptionSchema = z.object({\n label: z.string(),\n value: z.number(),\n frequency: z.number(),\n });\nexport type BedroomsOption = z.infer<typeof BedroomsOptionSchema>;\n\nexport const BasePriceOptionSchema = z.object({\n min: z.number(),\n max: z.number(),\n frequency: z.number(),\n });\nexport type BasePriceOption = z.infer<typeof BasePriceOptionSchema>;\n\nexport const AvailabilityFilterSchema = z.object({\n name: z.string(),\n component: z.string(),\n label: z.string(),\n body_key: z.string(),\n options: z.array(AvailabilityOptionSchema),\n });\nexport type AvailabilityFilter = z.infer<typeof AvailabilityFilterSchema>;\n\nexport const BedroomsFilterSchema = z.object({\n name: z.string(),\n component: z.string(),\n label: z.string(),\n body_key: z.string(),\n options: z.array(BedroomsOptionSchema),\n });\nexport type BedroomsFilter = z.infer<typeof BedroomsFilterSchema>;\n\nexport const BasePriceFilterSchema = z.object({\n name: z.string(),\n component: z.string(),\n label: z.string(),\n body_key: z.string(),\n options: z.array(BasePriceOptionSchema),\n });\nexport type BasePriceFilter = z.infer<typeof BasePriceFilterSchema>;\n\nexport const QuestionnaireOptionSchema = z.object({\n label: z.string(),\n value: z.union([z.string(), z.number(), z.array(z.string())]),\n frequency: z.number(),\n key: z.string().optional(),\n });\nexport type QuestionnaireOption = z.infer<typeof QuestionnaireOptionSchema>;\n\nexport const QuestionnaireSchema = z.object({\n name: z.string(),\n label: z.string(),\n body_key: z.string(),\n options: z.array(QuestionnaireOptionSchema),\n component: z.string().optional(),\n helper_text: z.string().optional(),\n options_variant: z.string().optional(),\n min: z.number().optional(),\n max: z.number().optional(),\n });\nexport type Questionnaire = z.infer<typeof QuestionnaireSchema>;\n\nexport const FiltersResponseDataSchema = z.object({\n questionnaire: z.array(QuestionnaireSchema),\n filters: z.object({\n date_availability: AvailabilityFilterSchema,\n qty_bedrooms: BedroomsFilterSchema,\n base_price: BasePriceFilterSchema,\n highlights: z.record(z.string(), z.unknown()).optional(),\n }),\n });\nexport type FiltersResponseData = z.infer<typeof FiltersResponseDataSchema>;\n\nexport const FiltersResponseSchema = z.object({\n data: FiltersResponseDataSchema,\n });\nexport type FiltersResponse = z.infer<typeof FiltersResponseSchema>;\n\nexport const QuestionnairePayloadSchema = z.object({\n visitor_uuid: z.string(),\n data: z.record(z.string(), z.unknown()).optional(),\n });\nexport type QuestionnairePayload = z.infer<typeof QuestionnairePayloadSchema>;\n\nexport const QuestionnaireResponseSchema = z.object({\n data: z.object({\n questionnaire: z.object({\n id: z.number(),\n visitor_id: z.string(),\n property_id: z.number(),\n data: z.record(z.string(), z.unknown()).optional(),\n created_at: z.string(),\n }),\n }),\n });\nexport type QuestionnaireResponse = z.infer<typeof QuestionnaireResponseSchema>;\n\nexport const SaveFiltersPayloadSchema = z.object({\n visitor_uuid: z.string(),\n filter: z.record(z.string(), z.unknown()).optional(),\n });\nexport type SaveFiltersPayload = z.infer<typeof SaveFiltersPayloadSchema>;\n\nexport const SaveFiltersResponseSchema = z.object({\n data: z.object({\n filter_id: z.number(),\n }),\n });\nexport type SaveFiltersResponse = z.infer<typeof SaveFiltersResponseSchema>;\n"],"names":["LeadActivitySchema","z.object","z.enum","z.string","z.number","LeadSchema","z.array","PaginationSchema","LeadsListResponseSchema","LeadActivityItemSchema","LeadActivitiesResponseSchema","LeadDetailsResponseSchema","ErrorSchema","ErrorUnprocessableEntitySchema","UploadUrlSchema","UserSchema","MediaDataSchema","MediaSchema","StyleSchema","RoomSchema","FloorplanStylesSchema","FloorPlanSchema","PropertySchema","UnitAmenitySchema","RenderedStyleSchema","z.boolean","UnitSchema","UnitRenderedStyleSchema","FurnitureSchema","FurnitureInRoomsSchema","PropertyAmenitySchema","PropertyHighlightSchema","ExternalServicesSchema","z.record","z.unknown","RenderJobSchema","QueueJobSchema","UserWebhookSchema","OverviewImageSchema","ExternalServiceSnippetConfigSchema","ExternalServiceConfigSchema","PropertyResponseDataSchema","PropertyResponseSchema","LinkedPropertySchema","LinkedPropertiesResponseSchema","ImageSchema","UnitSourceSchema","UnitsByIdsResponseSchema","BootstrapDataSchema","BootstrapResponseSchema","ContactBuildingPayloadSchema","ContactBuildingResponseSchema","EngagementTypeSchema","EngagementResponseSchema","AvailabilityOptionSchema","BedroomsOptionSchema","BasePriceOptionSchema","AvailabilityFilterSchema","BedroomsFilterSchema","BasePriceFilterSchema","QuestionnaireOptionSchema","z.union","QuestionnaireSchema","FiltersResponseDataSchema","FiltersResponseSchema","QuestionnairePayloadSchema","QuestionnaireResponseSchema","SaveFiltersPayloadSchema","SaveFiltersResponseSchema"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"schemas.generated.mjs","sources":["../../src/api/schemas.generated.ts"],"sourcesContent":["/**\n * This file was auto-generated from openapi.json.\n * Do not edit manually — run `node scripts/gen-schemas.mjs` to regenerate.\n */\n\nimport { z } from 'zod';\n\nexport const LeadActivitySchema = z.object({\n type: z.enum([\"contact\", \"share\", \"subscribe\"]),\n date: z.string(),\n unit_id: z.number().optional(),\n unit_name: z.string().optional(),\n unit_slug: z.string().optional(),\n });\nexport type LeadActivity = z.infer<typeof LeadActivitySchema>;\n\nexport const LeadSchema = z.object({\n user_id: z.number(),\n email: z.string(),\n latest_activity: LeadActivitySchema,\n visitor_filter: z.array(z.string()),\n });\nexport type Lead = z.infer<typeof LeadSchema>;\n\nexport const PaginationSchema = z.object({\n total_records: z.number(),\n total_pages: z.number(),\n current_page: z.number(),\n per_page: z.number(),\n });\nexport type Pagination = z.infer<typeof PaginationSchema>;\n\nexport const LeadsListResponseSchema = z.object({\n data: z.object({\n data: z.array(LeadSchema),\n page: PaginationSchema,\n }),\n });\nexport type LeadsListResponse = z.infer<typeof LeadsListResponseSchema>;\n\nexport const LeadActivityItemSchema = z.object({\n type: z.enum([\"contact\", \"share\", \"subscribe\"]),\n date: z.string(),\n unit_id: z.number().optional(),\n unit_name: z.string().optional(),\n unit_slug: z.string().optional(),\n });\nexport type LeadActivityItem = z.infer<typeof LeadActivityItemSchema>;\n\nexport const LeadActivitiesResponseSchema = z.object({\n data: z.object({\n data: z.array(LeadActivityItemSchema),\n page: PaginationSchema,\n }),\n });\nexport type LeadActivitiesResponse = z.infer<typeof LeadActivitiesResponseSchema>;\n\nexport const LeadDetailsResponseSchema = z.object({\n data: z.object({\n availability: z.array(z.string()),\n bedrooms: z.array(z.string()),\n budget: z.array(z.string()),\n preferences: z.array(z.string()),\n most_recent_contact: z.object({\n date: z.string(),\n }),\n favorite_units: z.array(z.object({\n id: z.number(),\n slug: z.string(),\n name: z.string(),\n })),\n }),\n });\nexport type LeadDetailsResponse = z.infer<typeof LeadDetailsResponseSchema>;\n\nexport const ErrorSchema = z.object({\n code: z.number().optional(),\n message: z.string().optional(),\n });\nexport type Error = z.infer<typeof ErrorSchema>;\n\nexport const ErrorUnprocessableEntitySchema = z.object({\n error: z.object({\n message: z.string().optional(),\n }).optional(),\n });\nexport type ErrorUnprocessableEntity = z.infer<typeof ErrorUnprocessableEntitySchema>;\n\nexport const UploadUrlSchema = z.object({\n upload_url: z.string(),\n upload_file_key: z.string(),\n });\nexport type UploadUrl = z.infer<typeof UploadUrlSchema>;\n\nexport const UserSchema = z.object({\n id: z.number().optional(),\n email: z.string().optional(),\n first_name: z.string().optional(),\n last_name: z.string().optional(),\n role: z.enum([\"USER\", \"ADMIN\"]).optional(),\n });\nexport type User = z.infer<typeof UserSchema>;\n\nexport const MediaDataSchema = z.object({\n CFURL: z.string(),\n name: z.string(),\n signature: z.string(),\n });\nexport type MediaData = z.infer<typeof MediaDataSchema>;\n\nexport const MediaSchema = z.object({\n id: z.number().optional(),\n url: z.string().optional(),\n media_type: z.enum([\"image\", \"video\"]).optional(),\n data: MediaDataSchema.optional(),\n });\nexport type Media = z.infer<typeof MediaSchema>;\n\nexport const StyleSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n description: z.string().optional(),\n thumbnail: MediaSchema.optional(),\n });\nexport type Style = z.infer<typeof StyleSchema>;\n\nexport const RoomSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n order: z.number().optional(),\n cameras: z.number().optional(),\n floor_plan_id: z.number().optional(),\n });\nexport type Room = z.infer<typeof RoomSchema>;\n\nexport const FloorplanStylesSchema = z.object({\n id: z.number().optional(),\n floor_plan_id: z.number().optional(),\n style_id: z.number().optional(),\n style: StyleSchema.optional(),\n status: z.enum([\"UN_RENDERED\", \"IN_QUEUE\", \"RENDERING\", \"RENDERED\", \"FAILED\"]).optional(),\n });\nexport type FloorplanStyles = z.infer<typeof FloorplanStylesSchema>;\n\nexport const FloorPlanSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n description: z.string().optional(),\n blender_version: z.string().optional(),\n inresi_version: z.string().optional(),\n blender_file: MediaSchema.optional(),\n customer: UserSchema.optional(),\n rooms: z.array(RoomSchema).optional(),\n styles: z.array(FloorplanStylesSchema).optional(),\n });\nexport type FloorPlan = z.infer<typeof FloorPlanSchema>;\n\nexport const PropertySchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n description: z.string().optional(),\n slug: z.string().optional(),\n contact_name: z.string().optional(),\n contact_email: z.string().optional(),\n contact_phone: z.string().optional(),\n notification_email: z.string().optional(),\n address_street: z.string().optional(),\n address_city: z.string().optional(),\n address_state: z.string().optional(),\n address_zip: z.string().optional(),\n address_country: z.string().optional(),\n external_property_id: z.string().optional(),\n logo: MediaSchema.optional(),\n lead_media: MediaSchema.optional(),\n lead_video: MediaSchema.optional(),\n floor_plan_id: z.number().optional(),\n });\nexport type Property = z.infer<typeof PropertySchema>;\n\nexport const UnitAmenitySchema = z.object({\n id: z.number().optional(),\n title: z.string().optional(),\n unit_id: z.number().optional(),\n });\nexport type UnitAmenity = z.infer<typeof UnitAmenitySchema>;\n\nexport const RenderedStyleSchema = z.object({\n id: z.number().optional(),\n floor_plan_data: MediaSchema.optional(),\n floor_plan_extents_data: MediaSchema.optional(),\n floor_plan_image_data: MediaSchema.optional(),\n colorful_floor_plan_image: MediaSchema.optional(),\n renders: MediaSchema.optional(),\n unit_id: z.number().optional(),\n floor_plan_id: z.number().optional(),\n style_id: z.number().optional(),\n style: StyleSchema.optional(),\n visible_on_website: z.boolean().optional(),\n still_renders: z.array(MediaSchema).optional(),\n });\nexport type RenderedStyle = z.infer<typeof RenderedStyleSchema>;\n\nexport const UnitSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n slug: z.string().optional(),\n date_availability: z.string().optional(),\n qty_bedrooms: z.number().optional(),\n qty_bathrooms: z.number().optional(),\n base_price: z.number().optional(),\n dim_sq_ft: z.number().optional(),\n is_available: z.boolean().optional(),\n property_id: z.number().optional(),\n floor_plan_id: z.number().optional(),\n amenities: z.array(UnitAmenitySchema).optional(),\n rendered_style: z.array(RenderedStyleSchema).optional(),\n video: MediaSchema.optional(),\n video_thumbnail: MediaSchema.optional(),\n embed_gif: MediaSchema.optional(),\n thumbnail: MediaSchema.optional(),\n });\nexport type Unit = z.infer<typeof UnitSchema>;\n\nexport const UnitRenderedStyleSchema = z.object({\n id: z.number().optional(),\n unit_id: z.number().optional(),\n visible_on_website: z.boolean().optional(),\n unit: UnitSchema.optional(),\n rendered_style_id: z.number().optional(),\n rendered_style: RenderedStyleSchema.optional(),\n still_renders: z.array(MediaSchema).optional(),\n });\nexport type UnitRenderedStyle = z.infer<typeof UnitRenderedStyleSchema>;\n\nexport const FurnitureSchema = z.object({\n id: z.number().optional(),\n name: z.string().optional(),\n category: z.string().optional(),\n width: z.number().optional(),\n depth: z.number().optional(),\n height: z.number().optional(),\n availability: z.enum([\"IN_STOCK\", \"OUT_OF_STOCK\", \"SOLD_OUT\", \"WAIT_LIST\"]).optional(),\n price: z.string().optional(),\n currency: z.enum([\"USD\", \"EUR\", \"GBP\"]).optional(),\n brand_name: z.string().optional(),\n store_name: z.string().optional(),\n media: MediaSchema.optional(),\n styles: z.array(StyleSchema).optional(),\n });\nexport type Furniture = z.infer<typeof FurnitureSchema>;\n\nexport const FurnitureInRoomsSchema = z.object({\n id: z.number().optional(),\n floor_plan_id: z.number().optional(),\n room_id: z.number().optional(),\n furniture_id: z.number().optional(),\n furniture: FurnitureSchema.optional(),\n style_id: z.number().optional(),\n style: StyleSchema.optional(),\n });\nexport type FurnitureInRooms = z.infer<typeof FurnitureInRoomsSchema>;\n\nexport const PropertyAmenitySchema = z.object({\n id: z.number(),\n title: z.string(),\n property_id: z.number(),\n });\nexport type PropertyAmenity = z.infer<typeof PropertyAmenitySchema>;\n\nexport const PropertyHighlightSchema = z.object({\n id: z.number(),\n title: z.string(),\n property_id: z.number(),\n });\nexport type PropertyHighlight = z.infer<typeof PropertyHighlightSchema>;\n\nexport const ExternalServicesSchema = z.object({\n id: z.number(),\n type: z.string(),\n property_id: z.number(),\n created_at: z.string(),\n is_active: z.boolean(),\n parameters: z.string().optional(),\n config: z.record(z.string(), z.unknown()).optional(),\n });\nexport type ExternalServices = z.infer<typeof ExternalServicesSchema>;\n\nexport const RenderJobSchema = z.object({\n id: z.number(),\n queue_id: z.number(),\n floor_plan_id: z.number(),\n style_id: z.number(),\n status: z.string(),\n started_by_user_id: z.number().optional(),\n started_by_user_email: z.string().optional(),\n version: z.number().optional(),\n tests_passed: z.boolean().optional(),\n created_at: z.string(),\n updated_at: z.string(),\n started_at: z.string().optional(),\n finished_at: z.string().optional(),\n data: z.record(z.string(), z.unknown()).optional(),\n logs_file_id: z.number().optional(),\n });\nexport type RenderJob = z.infer<typeof RenderJobSchema>;\n\nexport const QueueJobSchema = z.object({\n id: z.number(),\n queue_ad: z.number(),\n parent_id: z.number(),\n status: z.string(),\n started_by_user_id: z.number().optional(),\n started_by_user_email: z.string().optional(),\n created_at: z.string(),\n updated_at: z.string(),\n started_at: z.string().optional(),\n finished_at: z.string().optional(),\n data: z.record(z.string(), z.unknown()).optional(),\n logs_file_id: z.number().optional(),\n });\nexport type QueueJob = z.infer<typeof QueueJobSchema>;\n\nexport const UserWebhookSchema = z.object({\n id: z.number(),\n account_id: z.number(),\n name: z.string(),\n url: z.string(),\n secret: z.string(),\n is_active: z.boolean(),\n created_at: z.string(),\n updated_at: z.string(),\n });\nexport type UserWebhook = z.infer<typeof UserWebhookSchema>;\n\nexport const OverviewImageSchema = z.object({\n media_id: z.number().optional(),\n property_id: z.number().optional(),\n media: MediaSchema.optional(),\n });\nexport type OverviewImage = z.infer<typeof OverviewImageSchema>;\n\nexport const ExternalServiceSnippetConfigSchema = z.object({\n code: z.string().optional(),\n placement: z.string(),\n description: z.string().optional(),\n tag: z.string(),\n props: z.object({\n src: z.string(),\n }).optional(),\n });\nexport type ExternalServiceSnippetConfig = z.infer<typeof ExternalServiceSnippetConfigSchema>;\n\nexport const ExternalServiceConfigSchema = z.object({\n type: z.string(),\n code: z.string().optional(),\n snippets: z.array(ExternalServiceSnippetConfigSchema).optional(),\n additional_data: z.record(z.string(), z.unknown()).optional(),\n });\nexport type ExternalServiceConfig = z.infer<typeof ExternalServiceConfigSchema>;\n\nexport const ThemeConfigSchema = z.object({\n heading_size: z.number(),\n subheading_size: z.number(),\n body_size: z.number(),\n small_body_size: z.number(),\n color_bg: z.string(),\n color_text: z.string(),\n color_text_muted: z.string(),\n color_primary_btn_bg: z.string(),\n color_primary_btn_text: z.string(),\n color_secondary_border: z.string(),\n color_link: z.string(),\n color_card_text: z.string(),\n radius_button: z.number(),\n radius_card: z.number(),\n });\nexport type ThemeConfig = z.infer<typeof ThemeConfigSchema>;\n\nexport const ThemeFontRoleSchema = z.enum([\"BODY\", \"HEADING\"]);\nexport type ThemeFontRole = z.infer<typeof ThemeFontRoleSchema>;\n\nexport const FontStyleSchema = z.enum([\"NORMAL\", \"ITALIC\"]);\nexport type FontStyle = z.infer<typeof FontStyleSchema>;\n\nexport const FontFormatSchema = z.enum([\"WOFF2\", \"WOFF\", \"TTF\", \"OTF\"]);\nexport type FontFormat = z.infer<typeof FontFormatSchema>;\n\nexport const UserFontSchema = z.object({\n id: z.number(),\n family: z.string(),\n weight: z.number(),\n style: FontStyleSchema,\n format: FontFormatSchema,\n is_archived: z.boolean(),\n asset_key: z.string(),\n url: z.string(),\n created_at: z.string(),\n updated_at: z.string(),\n });\nexport type UserFont = z.infer<typeof UserFontSchema>;\n\nexport const ThemeFontRefSchema = z.object({\n font_id: z.number(),\n role: ThemeFontRoleSchema,\n font: UserFontSchema,\n });\nexport type ThemeFontRef = z.infer<typeof ThemeFontRefSchema>;\n\nexport const EmbedThemeSchema = z.object({\n config: ThemeConfigSchema,\n fonts: z.array(ThemeFontRefSchema),\n version: z.number(),\n });\nexport type EmbedTheme = z.infer<typeof EmbedThemeSchema>;\n\nexport const PropertyResponseDataSchema = z.object({\n id: z.number(),\n created_at: z.string(),\n updated_at: z.string(),\n name: z.string(),\n slug: z.string().optional(),\n description: z.string(),\n contact_name: z.string().optional(),\n contact_email: z.string(),\n contact_phone: z.string().optional(),\n notification_email: z.string().optional(),\n address_street: z.string(),\n address_city: z.string(),\n address_state: z.string().optional(),\n address_zip: z.string(),\n address_country: z.string(),\n status: z.enum([\"archived\", \"active\"]),\n user_id: z.number(),\n lead_media: MediaSchema.optional(),\n overview_images: z.array(OverviewImageSchema).optional(),\n _count: z.object({\n units: z.number(),\n }).optional(),\n lead_video: MediaSchema.optional(),\n external_services: z.array(ExternalServiceConfigSchema).optional(),\n theme: EmbedThemeSchema.optional(),\n });\nexport type PropertyResponseData = z.infer<typeof PropertyResponseDataSchema>;\n\nexport const PropertyResponseSchema = z.object({\n data: PropertyResponseDataSchema,\n });\nexport type PropertyResponse = z.infer<typeof PropertyResponseSchema>;\n\nexport const LinkedPropertySchema = z.object({\n id: z.number(),\n name: z.string(),\n });\nexport type LinkedProperty = z.infer<typeof LinkedPropertySchema>;\n\nexport const LinkedPropertiesResponseSchema = z.object({\n data: z.array(LinkedPropertySchema),\n });\nexport type LinkedPropertiesResponse = z.infer<typeof LinkedPropertiesResponseSchema>;\n\nexport const ImageSchema = z.object({\n CFURL: z.string().optional(),\n name: z.string().optional(),\n });\nexport type Image = z.infer<typeof ImageSchema>;\n\nexport const UnitSourceSchema = z.object({\n id: z.number(),\n name: z.string(),\n slug: z.string().optional(),\n base_price: z.number(),\n qty_bedrooms: z.number(),\n qty_bathrooms: z.number(),\n amenities: z.array(z.string()).optional(),\n highlights: z.array(z.string()).optional(),\n additional_images: z.array(ImageSchema).optional(),\n image: ImageSchema.optional(),\n is_favorite: z.boolean().optional(),\n seen_on: z.string().optional(),\n variant: z.number().optional(),\n });\nexport type UnitSource = z.infer<typeof UnitSourceSchema>;\n\nexport const UnitsByIdsResponseSchema = z.object({\n data: z.object({\n total: z.object({\n value: z.number(),\n relation: z.string(),\n }),\n max_score: z.number(),\n hits: z.array(z.object({\n _source: UnitSourceSchema,\n })),\n }),\n });\nexport type UnitsByIdsResponse = z.infer<typeof UnitsByIdsResponseSchema>;\n\nexport const BootstrapDataSchema = z.object({\n favorite_unit_ids: z.array(z.number()),\n current_filter: z.object({\n id: z.number(),\n filter: z.record(z.string(), z.unknown()).optional(),\n created_at: z.string(),\n }),\n contacted_property_at: z.string(),\n questionnaire: z.record(z.string(), z.unknown()).optional(),\n });\nexport type BootstrapData = z.infer<typeof BootstrapDataSchema>;\n\nexport const BootstrapResponseSchema = z.object({\n data: BootstrapDataSchema,\n });\nexport type BootstrapResponse = z.infer<typeof BootstrapResponseSchema>;\n\nexport const ContactBuildingPayloadSchema = z.object({\n name: z.string(),\n email: z.string(),\n date_time: z.string(),\n timezone: z.string(),\n visitor_uuid: z.string().optional(),\n });\nexport type ContactBuildingPayload = z.infer<typeof ContactBuildingPayloadSchema>;\n\nexport const ContactBuildingResponseSchema = z.object({\n message: z.string(),\n });\nexport type ContactBuildingResponse = z.infer<typeof ContactBuildingResponseSchema>;\n\nexport const EngagementTypeSchema = z.enum([\"FAVORITE\", \"SEEN\"]);\nexport type EngagementType = z.infer<typeof EngagementTypeSchema>;\n\nexport const EngagementResponseSchema = z.object({\n data: z.object({\n action: z.string(),\n unit_id: z.number(),\n }),\n });\nexport type EngagementResponse = z.infer<typeof EngagementResponseSchema>;\n\nexport const AvailabilityOptionSchema = z.object({\n label: z.string(),\n value: z.string(),\n frequency: z.number(),\n });\nexport type AvailabilityOption = z.infer<typeof AvailabilityOptionSchema>;\n\nexport const BedroomsOptionSchema = z.object({\n label: z.string(),\n value: z.number(),\n frequency: z.number(),\n });\nexport type BedroomsOption = z.infer<typeof BedroomsOptionSchema>;\n\nexport const BasePriceOptionSchema = z.object({\n min: z.number(),\n max: z.number(),\n frequency: z.number(),\n });\nexport type BasePriceOption = z.infer<typeof BasePriceOptionSchema>;\n\nexport const AvailabilityFilterSchema = z.object({\n name: z.string(),\n component: z.string(),\n label: z.string(),\n body_key: z.string(),\n options: z.array(AvailabilityOptionSchema),\n });\nexport type AvailabilityFilter = z.infer<typeof AvailabilityFilterSchema>;\n\nexport const BedroomsFilterSchema = z.object({\n name: z.string(),\n component: z.string(),\n label: z.string(),\n body_key: z.string(),\n options: z.array(BedroomsOptionSchema),\n });\nexport type BedroomsFilter = z.infer<typeof BedroomsFilterSchema>;\n\nexport const BasePriceFilterSchema = z.object({\n name: z.string(),\n component: z.string(),\n label: z.string(),\n body_key: z.string(),\n options: z.array(BasePriceOptionSchema),\n });\nexport type BasePriceFilter = z.infer<typeof BasePriceFilterSchema>;\n\nexport const QuestionnaireOptionSchema = z.object({\n label: z.string(),\n value: z.union([z.string(), z.number(), z.array(z.string())]),\n frequency: z.number(),\n key: z.string().optional(),\n });\nexport type QuestionnaireOption = z.infer<typeof QuestionnaireOptionSchema>;\n\nexport const QuestionnaireSchema = z.object({\n name: z.string(),\n label: z.string(),\n body_key: z.string(),\n options: z.array(QuestionnaireOptionSchema),\n component: z.string().optional(),\n helper_text: z.string().optional(),\n options_variant: z.string().optional(),\n min: z.number().optional(),\n max: z.number().optional(),\n });\nexport type Questionnaire = z.infer<typeof QuestionnaireSchema>;\n\nexport const FiltersResponseDataSchema = z.object({\n questionnaire: z.array(QuestionnaireSchema),\n filters: z.object({\n date_availability: AvailabilityFilterSchema,\n qty_bedrooms: BedroomsFilterSchema,\n base_price: BasePriceFilterSchema,\n highlights: z.record(z.string(), z.unknown()).optional(),\n }),\n });\nexport type FiltersResponseData = z.infer<typeof FiltersResponseDataSchema>;\n\nexport const FiltersResponseSchema = z.object({\n data: FiltersResponseDataSchema,\n });\nexport type FiltersResponse = z.infer<typeof FiltersResponseSchema>;\n\nexport const QuestionnairePayloadSchema = z.object({\n visitor_uuid: z.string(),\n data: z.record(z.string(), z.unknown()).optional(),\n });\nexport type QuestionnairePayload = z.infer<typeof QuestionnairePayloadSchema>;\n\nexport const QuestionnaireResponseSchema = z.object({\n data: z.object({\n questionnaire: z.object({\n id: z.number(),\n visitor_id: z.string(),\n property_id: z.number(),\n data: z.record(z.string(), z.unknown()).optional(),\n created_at: z.string(),\n }),\n }),\n });\nexport type QuestionnaireResponse = z.infer<typeof QuestionnaireResponseSchema>;\n\nexport const SaveFiltersPayloadSchema = z.object({\n visitor_uuid: z.string(),\n filter: z.record(z.string(), z.unknown()).optional(),\n });\nexport type SaveFiltersPayload = z.infer<typeof SaveFiltersPayloadSchema>;\n\nexport const SaveFiltersResponseSchema = z.object({\n data: z.object({\n filter_id: z.number(),\n }),\n });\nexport type SaveFiltersResponse = z.infer<typeof SaveFiltersResponseSchema>;\n\nexport const UserFontsListResponseSchema = z.object({\n data: z.array(UserFontSchema),\n });\nexport type UserFontsListResponse = z.infer<typeof UserFontsListResponseSchema>;\n\nexport const UserFontResponseSchema = z.object({\n data: UserFontSchema,\n });\nexport type UserFontResponse = z.infer<typeof UserFontResponseSchema>;\n\nexport const FontUploadUrlResponseSchema = z.object({\n data: z.object({\n upload_url: z.string(),\n asset_key: z.string(),\n }),\n });\nexport type FontUploadUrlResponse = z.infer<typeof FontUploadUrlResponseSchema>;\n\nexport const FontUsageItemSchema = z.object({\n property_id: z.number(),\n property_name: z.string(),\n theme_id: z.number(),\n version: z.number(),\n role: z.enum([\"BODY\", \"HEADING\"]),\n });\nexport type FontUsageItem = z.infer<typeof FontUsageItemSchema>;\n\nexport const FontInUseConflictResponseSchema = z.object({\n error: z.object({\n message: z.enum([\"FONT_USED_IN_PUBLISHED_VERSION\"]),\n details: z.object({\n usages: z.array(FontUsageItemSchema),\n }),\n }),\n });\nexport type FontInUseConflictResponse = z.infer<typeof FontInUseConflictResponseSchema>;\n\nexport const ThemeStatusSchema = z.enum([\"draft\", \"published\", \"archived\"]);\nexport type ThemeStatus = z.infer<typeof ThemeStatusSchema>;\n\nexport const ThemeFontAssignmentSchema = z.object({\n font_id: z.number(),\n role: ThemeFontRoleSchema,\n });\nexport type ThemeFontAssignment = z.infer<typeof ThemeFontAssignmentSchema>;\n\nexport const ThemeRowSchema = z.object({\n id: z.number(),\n property_id: z.number(),\n parent_id: z.number(),\n version: z.number(),\n status: ThemeStatusSchema,\n config: ThemeConfigSchema,\n fonts: z.array(ThemeFontRefSchema),\n message: z.string(),\n published_at: z.string(),\n created_at: z.string(),\n updated_at: z.string(),\n });\nexport type ThemeRow = z.infer<typeof ThemeRowSchema>;\n\nexport const ThemeVersionSummarySchema = z.object({\n id: z.number(),\n version: z.number(),\n status: z.enum([\"published\", \"archived\"]),\n is_published: z.boolean(),\n message: z.string(),\n published_at: z.string(),\n created_at: z.string(),\n });\nexport type ThemeVersionSummary = z.infer<typeof ThemeVersionSummarySchema>;\n\nexport const ThemeStateSchema = z.object({\n current: ThemeRowSchema,\n live: ThemeRowSchema.optional(),\n versions: z.array(ThemeVersionSummarySchema),\n });\nexport type ThemeState = z.infer<typeof ThemeStateSchema>;\n\nexport const ThemeStateResponseSchema = z.object({\n data: ThemeStateSchema,\n });\nexport type ThemeStateResponse = z.infer<typeof ThemeStateResponseSchema>;\n\nexport const ThemeRowResponseSchema = z.object({\n data: ThemeRowSchema,\n });\nexport type ThemeRowResponse = z.infer<typeof ThemeRowResponseSchema>;\n\nexport const ThemeVersionsListResponseSchema = z.object({\n data: z.array(ThemeVersionSummarySchema),\n });\nexport type ThemeVersionsListResponse = z.infer<typeof ThemeVersionsListResponseSchema>;\n\nexport const UpdateThemeDraftPayloadSchema = z.object({\n config: ThemeConfigSchema,\n fonts: z.array(ThemeFontAssignmentSchema),\n });\nexport type UpdateThemeDraftPayload = z.infer<typeof UpdateThemeDraftPayloadSchema>;\n\nexport const PublishThemePayloadSchema = z.object({\n message: z.string().optional(),\n });\nexport type PublishThemePayload = z.infer<typeof PublishThemePayloadSchema>;\n"],"names":["LeadActivitySchema","z.object","z.enum","z.string","z.number","LeadSchema","z.array","PaginationSchema","LeadsListResponseSchema","LeadActivityItemSchema","LeadActivitiesResponseSchema","LeadDetailsResponseSchema","ErrorSchema","ErrorUnprocessableEntitySchema","UploadUrlSchema","UserSchema","MediaDataSchema","MediaSchema","StyleSchema","RoomSchema","FloorplanStylesSchema","FloorPlanSchema","PropertySchema","UnitAmenitySchema","RenderedStyleSchema","z.boolean","UnitSchema","UnitRenderedStyleSchema","FurnitureSchema","FurnitureInRoomsSchema","PropertyAmenitySchema","PropertyHighlightSchema","ExternalServicesSchema","z.record","z.unknown","RenderJobSchema","QueueJobSchema","UserWebhookSchema","OverviewImageSchema","ExternalServiceSnippetConfigSchema","ExternalServiceConfigSchema","ThemeConfigSchema","ThemeFontRoleSchema","FontStyleSchema","FontFormatSchema","UserFontSchema","ThemeFontRefSchema","EmbedThemeSchema","PropertyResponseDataSchema","PropertyResponseSchema","LinkedPropertySchema","LinkedPropertiesResponseSchema","ImageSchema","UnitSourceSchema","UnitsByIdsResponseSchema","BootstrapDataSchema","BootstrapResponseSchema","ContactBuildingPayloadSchema","ContactBuildingResponseSchema","EngagementTypeSchema","EngagementResponseSchema","AvailabilityOptionSchema","BedroomsOptionSchema","BasePriceOptionSchema","AvailabilityFilterSchema","BedroomsFilterSchema","BasePriceFilterSchema","QuestionnaireOptionSchema","z.union","QuestionnaireSchema","FiltersResponseDataSchema","FiltersResponseSchema","QuestionnairePayloadSchema","QuestionnaireResponseSchema","SaveFiltersPayloadSchema","SaveFiltersResponseSchema","UserFontsListResponseSchema","UserFontResponseSchema","FontUploadUrlResponseSchema","FontUsageItemSchema","FontInUseConflictResponseSchema","ThemeStatusSchema","ThemeFontAssignmentSchema","ThemeRowSchema","ThemeVersionSummarySchema","ThemeStateSchema","ThemeStateResponseSchema","ThemeRowResponseSchema","ThemeVersionsListResponseSchema","UpdateThemeDraftPayloadSchema","PublishThemePayloadSchema"],"mappings":";AAOO,MAAMA,IAAqBC,EAAS;AAAA,EACvC,MAAMC,EAAO,CAAC,WAAW,SAAS,WAAW,CAAC;AAAA,EAC9C,MAAMC,EAAE;AAAA,EACR,SAASC,EAAE,EAAS,SAAA;AAAA,EACpB,WAAWD,EAAE,EAAS,SAAA;AAAA,EACtB,WAAWA,EAAE,EAAS,SAAA;AACxB,CAAC,GAGUE,IAAaJ,EAAS;AAAA,EAC/B,SAASG,EAAE;AAAA,EACX,OAAOD,EAAE;AAAA,EACT,iBAAiBH;AAAA,EACjB,gBAAgBM,EAAQH,GAAU;AACpC,CAAC,GAGUI,IAAmBN,EAAS;AAAA,EACrC,eAAeG,EAAE;AAAA,EACjB,aAAaA,EAAE;AAAA,EACf,cAAcA,EAAE;AAAA,EAChB,UAAUA,EAAE;AACd,CAAC,GAGUI,KAA0BP,EAAS;AAAA,EAC5C,MAAMA,EAAS;AAAA,IACf,MAAMK,EAAQD,CAAU;AAAA,IACxB,MAAME;AAAA,EAAA,CACP;AACD,CAAC,GAGUE,IAAyBR,EAAS;AAAA,EAC3C,MAAMC,EAAO,CAAC,WAAW,SAAS,WAAW,CAAC;AAAA,EAC9C,MAAMC,EAAE;AAAA,EACR,SAASC,EAAE,EAAS,SAAA;AAAA,EACpB,WAAWD,EAAE,EAAS,SAAA;AAAA,EACtB,WAAWA,EAAE,EAAS,SAAA;AACxB,CAAC,GAGUO,KAA+BT,EAAS;AAAA,EACjD,MAAMA,EAAS;AAAA,IACf,MAAMK,EAAQG,CAAsB;AAAA,IACpC,MAAMF;AAAA,EAAA,CACP;AACD,CAAC,GAGUI,KAA4BV,EAAS;AAAA,EAC9C,MAAMA,EAAS;AAAA,IACf,cAAcK,EAAQH,GAAU;AAAA,IAChC,UAAUG,EAAQH,GAAU;AAAA,IAC5B,QAAQG,EAAQH,GAAU;AAAA,IAC1B,aAAaG,EAAQH,GAAU;AAAA,IAC/B,qBAAqBF,EAAS;AAAA,MAC9B,MAAME,EAAE;AAAA,IAAO,CAChB;AAAA,IACC,gBAAgBG,EAAQL,EAAS;AAAA,MACjC,IAAIG,EAAE;AAAA,MACN,MAAMD,EAAE;AAAA,MACR,MAAMA,EAAE;AAAA,IAAO,CAChB,CAAC;AAAA,EAAA,CACD;AACD,CAAC,GAGUS,KAAcX,EAAS;AAAA,EAChC,MAAMG,EAAE,EAAS,SAAA;AAAA,EACjB,SAASD,EAAE,EAAS,SAAA;AACtB,CAAC,GAGUU,KAAiCZ,EAAS;AAAA,EACnD,OAAOA,EAAS;AAAA,IAChB,SAASE,EAAE,EAAS,SAAA;AAAA,EAAS,CAC9B,EAAE,SAAA;AACH,CAAC,GAGUW,KAAkBb,EAAS;AAAA,EACpC,YAAYE,EAAE;AAAA,EACd,iBAAiBA,EAAE;AACrB,CAAC,GAGUY,IAAad,EAAS;AAAA,EAC/B,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,OAAOD,EAAE,EAAS,SAAA;AAAA,EAClB,YAAYA,EAAE,EAAS,SAAA;AAAA,EACvB,WAAWA,EAAE,EAAS,SAAA;AAAA,EACtB,MAAMD,EAAO,CAAC,QAAQ,OAAO,CAAC,EAAE,SAAA;AAClC,CAAC,GAGUc,IAAkBf,EAAS;AAAA,EACpC,OAAOE,EAAE;AAAA,EACT,MAAMA,EAAE;AAAA,EACR,WAAWA,EAAE;AACf,CAAC,GAGUc,IAAchB,EAAS;AAAA,EAChC,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,KAAKD,EAAE,EAAS,SAAA;AAAA,EAChB,YAAYD,EAAO,CAAC,SAAS,OAAO,CAAC,EAAE,SAAA;AAAA,EACvC,MAAMc,EAAgB,SAAA;AACxB,CAAC,GAGUE,IAAcjB,EAAS;AAAA,EAChC,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,MAAMD,EAAE,EAAS,SAAA;AAAA,EACjB,aAAaA,EAAE,EAAS,SAAA;AAAA,EACxB,WAAWc,EAAY,SAAA;AACzB,CAAC,GAGUE,IAAalB,EAAS;AAAA,EAC/B,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,MAAMD,EAAE,EAAS,SAAA;AAAA,EACjB,OAAOC,EAAE,EAAS,SAAA;AAAA,EAClB,SAASA,EAAE,EAAS,SAAA;AAAA,EACpB,eAAeA,EAAE,EAAS,SAAA;AAC5B,CAAC,GAGUgB,IAAwBnB,EAAS;AAAA,EAC1C,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,UAAUA,EAAE,EAAS,SAAA;AAAA,EACrB,OAAOc,EAAY,SAAA;AAAA,EACnB,QAAQhB,EAAO,CAAC,eAAe,YAAY,aAAa,YAAY,QAAQ,CAAC,EAAE,SAAA;AACjF,CAAC,GAGUmB,KAAkBpB,EAAS;AAAA,EACpC,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,MAAMD,EAAE,EAAS,SAAA;AAAA,EACjB,aAAaA,EAAE,EAAS,SAAA;AAAA,EACxB,iBAAiBA,EAAE,EAAS,SAAA;AAAA,EAC5B,gBAAgBA,EAAE,EAAS,SAAA;AAAA,EAC3B,cAAcc,EAAY,SAAA;AAAA,EAC1B,UAAUF,EAAW,SAAA;AAAA,EACrB,OAAOT,EAAQa,CAAU,EAAE,SAAA;AAAA,EAC3B,QAAQb,EAAQc,CAAqB,EAAE,SAAA;AACzC,CAAC,GAGUE,KAAiBrB,EAAS;AAAA,EACnC,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,MAAMD,EAAE,EAAS,SAAA;AAAA,EACjB,aAAaA,EAAE,EAAS,SAAA;AAAA,EACxB,MAAMA,EAAE,EAAS,SAAA;AAAA,EACjB,cAAcA,EAAE,EAAS,SAAA;AAAA,EACzB,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,oBAAoBA,EAAE,EAAS,SAAA;AAAA,EAC/B,gBAAgBA,EAAE,EAAS,SAAA;AAAA,EAC3B,cAAcA,EAAE,EAAS,SAAA;AAAA,EACzB,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,aAAaA,EAAE,EAAS,SAAA;AAAA,EACxB,iBAAiBA,EAAE,EAAS,SAAA;AAAA,EAC5B,sBAAsBA,EAAE,EAAS,SAAA;AAAA,EACjC,MAAMc,EAAY,SAAA;AAAA,EAClB,YAAYA,EAAY,SAAA;AAAA,EACxB,YAAYA,EAAY,SAAA;AAAA,EACxB,eAAeb,EAAE,EAAS,SAAA;AAC5B,CAAC,GAGUmB,IAAoBtB,EAAS;AAAA,EACtC,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,OAAOD,EAAE,EAAS,SAAA;AAAA,EAClB,SAASC,EAAE,EAAS,SAAA;AACtB,CAAC,GAGUoB,IAAsBvB,EAAS;AAAA,EACxC,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,iBAAiBa,EAAY,SAAA;AAAA,EAC7B,yBAAyBA,EAAY,SAAA;AAAA,EACrC,uBAAuBA,EAAY,SAAA;AAAA,EACnC,2BAA2BA,EAAY,SAAA;AAAA,EACvC,SAASA,EAAY,SAAA;AAAA,EACrB,SAASb,EAAE,EAAS,SAAA;AAAA,EACpB,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,UAAUA,EAAE,EAAS,SAAA;AAAA,EACrB,OAAOc,EAAY,SAAA;AAAA,EACnB,oBAAoBO,EAAE,EAAU,SAAA;AAAA,EAChC,eAAenB,EAAQW,CAAW,EAAE,SAAA;AACtC,CAAC,GAGUS,IAAazB,EAAS;AAAA,EAC/B,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,MAAMD,EAAE,EAAS,SAAA;AAAA,EACjB,MAAMA,EAAE,EAAS,SAAA;AAAA,EACjB,mBAAmBA,EAAE,EAAS,SAAA;AAAA,EAC9B,cAAcC,EAAE,EAAS,SAAA;AAAA,EACzB,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,YAAYA,EAAE,EAAS,SAAA;AAAA,EACvB,WAAWA,EAAE,EAAS,SAAA;AAAA,EACtB,cAAcqB,EAAE,EAAU,SAAA;AAAA,EAC1B,aAAarB,EAAE,EAAS,SAAA;AAAA,EACxB,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,WAAWE,EAAQiB,CAAiB,EAAE,SAAA;AAAA,EACtC,gBAAgBjB,EAAQkB,CAAmB,EAAE,SAAA;AAAA,EAC7C,OAAOP,EAAY,SAAA;AAAA,EACnB,iBAAiBA,EAAY,SAAA;AAAA,EAC7B,WAAWA,EAAY,SAAA;AAAA,EACvB,WAAWA,EAAY,SAAA;AACzB,CAAC,GAGUU,KAA0B1B,EAAS;AAAA,EAC5C,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,SAASA,EAAE,EAAS,SAAA;AAAA,EACpB,oBAAoBqB,EAAE,EAAU,SAAA;AAAA,EAChC,MAAMC,EAAW,SAAA;AAAA,EACjB,mBAAmBtB,EAAE,EAAS,SAAA;AAAA,EAC9B,gBAAgBoB,EAAoB,SAAA;AAAA,EACpC,eAAelB,EAAQW,CAAW,EAAE,SAAA;AACtC,CAAC,GAGUW,IAAkB3B,EAAS;AAAA,EACpC,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,MAAMD,EAAE,EAAS,SAAA;AAAA,EACjB,UAAUA,EAAE,EAAS,SAAA;AAAA,EACrB,OAAOC,EAAE,EAAS,SAAA;AAAA,EAClB,OAAOA,EAAE,EAAS,SAAA;AAAA,EAClB,QAAQA,EAAE,EAAS,SAAA;AAAA,EACnB,cAAcF,EAAO,CAAC,YAAY,gBAAgB,YAAY,WAAW,CAAC,EAAE,SAAA;AAAA,EAC5E,OAAOC,EAAE,EAAS,SAAA;AAAA,EAClB,UAAUD,EAAO,CAAC,OAAO,OAAO,KAAK,CAAC,EAAE,SAAA;AAAA,EACxC,YAAYC,EAAE,EAAS,SAAA;AAAA,EACvB,YAAYA,EAAE,EAAS,SAAA;AAAA,EACvB,OAAOc,EAAY,SAAA;AAAA,EACnB,QAAQX,EAAQY,CAAW,EAAE,SAAA;AAC/B,CAAC,GAGUW,KAAyB5B,EAAS;AAAA,EAC3C,IAAIG,EAAE,EAAS,SAAA;AAAA,EACf,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,SAASA,EAAE,EAAS,SAAA;AAAA,EACpB,cAAcA,EAAE,EAAS,SAAA;AAAA,EACzB,WAAWwB,EAAgB,SAAA;AAAA,EAC3B,UAAUxB,EAAE,EAAS,SAAA;AAAA,EACrB,OAAOc,EAAY,SAAA;AACrB,CAAC,GAGUY,KAAwB7B,EAAS;AAAA,EAC1C,IAAIG,EAAE;AAAA,EACN,OAAOD,EAAE;AAAA,EACT,aAAaC,EAAE;AACjB,CAAC,GAGU2B,KAA0B9B,EAAS;AAAA,EAC5C,IAAIG,EAAE;AAAA,EACN,OAAOD,EAAE;AAAA,EACT,aAAaC,EAAE;AACjB,CAAC,GAGU4B,KAAyB/B,EAAS;AAAA,EAC3C,IAAIG,EAAE;AAAA,EACN,MAAMD,EAAE;AAAA,EACR,aAAaC,EAAE;AAAA,EACf,YAAYD,EAAE;AAAA,EACd,WAAWsB,EAAE;AAAA,EACb,YAAYtB,EAAE,EAAS,SAAA;AAAA,EACvB,QAAQ8B,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AAC5C,CAAC,GAGUC,KAAkBlC,EAAS;AAAA,EACpC,IAAIG,EAAE;AAAA,EACN,UAAUA,EAAE;AAAA,EACZ,eAAeA,EAAE;AAAA,EACjB,UAAUA,EAAE;AAAA,EACZ,QAAQD,EAAE;AAAA,EACV,oBAAoBC,EAAE,EAAS,SAAA;AAAA,EAC/B,uBAAuBD,EAAE,EAAS,SAAA;AAAA,EAClC,SAASC,EAAE,EAAS,SAAA;AAAA,EACpB,cAAcqB,EAAE,EAAU,SAAA;AAAA,EAC1B,YAAYtB,EAAE;AAAA,EACd,YAAYA,EAAE;AAAA,EACd,YAAYA,EAAE,EAAS,SAAA;AAAA,EACvB,aAAaA,EAAE,EAAS,SAAA;AAAA,EACxB,MAAM8B,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AAAA,EACxC,cAAc9B,EAAE,EAAS,SAAA;AAC3B,CAAC,GAGUgC,KAAiBnC,EAAS;AAAA,EACnC,IAAIG,EAAE;AAAA,EACN,UAAUA,EAAE;AAAA,EACZ,WAAWA,EAAE;AAAA,EACb,QAAQD,EAAE;AAAA,EACV,oBAAoBC,EAAE,EAAS,SAAA;AAAA,EAC/B,uBAAuBD,EAAE,EAAS,SAAA;AAAA,EAClC,YAAYA,EAAE;AAAA,EACd,YAAYA,EAAE;AAAA,EACd,YAAYA,EAAE,EAAS,SAAA;AAAA,EACvB,aAAaA,EAAE,EAAS,SAAA;AAAA,EACxB,MAAM8B,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AAAA,EACxC,cAAc9B,EAAE,EAAS,SAAA;AAC3B,CAAC,GAGUiC,KAAoBpC,EAAS;AAAA,EACtC,IAAIG,EAAE;AAAA,EACN,YAAYA,EAAE;AAAA,EACd,MAAMD,EAAE;AAAA,EACR,KAAKA,EAAE;AAAA,EACP,QAAQA,EAAE;AAAA,EACV,WAAWsB,EAAE;AAAA,EACb,YAAYtB,EAAE;AAAA,EACd,YAAYA,EAAE;AAChB,CAAC,GAGUmC,IAAsBrC,EAAS;AAAA,EACxC,UAAUG,EAAE,EAAS,SAAA;AAAA,EACrB,aAAaA,EAAE,EAAS,SAAA;AAAA,EACxB,OAAOa,EAAY,SAAA;AACrB,CAAC,GAGUsB,IAAqCtC,EAAS;AAAA,EACvD,MAAME,EAAE,EAAS,SAAA;AAAA,EACjB,WAAWA,EAAE;AAAA,EACb,aAAaA,EAAE,EAAS,SAAA;AAAA,EACxB,KAAKA,EAAE;AAAA,EACP,OAAOF,EAAS;AAAA,IAChB,KAAKE,EAAE;AAAA,EAAO,CACf,EAAE,SAAA;AACH,CAAC,GAGUqC,IAA8BvC,EAAS;AAAA,EAChD,MAAME,EAAE;AAAA,EACR,MAAMA,EAAE,EAAS,SAAA;AAAA,EACjB,UAAUG,EAAQiC,CAAkC,EAAE,SAAA;AAAA,EACtD,iBAAiBN,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AACrD,CAAC,GAGUO,IAAoBxC,EAAS;AAAA,EACtC,cAAcG,EAAE;AAAA,EAChB,iBAAiBA,EAAE;AAAA,EACnB,WAAWA,EAAE;AAAA,EACb,iBAAiBA,EAAE;AAAA,EACnB,UAAUD,EAAE;AAAA,EACZ,YAAYA,EAAE;AAAA,EACd,kBAAkBA,EAAE;AAAA,EACpB,sBAAsBA,EAAE;AAAA,EACxB,wBAAwBA,EAAE;AAAA,EAC1B,wBAAwBA,EAAE;AAAA,EAC1B,YAAYA,EAAE;AAAA,EACd,iBAAiBA,EAAE;AAAA,EACnB,eAAeC,EAAE;AAAA,EACjB,aAAaA,EAAE;AACjB,CAAC,GAGUsC,IAAsBxC,EAAO,CAAC,QAAQ,SAAS,CAAC,GAGhDyC,IAAkBzC,EAAO,CAAC,UAAU,QAAQ,CAAC,GAG7C0C,IAAmB1C,EAAO,CAAC,SAAS,QAAQ,OAAO,KAAK,CAAC,GAGzD2C,IAAiB5C,EAAS;AAAA,EACnC,IAAIG,EAAE;AAAA,EACN,QAAQD,EAAE;AAAA,EACV,QAAQC,EAAE;AAAA,EACV,OAAOuC;AAAA,EACP,QAAQC;AAAA,EACR,aAAanB,EAAE;AAAA,EACf,WAAWtB,EAAE;AAAA,EACb,KAAKA,EAAE;AAAA,EACP,YAAYA,EAAE;AAAA,EACd,YAAYA,EAAE;AAChB,CAAC,GAGU2C,IAAqB7C,EAAS;AAAA,EACvC,SAASG,EAAE;AAAA,EACX,MAAMsC;AAAA,EACN,MAAMG;AACR,CAAC,GAGUE,IAAmB9C,EAAS;AAAA,EACrC,QAAQwC;AAAA,EACR,OAAOnC,EAAQwC,CAAkB;AAAA,EACjC,SAAS1C,EAAE;AACb,CAAC,GAGU4C,IAA6B/C,EAAS;AAAA,EAC/C,IAAIG,EAAE;AAAA,EACN,YAAYD,EAAE;AAAA,EACd,YAAYA,EAAE;AAAA,EACd,MAAMA,EAAE;AAAA,EACR,MAAMA,EAAE,EAAS,SAAA;AAAA,EACjB,aAAaA,EAAE;AAAA,EACf,cAAcA,EAAE,EAAS,SAAA;AAAA,EACzB,eAAeA,EAAE;AAAA,EACjB,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,oBAAoBA,EAAE,EAAS,SAAA;AAAA,EAC/B,gBAAgBA,EAAE;AAAA,EAClB,cAAcA,EAAE;AAAA,EAChB,eAAeA,EAAE,EAAS,SAAA;AAAA,EAC1B,aAAaA,EAAE;AAAA,EACf,iBAAiBA,EAAE;AAAA,EACnB,QAAQD,EAAO,CAAC,YAAY,QAAQ,CAAC;AAAA,EACrC,SAASE,EAAE;AAAA,EACX,YAAYa,EAAY,SAAA;AAAA,EACxB,iBAAiBX,EAAQgC,CAAmB,EAAE,SAAA;AAAA,EAC9C,QAAQrC,EAAS;AAAA,IACjB,OAAOG,EAAE;AAAA,EAAO,CACjB,EAAE,SAAA;AAAA,EACD,YAAYa,EAAY,SAAA;AAAA,EACxB,mBAAmBX,EAAQkC,CAA2B,EAAE,SAAA;AAAA,EACxD,OAAOO,EAAiB,SAAA;AAC1B,CAAC,GAGUE,KAAyBhD,EAAS;AAAA,EAC3C,MAAM+C;AACR,CAAC,GAGUE,IAAuBjD,EAAS;AAAA,EACzC,IAAIG,EAAE;AAAA,EACN,MAAMD,EAAE;AACV,CAAC,GAGUgD,KAAiClD,EAAS;AAAA,EACnD,MAAMK,EAAQ4C,CAAoB;AACpC,CAAC,GAGUE,IAAcnD,EAAS;AAAA,EAChC,OAAOE,EAAE,EAAS,SAAA;AAAA,EAClB,MAAMA,EAAE,EAAS,SAAA;AACnB,CAAC,GAGUkD,IAAmBpD,EAAS;AAAA,EACrC,IAAIG,EAAE;AAAA,EACN,MAAMD,EAAE;AAAA,EACR,MAAMA,EAAE,EAAS,SAAA;AAAA,EACjB,YAAYC,EAAE;AAAA,EACd,cAAcA,EAAE;AAAA,EAChB,eAAeA,EAAE;AAAA,EACjB,WAAWE,EAAQH,EAAE,CAAQ,EAAE,SAAA;AAAA,EAC/B,YAAYG,EAAQH,EAAE,CAAQ,EAAE,SAAA;AAAA,EAChC,mBAAmBG,EAAQ8C,CAAW,EAAE,SAAA;AAAA,EACxC,OAAOA,EAAY,SAAA;AAAA,EACnB,aAAa3B,EAAE,EAAU,SAAA;AAAA,EACzB,SAAStB,EAAE,EAAS,SAAA;AAAA,EACpB,SAASC,EAAE,EAAS,SAAA;AACtB,CAAC,GAGUkD,KAA2BrD,EAAS;AAAA,EAC7C,MAAMA,EAAS;AAAA,IACf,OAAOA,EAAS;AAAA,MAChB,OAAOG,EAAE;AAAA,MACT,UAAUD,EAAE;AAAA,IAAO,CACpB;AAAA,IACC,WAAWC,EAAE;AAAA,IACb,MAAME,EAAQL,EAAS;AAAA,MACvB,SAASoD;AAAA,IAAA,CACV,CAAC;AAAA,EAAA,CACD;AACD,CAAC,GAGUE,IAAsBtD,EAAS;AAAA,EACxC,mBAAmBK,EAAQF,GAAU;AAAA,EACrC,gBAAgBH,EAAS;AAAA,IACzB,IAAIG,EAAE;AAAA,IACN,QAAQ6B,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AAAA,IAC1C,YAAY/B,EAAE;AAAA,EAAO,CACtB;AAAA,EACC,uBAAuBA,EAAE;AAAA,EACzB,eAAe8B,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AACnD,CAAC,GAGUsB,KAA0BvD,EAAS;AAAA,EAC5C,MAAMsD;AACR,CAAC,GAGUE,KAA+BxD,EAAS;AAAA,EACjD,MAAME,EAAE;AAAA,EACR,OAAOA,EAAE;AAAA,EACT,WAAWA,EAAE;AAAA,EACb,UAAUA,EAAE;AAAA,EACZ,cAAcA,EAAE,EAAS,SAAA;AAC3B,CAAC,GAGUuD,KAAgCzD,EAAS;AAAA,EAClD,SAASE,EAAE;AACb,CAAC,GAGUwD,KAAuBzD,EAAO,CAAC,YAAY,MAAM,CAAC,GAGlD0D,KAA2B3D,EAAS;AAAA,EAC7C,MAAMA,EAAS;AAAA,IACf,QAAQE,EAAE;AAAA,IACV,SAASC,EAAE;AAAA,EAAO,CACnB;AACD,CAAC,GAGUyD,IAA2B5D,EAAS;AAAA,EAC7C,OAAOE,EAAE;AAAA,EACT,OAAOA,EAAE;AAAA,EACT,WAAWC,EAAE;AACf,CAAC,GAGU0D,IAAuB7D,EAAS;AAAA,EACzC,OAAOE,EAAE;AAAA,EACT,OAAOC,EAAE;AAAA,EACT,WAAWA,EAAE;AACf,CAAC,GAGU2D,IAAwB9D,EAAS;AAAA,EAC1C,KAAKG,EAAE;AAAA,EACP,KAAKA,EAAE;AAAA,EACP,WAAWA,EAAE;AACf,CAAC,GAGU4D,IAA2B/D,EAAS;AAAA,EAC7C,MAAME,EAAE;AAAA,EACR,WAAWA,EAAE;AAAA,EACb,OAAOA,EAAE;AAAA,EACT,UAAUA,EAAE;AAAA,EACZ,SAASG,EAAQuD,CAAwB;AAC3C,CAAC,GAGUI,IAAuBhE,EAAS;AAAA,EACzC,MAAME,EAAE;AAAA,EACR,WAAWA,EAAE;AAAA,EACb,OAAOA,EAAE;AAAA,EACT,UAAUA,EAAE;AAAA,EACZ,SAASG,EAAQwD,CAAoB;AACvC,CAAC,GAGUI,IAAwBjE,EAAS;AAAA,EAC1C,MAAME,EAAE;AAAA,EACR,WAAWA,EAAE;AAAA,EACb,OAAOA,EAAE;AAAA,EACT,UAAUA,EAAE;AAAA,EACZ,SAASG,EAAQyD,CAAqB;AACxC,CAAC,GAGUI,IAA4BlE,EAAS;AAAA,EAC9C,OAAOE,EAAE;AAAA,EACT,OAAOiE,EAAQ,CAACjE,KAAYC,EAAE,GAAUE,EAAQH,EAAE,CAAQ,CAAC,CAAC;AAAA,EAC5D,WAAWC,EAAE;AAAA,EACb,KAAKD,EAAE,EAAS,SAAA;AAClB,CAAC,GAGUkE,IAAsBpE,EAAS;AAAA,EACxC,MAAME,EAAE;AAAA,EACR,OAAOA,EAAE;AAAA,EACT,UAAUA,EAAE;AAAA,EACZ,SAASG,EAAQ6D,CAAyB;AAAA,EAC1C,WAAWhE,EAAE,EAAS,SAAA;AAAA,EACtB,aAAaA,EAAE,EAAS,SAAA;AAAA,EACxB,iBAAiBA,EAAE,EAAS,SAAA;AAAA,EAC5B,KAAKC,EAAE,EAAS,SAAA;AAAA,EAChB,KAAKA,EAAE,EAAS,SAAA;AAClB,CAAC,GAGUkE,IAA4BrE,EAAS;AAAA,EAC9C,eAAeK,EAAQ+D,CAAmB;AAAA,EAC1C,SAASpE,EAAS;AAAA,IAClB,mBAAmB+D;AAAA,IACnB,cAAcC;AAAA,IACd,YAAYC;AAAA,IACZ,YAAYjC,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AAAA,EAAS,CACxD;AACD,CAAC,GAGUqC,KAAwBtE,EAAS;AAAA,EAC1C,MAAMqE;AACR,CAAC,GAGUE,KAA6BvE,EAAS;AAAA,EAC/C,cAAcE,EAAE;AAAA,EAChB,MAAM8B,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AAC1C,CAAC,GAGUuC,KAA8BxE,EAAS;AAAA,EAChD,MAAMA,EAAS;AAAA,IACf,eAAeA,EAAS;AAAA,MACxB,IAAIG,EAAE;AAAA,MACN,YAAYD,EAAE;AAAA,MACd,aAAaC,EAAE;AAAA,MACf,MAAM6B,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AAAA,MACxC,YAAY/B,EAAE;AAAA,IAAO,CACtB;AAAA,EAAA,CACA;AACD,CAAC,GAGUuE,KAA2BzE,EAAS;AAAA,EAC7C,cAAcE,EAAE;AAAA,EAChB,QAAQ8B,EAAS9B,EAAE,GAAU+B,EAAE,CAAS,EAAE,SAAA;AAC5C,CAAC,GAGUyC,KAA4B1E,EAAS;AAAA,EAC9C,MAAMA,EAAS;AAAA,IACf,WAAWG,EAAE;AAAA,EAAO,CACrB;AACD,CAAC,GAGUwE,KAA8B3E,EAAS;AAAA,EAChD,MAAMK,EAAQuC,CAAc;AAC9B,CAAC,GAGUgC,KAAyB5E,EAAS;AAAA,EAC3C,MAAM4C;AACR,CAAC,GAGUiC,KAA8B7E,EAAS;AAAA,EAChD,MAAMA,EAAS;AAAA,IACf,YAAYE,EAAE;AAAA,IACd,WAAWA,EAAE;AAAA,EAAO,CACrB;AACD,CAAC,GAGU4E,IAAsB9E,EAAS;AAAA,EACxC,aAAaG,EAAE;AAAA,EACf,eAAeD,EAAE;AAAA,EACjB,UAAUC,EAAE;AAAA,EACZ,SAASA,EAAE;AAAA,EACX,MAAMF,EAAO,CAAC,QAAQ,SAAS,CAAC;AAClC,CAAC,GAGU8E,KAAkC/E,EAAS;AAAA,EACpD,OAAOA,EAAS;AAAA,IAChB,SAASC,EAAO,CAAC,gCAAgC,CAAC;AAAA,IAClD,SAASD,EAAS;AAAA,MAClB,QAAQK,EAAQyE,CAAmB;AAAA,IAAA,CACpC;AAAA,EAAA,CACA;AACD,CAAC,GAGUE,IAAoB/E,EAAO,CAAC,SAAS,aAAa,UAAU,CAAC,GAG7DgF,IAA4BjF,EAAS;AAAA,EAC9C,SAASG,EAAE;AAAA,EACX,MAAMsC;AACR,CAAC,GAGUyC,IAAiBlF,EAAS;AAAA,EACnC,IAAIG,EAAE;AAAA,EACN,aAAaA,EAAE;AAAA,EACf,WAAWA,EAAE;AAAA,EACb,SAASA,EAAE;AAAA,EACX,QAAQ6E;AAAA,EACR,QAAQxC;AAAA,EACR,OAAOnC,EAAQwC,CAAkB;AAAA,EACjC,SAAS3C,EAAE;AAAA,EACX,cAAcA,EAAE;AAAA,EAChB,YAAYA,EAAE;AAAA,EACd,YAAYA,EAAE;AAChB,CAAC,GAGUiF,IAA4BnF,EAAS;AAAA,EAC9C,IAAIG,EAAE;AAAA,EACN,SAASA,EAAE;AAAA,EACX,QAAQF,EAAO,CAAC,aAAa,UAAU,CAAC;AAAA,EACxC,cAAcuB,EAAE;AAAA,EAChB,SAAStB,EAAE;AAAA,EACX,cAAcA,EAAE;AAAA,EAChB,YAAYA,EAAE;AAChB,CAAC,GAGUkF,IAAmBpF,EAAS;AAAA,EACrC,SAASkF;AAAA,EACT,MAAMA,EAAe,SAAA;AAAA,EACrB,UAAU7E,EAAQ8E,CAAyB;AAC7C,CAAC,GAGUE,KAA2BrF,EAAS;AAAA,EAC7C,MAAMoF;AACR,CAAC,GAGUE,KAAyBtF,EAAS;AAAA,EAC3C,MAAMkF;AACR,CAAC,GAGUK,KAAkCvF,EAAS;AAAA,EACpD,MAAMK,EAAQ8E,CAAyB;AACzC,CAAC,GAGUK,KAAgCxF,EAAS;AAAA,EAClD,QAAQwC;AAAA,EACR,OAAOnC,EAAQ4E,CAAyB;AAC1C,CAAC,GAGUQ,KAA4BzF,EAAS;AAAA,EAC9C,SAASE,EAAE,EAAS,SAAA;AACtB,CAAC;"}
|
|
@@ -300,8 +300,8 @@ declare const furnitureInteractionSchema: z.ZodObject<{
|
|
|
300
300
|
category: z.ZodString;
|
|
301
301
|
}, "strip", z.ZodTypeAny, {
|
|
302
302
|
type: "click" | "hover_on" | "hover_off";
|
|
303
|
-
propertyId: string;
|
|
304
303
|
category: string;
|
|
304
|
+
propertyId: string;
|
|
305
305
|
propertySlug: string;
|
|
306
306
|
propertyName: string;
|
|
307
307
|
unitId: string;
|
|
@@ -316,8 +316,8 @@ declare const furnitureInteractionSchema: z.ZodObject<{
|
|
|
316
316
|
brandName: string;
|
|
317
317
|
}, {
|
|
318
318
|
type: "click" | "hover_on" | "hover_off";
|
|
319
|
-
propertyId: string;
|
|
320
319
|
category: string;
|
|
320
|
+
propertyId: string;
|
|
321
321
|
propertySlug: string;
|
|
322
322
|
propertyName: string;
|
|
323
323
|
unitId: string;
|
|
@@ -353,8 +353,8 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
|
353
353
|
category: z.ZodString;
|
|
354
354
|
}, "strip", z.ZodTypeAny, {
|
|
355
355
|
type: string;
|
|
356
|
-
propertyId: string;
|
|
357
356
|
category: string;
|
|
357
|
+
propertyId: string;
|
|
358
358
|
link: string;
|
|
359
359
|
propertySlug: string;
|
|
360
360
|
propertyName: string;
|
|
@@ -371,8 +371,8 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
|
371
371
|
brandName: string;
|
|
372
372
|
}, {
|
|
373
373
|
type: string;
|
|
374
|
-
propertyId: string;
|
|
375
374
|
category: string;
|
|
375
|
+
propertyId: string;
|
|
376
376
|
link: string;
|
|
377
377
|
propertySlug: string;
|
|
378
378
|
propertyName: string;
|
|
@@ -406,8 +406,8 @@ declare const furnitureSavedSchema: z.ZodObject<{
|
|
|
406
406
|
brandName: z.ZodString;
|
|
407
407
|
category: z.ZodString;
|
|
408
408
|
}, "strip", z.ZodTypeAny, {
|
|
409
|
-
propertyId: string;
|
|
410
409
|
category: string;
|
|
410
|
+
propertyId: string;
|
|
411
411
|
propertySlug: string;
|
|
412
412
|
propertyName: string;
|
|
413
413
|
unitId: string;
|
|
@@ -421,8 +421,8 @@ declare const furnitureSavedSchema: z.ZodObject<{
|
|
|
421
421
|
furnitureName: string;
|
|
422
422
|
brandName: string;
|
|
423
423
|
}, {
|
|
424
|
-
propertyId: string;
|
|
425
424
|
category: string;
|
|
425
|
+
propertyId: string;
|
|
426
426
|
propertySlug: string;
|
|
427
427
|
propertyName: string;
|
|
428
428
|
unitId: string;
|
|
@@ -454,8 +454,8 @@ declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
|
454
454
|
brandName: z.ZodString;
|
|
455
455
|
category: z.ZodString;
|
|
456
456
|
}, "strip", z.ZodTypeAny, {
|
|
457
|
-
propertyId: string;
|
|
458
457
|
category: string;
|
|
458
|
+
propertyId: string;
|
|
459
459
|
propertySlug: string;
|
|
460
460
|
propertyName: string;
|
|
461
461
|
unitId: string;
|
|
@@ -469,8 +469,8 @@ declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
|
469
469
|
furnitureName: string;
|
|
470
470
|
brandName: string;
|
|
471
471
|
}, {
|
|
472
|
-
propertyId: string;
|
|
473
472
|
category: string;
|
|
473
|
+
propertyId: string;
|
|
474
474
|
propertySlug: string;
|
|
475
475
|
propertyName: string;
|
|
476
476
|
unitId: string;
|
|
@@ -503,8 +503,8 @@ declare const furnitureCarouselSchema: z.ZodObject<{
|
|
|
503
503
|
brandName: z.ZodString;
|
|
504
504
|
category: z.ZodString;
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
|
-
propertyId: string;
|
|
507
506
|
category: string;
|
|
507
|
+
propertyId: string;
|
|
508
508
|
propertySlug: string;
|
|
509
509
|
propertyName: string;
|
|
510
510
|
unitId: string;
|
|
@@ -519,8 +519,8 @@ declare const furnitureCarouselSchema: z.ZodObject<{
|
|
|
519
519
|
brandName: string;
|
|
520
520
|
method: "Prev" | "Next";
|
|
521
521
|
}, {
|
|
522
|
-
propertyId: string;
|
|
523
522
|
category: string;
|
|
523
|
+
propertyId: string;
|
|
524
524
|
propertySlug: string;
|
|
525
525
|
propertyName: string;
|
|
526
526
|
unitId: string;
|
|
@@ -1575,8 +1575,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1575
1575
|
}) => void;
|
|
1576
1576
|
trackFurnitureViewed: (payload: {
|
|
1577
1577
|
type: "click" | "hover_on" | "hover_off";
|
|
1578
|
-
propertyId: string;
|
|
1579
1578
|
category: string;
|
|
1579
|
+
propertyId: string;
|
|
1580
1580
|
propertySlug: string;
|
|
1581
1581
|
propertyName: string;
|
|
1582
1582
|
unitId: string;
|
|
@@ -1592,8 +1592,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1592
1592
|
}) => void;
|
|
1593
1593
|
trackFurnitureExternalUrlClicked: (payload: {
|
|
1594
1594
|
type: string;
|
|
1595
|
-
propertyId: string;
|
|
1596
1595
|
category: string;
|
|
1596
|
+
propertyId: string;
|
|
1597
1597
|
link: string;
|
|
1598
1598
|
propertySlug: string;
|
|
1599
1599
|
propertyName: string;
|
|
@@ -1610,8 +1610,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1610
1610
|
brandName: string;
|
|
1611
1611
|
}) => void;
|
|
1612
1612
|
trackFurnitureSaved: (payload: {
|
|
1613
|
-
propertyId: string;
|
|
1614
1613
|
category: string;
|
|
1614
|
+
propertyId: string;
|
|
1615
1615
|
propertySlug: string;
|
|
1616
1616
|
propertyName: string;
|
|
1617
1617
|
unitId: string;
|
|
@@ -1626,8 +1626,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1626
1626
|
brandName: string;
|
|
1627
1627
|
}) => void;
|
|
1628
1628
|
trackFurnitureModalOpened: (payload: {
|
|
1629
|
-
propertyId: string;
|
|
1630
1629
|
category: string;
|
|
1630
|
+
propertyId: string;
|
|
1631
1631
|
propertySlug: string;
|
|
1632
1632
|
propertyName: string;
|
|
1633
1633
|
unitId: string;
|
|
@@ -1642,8 +1642,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1642
1642
|
brandName: string;
|
|
1643
1643
|
}) => void;
|
|
1644
1644
|
trackFurnitureCarouselToggled: (payload: {
|
|
1645
|
-
propertyId: string;
|
|
1646
1645
|
category: string;
|
|
1646
|
+
propertyId: string;
|
|
1647
1647
|
propertySlug: string;
|
|
1648
1648
|
propertyName: string;
|
|
1649
1649
|
unitId: string;
|
|
@@ -2114,8 +2114,8 @@ export declare function useTrackingEvents(): {
|
|
|
2114
2114
|
}) => void;
|
|
2115
2115
|
trackFurnitureViewed: (payload: {
|
|
2116
2116
|
type: "click" | "hover_on" | "hover_off";
|
|
2117
|
-
propertyId: string;
|
|
2118
2117
|
category: string;
|
|
2118
|
+
propertyId: string;
|
|
2119
2119
|
propertySlug: string;
|
|
2120
2120
|
propertyName: string;
|
|
2121
2121
|
unitId: string;
|
|
@@ -2131,8 +2131,8 @@ export declare function useTrackingEvents(): {
|
|
|
2131
2131
|
}) => void;
|
|
2132
2132
|
trackFurnitureExternalUrlClicked: (payload: {
|
|
2133
2133
|
type: string;
|
|
2134
|
-
propertyId: string;
|
|
2135
2134
|
category: string;
|
|
2135
|
+
propertyId: string;
|
|
2136
2136
|
link: string;
|
|
2137
2137
|
propertySlug: string;
|
|
2138
2138
|
propertyName: string;
|
|
@@ -2149,8 +2149,8 @@ export declare function useTrackingEvents(): {
|
|
|
2149
2149
|
brandName: string;
|
|
2150
2150
|
}) => void;
|
|
2151
2151
|
trackFurnitureSaved: (payload: {
|
|
2152
|
-
propertyId: string;
|
|
2153
2152
|
category: string;
|
|
2153
|
+
propertyId: string;
|
|
2154
2154
|
propertySlug: string;
|
|
2155
2155
|
propertyName: string;
|
|
2156
2156
|
unitId: string;
|
|
@@ -2165,8 +2165,8 @@ export declare function useTrackingEvents(): {
|
|
|
2165
2165
|
brandName: string;
|
|
2166
2166
|
}) => void;
|
|
2167
2167
|
trackFurnitureModalOpened: (payload: {
|
|
2168
|
-
propertyId: string;
|
|
2169
2168
|
category: string;
|
|
2169
|
+
propertyId: string;
|
|
2170
2170
|
propertySlug: string;
|
|
2171
2171
|
propertyName: string;
|
|
2172
2172
|
unitId: string;
|
|
@@ -2181,8 +2181,8 @@ export declare function useTrackingEvents(): {
|
|
|
2181
2181
|
brandName: string;
|
|
2182
2182
|
}) => void;
|
|
2183
2183
|
trackFurnitureCarouselToggled: (payload: {
|
|
2184
|
-
propertyId: string;
|
|
2185
2184
|
category: string;
|
|
2185
|
+
propertyId: string;
|
|
2186
2186
|
propertySlug: string;
|
|
2187
2187
|
propertyName: string;
|
|
2188
2188
|
unitId: string;
|
package/dist/schema.d.ts
CHANGED
|
@@ -771,10 +771,10 @@ export declare const ApiUserSchema: z.ZodObject<{
|
|
|
771
771
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
772
772
|
}, "strip", z.ZodTypeAny, {
|
|
773
773
|
id?: string | number | undefined;
|
|
774
|
-
createdAt?: string | undefined;
|
|
775
774
|
email?: string | undefined;
|
|
776
775
|
first_name?: string | undefined;
|
|
777
776
|
last_name?: string | undefined;
|
|
777
|
+
createdAt?: string | undefined;
|
|
778
778
|
updatedAt?: string | undefined;
|
|
779
779
|
floorPlans?: unknown[] | undefined;
|
|
780
780
|
password?: string | undefined;
|
|
@@ -869,10 +869,10 @@ export declare const ApiUserSchema: z.ZodObject<{
|
|
|
869
869
|
}[] | undefined;
|
|
870
870
|
}, {
|
|
871
871
|
id?: string | number | undefined;
|
|
872
|
-
createdAt?: string | undefined;
|
|
873
872
|
email?: string | undefined;
|
|
874
873
|
first_name?: string | undefined;
|
|
875
874
|
last_name?: string | undefined;
|
|
875
|
+
createdAt?: string | undefined;
|
|
876
876
|
updatedAt?: string | undefined;
|
|
877
877
|
floorPlans?: unknown[] | undefined;
|
|
878
878
|
password?: string | undefined;
|
package/dist/schemas.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./api/schemas.generated.cjs");exports.AvailabilityFilterSchema=e.AvailabilityFilterSchema;exports.AvailabilityOptionSchema=e.AvailabilityOptionSchema;exports.BasePriceFilterSchema=e.BasePriceFilterSchema;exports.BasePriceOptionSchema=e.BasePriceOptionSchema;exports.BedroomsFilterSchema=e.BedroomsFilterSchema;exports.BedroomsOptionSchema=e.BedroomsOptionSchema;exports.BootstrapDataSchema=e.BootstrapDataSchema;exports.BootstrapResponseSchema=e.BootstrapResponseSchema;exports.ContactBuildingPayloadSchema=e.ContactBuildingPayloadSchema;exports.ContactBuildingResponseSchema=e.ContactBuildingResponseSchema;exports.EngagementResponseSchema=e.EngagementResponseSchema;exports.EngagementTypeSchema=e.EngagementTypeSchema;exports.ErrorSchema=e.ErrorSchema;exports.ErrorUnprocessableEntitySchema=e.ErrorUnprocessableEntitySchema;exports.ExternalServiceConfigSchema=e.ExternalServiceConfigSchema;exports.ExternalServiceSnippetConfigSchema=e.ExternalServiceSnippetConfigSchema;exports.ExternalServicesSchema=e.ExternalServicesSchema;exports.FiltersResponseDataSchema=e.FiltersResponseDataSchema;exports.FiltersResponseSchema=e.FiltersResponseSchema;exports.FloorPlanSchema=e.FloorPlanSchema;exports.FloorplanStylesSchema=e.FloorplanStylesSchema;exports.FurnitureInRoomsSchema=e.FurnitureInRoomsSchema;exports.FurnitureSchema=e.FurnitureSchema;exports.ImageSchema=e.ImageSchema;exports.LeadActivitiesResponseSchema=e.LeadActivitiesResponseSchema;exports.LeadActivityItemSchema=e.LeadActivityItemSchema;exports.LeadActivitySchema=e.LeadActivitySchema;exports.LeadDetailsResponseSchema=e.LeadDetailsResponseSchema;exports.LeadSchema=e.LeadSchema;exports.LeadsListResponseSchema=e.LeadsListResponseSchema;exports.LinkedPropertiesResponseSchema=e.LinkedPropertiesResponseSchema;exports.LinkedPropertySchema=e.LinkedPropertySchema;exports.MediaDataSchema=e.MediaDataSchema;exports.MediaSchema=e.MediaSchema;exports.OverviewImageSchema=e.OverviewImageSchema;exports.PaginationSchema=e.PaginationSchema;exports.PropertyAmenitySchema=e.PropertyAmenitySchema;exports.PropertyHighlightSchema=e.PropertyHighlightSchema;exports.PropertyResponseDataSchema=e.PropertyResponseDataSchema;exports.PropertyResponseSchema=e.PropertyResponseSchema;exports.PropertySchema=e.PropertySchema;exports.QuestionnaireOptionSchema=e.QuestionnaireOptionSchema;exports.QuestionnairePayloadSchema=e.QuestionnairePayloadSchema;exports.QuestionnaireResponseSchema=e.QuestionnaireResponseSchema;exports.QuestionnaireSchema=e.QuestionnaireSchema;exports.QueueJobSchema=e.QueueJobSchema;exports.RenderJobSchema=e.RenderJobSchema;exports.RenderedStyleSchema=e.RenderedStyleSchema;exports.RoomSchema=e.RoomSchema;exports.SaveFiltersPayloadSchema=e.SaveFiltersPayloadSchema;exports.SaveFiltersResponseSchema=e.SaveFiltersResponseSchema;exports.StyleSchema=e.StyleSchema;exports.UnitAmenitySchema=e.UnitAmenitySchema;exports.UnitRenderedStyleSchema=e.UnitRenderedStyleSchema;exports.UnitSchema=e.UnitSchema;exports.UnitSourceSchema=e.UnitSourceSchema;exports.UnitsByIdsResponseSchema=e.UnitsByIdsResponseSchema;exports.UploadUrlSchema=e.UploadUrlSchema;exports.UserSchema=e.UserSchema;exports.UserWebhookSchema=e.UserWebhookSchema;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./api/schemas.generated.cjs");exports.AvailabilityFilterSchema=e.AvailabilityFilterSchema;exports.AvailabilityOptionSchema=e.AvailabilityOptionSchema;exports.BasePriceFilterSchema=e.BasePriceFilterSchema;exports.BasePriceOptionSchema=e.BasePriceOptionSchema;exports.BedroomsFilterSchema=e.BedroomsFilterSchema;exports.BedroomsOptionSchema=e.BedroomsOptionSchema;exports.BootstrapDataSchema=e.BootstrapDataSchema;exports.BootstrapResponseSchema=e.BootstrapResponseSchema;exports.ContactBuildingPayloadSchema=e.ContactBuildingPayloadSchema;exports.ContactBuildingResponseSchema=e.ContactBuildingResponseSchema;exports.EmbedThemeSchema=e.EmbedThemeSchema;exports.EngagementResponseSchema=e.EngagementResponseSchema;exports.EngagementTypeSchema=e.EngagementTypeSchema;exports.ErrorSchema=e.ErrorSchema;exports.ErrorUnprocessableEntitySchema=e.ErrorUnprocessableEntitySchema;exports.ExternalServiceConfigSchema=e.ExternalServiceConfigSchema;exports.ExternalServiceSnippetConfigSchema=e.ExternalServiceSnippetConfigSchema;exports.ExternalServicesSchema=e.ExternalServicesSchema;exports.FiltersResponseDataSchema=e.FiltersResponseDataSchema;exports.FiltersResponseSchema=e.FiltersResponseSchema;exports.FloorPlanSchema=e.FloorPlanSchema;exports.FloorplanStylesSchema=e.FloorplanStylesSchema;exports.FontFormatSchema=e.FontFormatSchema;exports.FontInUseConflictResponseSchema=e.FontInUseConflictResponseSchema;exports.FontStyleSchema=e.FontStyleSchema;exports.FontUploadUrlResponseSchema=e.FontUploadUrlResponseSchema;exports.FontUsageItemSchema=e.FontUsageItemSchema;exports.FurnitureInRoomsSchema=e.FurnitureInRoomsSchema;exports.FurnitureSchema=e.FurnitureSchema;exports.ImageSchema=e.ImageSchema;exports.LeadActivitiesResponseSchema=e.LeadActivitiesResponseSchema;exports.LeadActivityItemSchema=e.LeadActivityItemSchema;exports.LeadActivitySchema=e.LeadActivitySchema;exports.LeadDetailsResponseSchema=e.LeadDetailsResponseSchema;exports.LeadSchema=e.LeadSchema;exports.LeadsListResponseSchema=e.LeadsListResponseSchema;exports.LinkedPropertiesResponseSchema=e.LinkedPropertiesResponseSchema;exports.LinkedPropertySchema=e.LinkedPropertySchema;exports.MediaDataSchema=e.MediaDataSchema;exports.MediaSchema=e.MediaSchema;exports.OverviewImageSchema=e.OverviewImageSchema;exports.PaginationSchema=e.PaginationSchema;exports.PropertyAmenitySchema=e.PropertyAmenitySchema;exports.PropertyHighlightSchema=e.PropertyHighlightSchema;exports.PropertyResponseDataSchema=e.PropertyResponseDataSchema;exports.PropertyResponseSchema=e.PropertyResponseSchema;exports.PropertySchema=e.PropertySchema;exports.PublishThemePayloadSchema=e.PublishThemePayloadSchema;exports.QuestionnaireOptionSchema=e.QuestionnaireOptionSchema;exports.QuestionnairePayloadSchema=e.QuestionnairePayloadSchema;exports.QuestionnaireResponseSchema=e.QuestionnaireResponseSchema;exports.QuestionnaireSchema=e.QuestionnaireSchema;exports.QueueJobSchema=e.QueueJobSchema;exports.RenderJobSchema=e.RenderJobSchema;exports.RenderedStyleSchema=e.RenderedStyleSchema;exports.RoomSchema=e.RoomSchema;exports.SaveFiltersPayloadSchema=e.SaveFiltersPayloadSchema;exports.SaveFiltersResponseSchema=e.SaveFiltersResponseSchema;exports.StyleSchema=e.StyleSchema;exports.ThemeConfigSchema=e.ThemeConfigSchema;exports.ThemeFontAssignmentSchema=e.ThemeFontAssignmentSchema;exports.ThemeFontRefSchema=e.ThemeFontRefSchema;exports.ThemeFontRoleSchema=e.ThemeFontRoleSchema;exports.ThemeRowResponseSchema=e.ThemeRowResponseSchema;exports.ThemeRowSchema=e.ThemeRowSchema;exports.ThemeStateResponseSchema=e.ThemeStateResponseSchema;exports.ThemeStateSchema=e.ThemeStateSchema;exports.ThemeStatusSchema=e.ThemeStatusSchema;exports.ThemeVersionSummarySchema=e.ThemeVersionSummarySchema;exports.ThemeVersionsListResponseSchema=e.ThemeVersionsListResponseSchema;exports.UnitAmenitySchema=e.UnitAmenitySchema;exports.UnitRenderedStyleSchema=e.UnitRenderedStyleSchema;exports.UnitSchema=e.UnitSchema;exports.UnitSourceSchema=e.UnitSourceSchema;exports.UnitsByIdsResponseSchema=e.UnitsByIdsResponseSchema;exports.UpdateThemeDraftPayloadSchema=e.UpdateThemeDraftPayloadSchema;exports.UploadUrlSchema=e.UploadUrlSchema;exports.UserFontResponseSchema=e.UserFontResponseSchema;exports.UserFontSchema=e.UserFontSchema;exports.UserFontsListResponseSchema=e.UserFontsListResponseSchema;exports.UserSchema=e.UserSchema;exports.UserWebhookSchema=e.UserWebhookSchema;
|
|
2
2
|
//# sourceMappingURL=schemas.cjs.map
|
package/dist/schemas.mjs
CHANGED
|
@@ -1,64 +1,86 @@
|
|
|
1
|
-
import { AvailabilityFilterSchema as
|
|
1
|
+
import { AvailabilityFilterSchema as m, AvailabilityOptionSchema as h, BasePriceFilterSchema as S, BasePriceOptionSchema as c, BedroomsFilterSchema as t, BedroomsOptionSchema as o, BootstrapDataSchema as n, BootstrapResponseSchema as s, ContactBuildingPayloadSchema as i, ContactBuildingResponseSchema as r, EmbedThemeSchema as p, EngagementResponseSchema as l, EngagementTypeSchema as R, ErrorSchema as d, ErrorUnprocessableEntitySchema as y, ExternalServiceConfigSchema as F, ExternalServiceSnippetConfigSchema as U, ExternalServicesSchema as P, FiltersResponseDataSchema as g, FiltersResponseSchema as u, FloorPlanSchema as T, FloorplanStylesSchema as v, FontFormatSchema as L, FontInUseConflictResponseSchema as B, FontStyleSchema as E, FontUploadUrlResponseSchema as b, FontUsageItemSchema as A, FurnitureInRoomsSchema as f, FurnitureSchema as I, ImageSchema as C, LeadActivitiesResponseSchema as D, LeadActivityItemSchema as O, LeadActivitySchema as Q, LeadDetailsResponseSchema as x, LeadSchema as k, LeadsListResponseSchema as w, LinkedPropertiesResponseSchema as J, LinkedPropertySchema as M, MediaDataSchema as V, MediaSchema as H, OverviewImageSchema as W, PaginationSchema as j, PropertyAmenitySchema as q, PropertyHighlightSchema as z, PropertyResponseDataSchema as G, PropertyResponseSchema as K, PropertySchema as N, PublishThemePayloadSchema as X, QuestionnaireOptionSchema as Y, QuestionnairePayloadSchema as Z, QuestionnaireResponseSchema as _, QuestionnaireSchema as $, QueueJobSchema as ee, RenderJobSchema as ae, RenderedStyleSchema as me, RoomSchema as he, SaveFiltersPayloadSchema as Se, SaveFiltersResponseSchema as ce, StyleSchema as te, ThemeConfigSchema as oe, ThemeFontAssignmentSchema as ne, ThemeFontRefSchema as se, ThemeFontRoleSchema as ie, ThemeRowResponseSchema as re, ThemeRowSchema as pe, ThemeStateResponseSchema as le, ThemeStateSchema as Re, ThemeStatusSchema as de, ThemeVersionSummarySchema as ye, ThemeVersionsListResponseSchema as Fe, UnitAmenitySchema as Ue, UnitRenderedStyleSchema as Pe, UnitSchema as ge, UnitSourceSchema as ue, UnitsByIdsResponseSchema as Te, UpdateThemeDraftPayloadSchema as ve, UploadUrlSchema as Le, UserFontResponseSchema as Be, UserFontSchema as Ee, UserFontsListResponseSchema as be, UserSchema as Ae, UserWebhookSchema as fe } from "./api/schemas.generated.mjs";
|
|
2
2
|
export {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
m as AvailabilityFilterSchema,
|
|
4
|
+
h as AvailabilityOptionSchema,
|
|
5
5
|
S as BasePriceFilterSchema,
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
c as BasePriceOptionSchema,
|
|
7
|
+
t as BedroomsFilterSchema,
|
|
8
8
|
o as BedroomsOptionSchema,
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
p as
|
|
14
|
-
l as
|
|
9
|
+
n as BootstrapDataSchema,
|
|
10
|
+
s as BootstrapResponseSchema,
|
|
11
|
+
i as ContactBuildingPayloadSchema,
|
|
12
|
+
r as ContactBuildingResponseSchema,
|
|
13
|
+
p as EmbedThemeSchema,
|
|
14
|
+
l as EngagementResponseSchema,
|
|
15
|
+
R as EngagementTypeSchema,
|
|
15
16
|
d as ErrorSchema,
|
|
16
17
|
y as ErrorUnprocessableEntitySchema,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
E as
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
I as
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
k as
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
W as
|
|
43
|
-
j as
|
|
44
|
-
q as
|
|
45
|
-
z as
|
|
46
|
-
G as
|
|
47
|
-
K as
|
|
48
|
-
N as
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
te as
|
|
61
|
-
|
|
62
|
-
|
|
18
|
+
F as ExternalServiceConfigSchema,
|
|
19
|
+
U as ExternalServiceSnippetConfigSchema,
|
|
20
|
+
P as ExternalServicesSchema,
|
|
21
|
+
g as FiltersResponseDataSchema,
|
|
22
|
+
u as FiltersResponseSchema,
|
|
23
|
+
T as FloorPlanSchema,
|
|
24
|
+
v as FloorplanStylesSchema,
|
|
25
|
+
L as FontFormatSchema,
|
|
26
|
+
B as FontInUseConflictResponseSchema,
|
|
27
|
+
E as FontStyleSchema,
|
|
28
|
+
b as FontUploadUrlResponseSchema,
|
|
29
|
+
A as FontUsageItemSchema,
|
|
30
|
+
f as FurnitureInRoomsSchema,
|
|
31
|
+
I as FurnitureSchema,
|
|
32
|
+
C as ImageSchema,
|
|
33
|
+
D as LeadActivitiesResponseSchema,
|
|
34
|
+
O as LeadActivityItemSchema,
|
|
35
|
+
Q as LeadActivitySchema,
|
|
36
|
+
x as LeadDetailsResponseSchema,
|
|
37
|
+
k as LeadSchema,
|
|
38
|
+
w as LeadsListResponseSchema,
|
|
39
|
+
J as LinkedPropertiesResponseSchema,
|
|
40
|
+
M as LinkedPropertySchema,
|
|
41
|
+
V as MediaDataSchema,
|
|
42
|
+
H as MediaSchema,
|
|
43
|
+
W as OverviewImageSchema,
|
|
44
|
+
j as PaginationSchema,
|
|
45
|
+
q as PropertyAmenitySchema,
|
|
46
|
+
z as PropertyHighlightSchema,
|
|
47
|
+
G as PropertyResponseDataSchema,
|
|
48
|
+
K as PropertyResponseSchema,
|
|
49
|
+
N as PropertySchema,
|
|
50
|
+
X as PublishThemePayloadSchema,
|
|
51
|
+
Y as QuestionnaireOptionSchema,
|
|
52
|
+
Z as QuestionnairePayloadSchema,
|
|
53
|
+
_ as QuestionnaireResponseSchema,
|
|
54
|
+
$ as QuestionnaireSchema,
|
|
55
|
+
ee as QueueJobSchema,
|
|
56
|
+
ae as RenderJobSchema,
|
|
57
|
+
me as RenderedStyleSchema,
|
|
58
|
+
he as RoomSchema,
|
|
59
|
+
Se as SaveFiltersPayloadSchema,
|
|
60
|
+
ce as SaveFiltersResponseSchema,
|
|
61
|
+
te as StyleSchema,
|
|
62
|
+
oe as ThemeConfigSchema,
|
|
63
|
+
ne as ThemeFontAssignmentSchema,
|
|
64
|
+
se as ThemeFontRefSchema,
|
|
65
|
+
ie as ThemeFontRoleSchema,
|
|
66
|
+
re as ThemeRowResponseSchema,
|
|
67
|
+
pe as ThemeRowSchema,
|
|
68
|
+
le as ThemeStateResponseSchema,
|
|
69
|
+
Re as ThemeStateSchema,
|
|
70
|
+
de as ThemeStatusSchema,
|
|
71
|
+
ye as ThemeVersionSummarySchema,
|
|
72
|
+
Fe as ThemeVersionsListResponseSchema,
|
|
73
|
+
Ue as UnitAmenitySchema,
|
|
74
|
+
Pe as UnitRenderedStyleSchema,
|
|
75
|
+
ge as UnitSchema,
|
|
76
|
+
ue as UnitSourceSchema,
|
|
77
|
+
Te as UnitsByIdsResponseSchema,
|
|
78
|
+
ve as UpdateThemeDraftPayloadSchema,
|
|
79
|
+
Le as UploadUrlSchema,
|
|
80
|
+
Be as UserFontResponseSchema,
|
|
81
|
+
Ee as UserFontSchema,
|
|
82
|
+
be as UserFontsListResponseSchema,
|
|
83
|
+
Ae as UserSchema,
|
|
84
|
+
fe as UserWebhookSchema
|
|
63
85
|
};
|
|
64
86
|
//# sourceMappingURL=schemas.mjs.map
|