@compassdigital/sdk.typescript 4.42.0 → 4.44.0

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.
@@ -378,6 +378,7 @@ export interface Brand {
378
378
  [index: string]: {
379
379
  device_type: string;
380
380
  site_device_id: string;
381
+ business_units: string[];
381
382
  }[];
382
383
  };
383
384
  timeslots?: {
@@ -720,23 +720,6 @@ export interface PostUserCheckInRequest extends BaseRequest, PostUserCheckInPath
720
720
  body: PostUserCheckInBody;
721
721
  }
722
722
 
723
- // PATCH /user/{id}/checkin/{checkin_id} - Update check-in
724
-
725
- export interface PatchUserCheckinPath {
726
- // UserId of user who wants to checkin
727
- id: string;
728
- // Checkin id
729
- checkin_id: string;
730
- }
731
-
732
- export type PatchUserCheckinBody = PatchCheckin;
733
-
734
- export type PatchUserCheckinResponse = Checkin;
735
-
736
- export interface PatchUserCheckinRequest extends BaseRequest, PatchUserCheckinPath {
737
- body: PatchUserCheckinBody;
738
- }
739
-
740
723
  // GET /user/checkin/search - Search check-in
741
724
 
742
725
  export interface GetUserSearchCheckInQuery {