@primestyleai/tryon 1.4.0 → 2.0.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.
|
@@ -20,8 +20,8 @@ class ApiClient {
|
|
|
20
20
|
const data = await res.json().catch(() => ({}));
|
|
21
21
|
if (res.status === 402) {
|
|
22
22
|
throw new PrimeStyleError(
|
|
23
|
-
data.message || "Insufficient
|
|
24
|
-
"
|
|
23
|
+
data.message || "Insufficient try-ons",
|
|
24
|
+
"INSUFFICIENT_BALANCE"
|
|
25
25
|
);
|
|
26
26
|
}
|
|
27
27
|
throw new PrimeStyleError(
|
|
@@ -132,8 +132,8 @@ class SseClient {
|
|
|
132
132
|
this.reconnectAttempts = 0;
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
|
-
const MAX_DIMENSION =
|
|
136
|
-
const JPEG_QUALITY = 0.
|
|
135
|
+
const MAX_DIMENSION = 512;
|
|
136
|
+
const JPEG_QUALITY = 0.65;
|
|
137
137
|
function compressImage(file) {
|
|
138
138
|
return new Promise((resolve, reject) => {
|
|
139
139
|
const reader = new FileReader();
|
package/dist/primestyle-tryon.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiClient, S as SseClient, i as isValidImageFile, c as compressImage } from "./image-utils-
|
|
2
|
-
import { P } from "./image-utils-
|
|
1
|
+
import { A as ApiClient, S as SseClient, i as isValidImageFile, c as compressImage } from "./image-utils-C9bJ1zKO.js";
|
|
2
|
+
import { P } from "./image-utils-C9bJ1zKO.js";
|
|
3
3
|
function detectProductImage() {
|
|
4
4
|
const ogImage = document.querySelector(
|
|
5
5
|
'meta[property="og:image"]'
|
package/dist/react/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
3
3
|
import { useState, useRef, useEffect, useCallback } from "react";
|
|
4
|
-
import { A as ApiClient, S as SseClient, i as isValidImageFile, c as compressImage, P as PrimeStyleError } from "../image-utils-
|
|
4
|
+
import { A as ApiClient, S as SseClient, i as isValidImageFile, c as compressImage, P as PrimeStyleError } from "../image-utils-C9bJ1zKO.js";
|
|
5
5
|
function cx(base, override) {
|
|
6
6
|
return override ? `${base} ${override}` : base;
|
|
7
7
|
}
|
package/dist/types.d.ts
CHANGED