sizebay-core-sdk 1.8.0 → 1.9.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/README.md
CHANGED
|
@@ -259,7 +259,8 @@ Get products that complete a look from an image.
|
|
|
259
259
|
| `sid` | string | Yes | String user ID |
|
|
260
260
|
| `sizeSystem` | string | Yes | Size system |
|
|
261
261
|
| `similarityThreshold` | number | Yes | Threshold for similarity-by-image search |
|
|
262
|
-
| `
|
|
262
|
+
| `baseClothType` | ClothType | Yes | ClothType of the item detected in the input images (e.g., "TOP", "BOTTOM") |
|
|
263
|
+
| `targetClothType` | ClothType | Yes | ClothType of item to find as complementary suggestions to the base item (e.g., "TOP", "BOTTOM") |
|
|
263
264
|
| `filterByWhatFitsMe` | boolean | No | Apply WFM filter |
|
|
264
265
|
| `personaHash` | string | Cond.\* | Required when WFM is on |
|
|
265
266
|
| `ageRange` | string | No | Age range context |
|
|
@@ -99,7 +99,8 @@ export interface GetComplementaryByImageBodyDto {
|
|
|
99
99
|
sid: string;
|
|
100
100
|
sizeSystem: string;
|
|
101
101
|
similarityThreshold: number;
|
|
102
|
-
|
|
102
|
+
baseClothType: ClothType;
|
|
103
|
+
targetClothType: ClothType;
|
|
103
104
|
filterByWhatFitsMe?: boolean;
|
|
104
105
|
personaHash?: string;
|
|
105
106
|
ageRange?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sizebay-core-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "A SDK designed for integrating multiple services (such as event tracking, AI services, etc.) into your application.",
|
|
5
5
|
"main": "dist/sizebay-core-sdk.umd.js",
|
|
6
6
|
"module": "dist/sizebay-core-sdk.es.js",
|