@natch-the-storage/heathershaw-platform-types 1.15.0 → 1.15.1
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 -2
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -688,9 +688,11 @@ export interface CDCustomerCreate {
|
|
|
688
688
|
animalOwnerName?: string;
|
|
689
689
|
}
|
|
690
690
|
/**
|
|
691
|
-
*
|
|
691
|
+
* Fields that can be updated on the portal for a CDCustomer
|
|
692
692
|
*/
|
|
693
|
-
export type CDCustomerUpdate =
|
|
693
|
+
export type CDCustomerUpdate = Partial<CDCustomerCreate> & {
|
|
694
|
+
id: number;
|
|
695
|
+
};
|
|
694
696
|
export interface CDCustomerSearch {
|
|
695
697
|
query: string;
|
|
696
698
|
dobStartDate: string;
|