@blackcode_sa/metaestetics-api 1.12.41 → 1.12.43

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.
@@ -41,15 +41,16 @@ export interface Product {
41
41
  indications?: string[];
42
42
  contraindications?: ContraindicationDynamic[];
43
43
 
44
- // DEPRECATED: Kept for backward compatibility with subcollection structure
45
- // These fields exist in old products in /technologies/{id}/products/
46
- /** @deprecated Use assignedTechnologyIds instead */
44
+ // LEGACY FIELDS: Only present in technology subcollections (/technologies/{id}/products/)
45
+ // These fields are synced by Cloud Functions for backward compatibility
46
+ // NOT stored in top-level /products collection
47
+ /** Present only in subcollections - synced from technology metadata */
47
48
  technologyId?: string;
48
- /** @deprecated Will be removed in future version */
49
+ /** Present only in subcollections - synced from technology name */
49
50
  technologyName?: string;
50
- /** @deprecated Not needed in top-level collection */
51
+ /** Present only in subcollections - synced from technology categoryId */
51
52
  categoryId?: string;
52
- /** @deprecated Not needed in top-level collection */
53
+ /** Present only in subcollections - synced from technology subcategoryId */
53
54
  subcategoryId?: string;
54
55
  }
55
56