@bizmap/sdk 0.0.83 → 0.0.84

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.
Files changed (2) hide show
  1. package/dist/main.js +1 -2
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -733,7 +733,6 @@ var ClientForm = ClientIdentity.pick({
733
733
 
734
734
  // src/schemas/appointment/Appointment.ts
735
735
  import * as z21 from "zod";
736
- import { UserDetails as UserDetails2 } from "src/main";
737
736
  var TimelineActivity = z21.object({
738
737
  postedAt: Timestamp.nullish(),
739
738
  userUid: CompanyUser.shape._id.nonoptional()
@@ -791,7 +790,7 @@ var MiniAppointmentDetails = z21.object({
791
790
  })
792
791
  ).max(100).nullish(),
793
792
  // The user that is currently modifying the appointment
794
- lockedBy: UserDetails2.shape._id.optional(),
793
+ lockedBy: UserDetails.shape._id.optional(),
795
794
  timeline: z21.object({
796
795
  scheduler: TimelineActivity,
797
796
  physAsst: TimelineActivity.or(z21.literal("none")),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizmap/sdk",
3
- "version": "0.0.83",
3
+ "version": "0.0.84",
4
4
  "main": "./dist/main.js",
5
5
  "types": "./dist/main.d.ts",
6
6
  "type": "module",