@chopkola/common 1.0.166 → 1.0.168
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/types/user.d.ts +1 -1
- package/build/types/vendor.d.ts +2 -0
- package/package.json +1 -1
package/build/types/user.d.ts
CHANGED
package/build/types/vendor.d.ts
CHANGED
|
@@ -92,6 +92,8 @@ export interface GroceryVendorAggregate extends Vendor {
|
|
|
92
92
|
export type VendorAggregate = RestaurantVendorAggregate | GroceryVendorAggregate;
|
|
93
93
|
export type CreateVendorInput = Omit<Vendor, "id" | "rating" | "review_count" | "business_status" | "approved_by" | "approved_on" | "created_at" | "updated_at"> & {
|
|
94
94
|
address_payload: AddressPayloadType;
|
|
95
|
+
registration_cert: File;
|
|
96
|
+
id_proof: File;
|
|
95
97
|
};
|
|
96
98
|
export type UpdateVendorInput = Partial<Omit<Vendor, "id" | "owner_id" | "business_type" | "rating" | "review_count" | "created_at" | "updated_at">>;
|
|
97
99
|
export type CreateRestaurantInfoInput = Omit<RestaurantInfo, "id" | "created_at" | "updated_at">;
|