const { data: order } = await clinik.nutritionOrders.create({
status: 'active',
intent: 'order',
patientId: 'pt_abc123',
ordererId: 'prac_def456',
oralDiet: {
type: ['diabetic', 'low-sodium'],
instruction: 'No added salt. Limit carbohydrates to 45g per meal.',
nutrient: [
{ modifier: 'Sodium', amount: { value: 2000, unit: 'mg' } },
{ modifier: 'Carbohydrate', amount: { value: 135, unit: 'g' } },
],
},
excludeFoodModifier: ['shellfish', 'peanuts'],
note: 'Patient has a history of diabetic ketoacidosis',
});