@techzunction/sdk 0.6.0 → 0.6.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/dist/index.cjs CHANGED
@@ -877,6 +877,9 @@ function createStorefrontMovies(c) {
877
877
  endSession(sessionId) {
878
878
  return c.post(`/movies/session/${sessionId}/end`, void 0, "enduser");
879
879
  },
880
+ updateSessionCap(sessionId, meterCapPaise) {
881
+ return c.patch(`/movies/session/${sessionId}/update-cap`, { meterCapPaise }, "enduser");
882
+ },
880
883
  // ─── Watchlist ───────────────────────────────────────────────────
881
884
  getWatchlist() {
882
885
  return c.get("/watchlist", "enduser");