@natch-the-storage/heathershaw-platform-types 1.6.6 → 1.6.7
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/build/validators.d.ts +4 -0
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -409,6 +409,9 @@ export interface CDScriptProperties {
|
|
|
409
409
|
code: string;
|
|
410
410
|
type: string;
|
|
411
411
|
}
|
|
412
|
+
export interface CDScriptIngredients {
|
|
413
|
+
name: string;
|
|
414
|
+
}
|
|
412
415
|
export interface CDScriptList {
|
|
413
416
|
draftScriptId: number;
|
|
414
417
|
customerId: number;
|
|
@@ -455,6 +458,7 @@ export interface CDScript {
|
|
|
455
458
|
};
|
|
456
459
|
formulation: {
|
|
457
460
|
properties?: CDScriptProperties[];
|
|
461
|
+
ingredients?: CDScriptIngredients[];
|
|
458
462
|
};
|
|
459
463
|
itemCount: number;
|
|
460
464
|
}
|