@compassdigital/sdk.typescript 4.42.0 → 4.43.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.
- package/lib/index.d.ts +11 -21
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +11 -21
- package/lib/index.js.map +1 -1
- package/lib/interface/location.d.ts +1 -0
- package/lib/interface/location.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +61 -179
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/partner.d.ts +1 -0
- package/lib/interface/partner.d.ts.map +1 -1
- package/lib/interface/user.d.ts +0 -9
- package/lib/interface/user.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +20 -39
- package/src/interface/location.ts +1 -0
- package/src/interface/menu.ts +69 -187
- package/src/interface/partner.ts +1 -0
- package/src/interface/user.ts +0 -17
package/src/interface/partner.ts
CHANGED
package/src/interface/user.ts
CHANGED
|
@@ -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 {
|