@swan-admin/swan-ai-measurements 1.1.39 → 1.1.40
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/esm/fileUpload.d.ts +10 -1
- package/dist/fileUpload.d.ts +10 -1
- package/package.json +1 -1
- package/src/fileUpload.ts +1 -1
package/dist/esm/fileUpload.d.ts
CHANGED
|
@@ -8,7 +8,16 @@ interface ObjMetaData {
|
|
|
8
8
|
clothes_fit: string;
|
|
9
9
|
scan_type?: string;
|
|
10
10
|
callback_url: string;
|
|
11
|
-
|
|
11
|
+
device_info?: {
|
|
12
|
+
detection?: string;
|
|
13
|
+
model?: string;
|
|
14
|
+
gyro?: {
|
|
15
|
+
alpha?: string;
|
|
16
|
+
gamma?: string;
|
|
17
|
+
beta?: string;
|
|
18
|
+
timestamp?: string;
|
|
19
|
+
}[];
|
|
20
|
+
};
|
|
12
21
|
}
|
|
13
22
|
interface UploadOptions {
|
|
14
23
|
file: File;
|
package/dist/fileUpload.d.ts
CHANGED
|
@@ -8,7 +8,16 @@ interface ObjMetaData {
|
|
|
8
8
|
clothes_fit: string;
|
|
9
9
|
scan_type?: string;
|
|
10
10
|
callback_url: string;
|
|
11
|
-
|
|
11
|
+
device_info?: {
|
|
12
|
+
detection?: string;
|
|
13
|
+
model?: string;
|
|
14
|
+
gyro?: {
|
|
15
|
+
alpha?: string;
|
|
16
|
+
gamma?: string;
|
|
17
|
+
beta?: string;
|
|
18
|
+
timestamp?: string;
|
|
19
|
+
}[];
|
|
20
|
+
};
|
|
12
21
|
}
|
|
13
22
|
interface UploadOptions {
|
|
14
23
|
file: File;
|
package/package.json
CHANGED
package/src/fileUpload.ts
CHANGED
|
@@ -19,7 +19,7 @@ interface ObjMetaData {
|
|
|
19
19
|
clothes_fit: string;
|
|
20
20
|
scan_type?: string;
|
|
21
21
|
callback_url: string;
|
|
22
|
-
gyro?:string;
|
|
22
|
+
device_info?:{ detection?: string, model?: string, gyro?: {alpha?:string,gamma?:string,beta?:string,timestamp?:string}[] };
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
interface UploadOptions {
|