@configura/web-api-auth 1.3.0-alpha.2 → 1.3.0-alpha.7
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.
|
@@ -78,6 +78,7 @@ export declare type RenderFormat = "jpg" | "png";
|
|
|
78
78
|
/** SelectedOption */
|
|
79
79
|
export interface SelectedOption {
|
|
80
80
|
code: string;
|
|
81
|
+
numericValue?: ValueWithUnit;
|
|
81
82
|
next?: {
|
|
82
83
|
[index: string]: SelectedOption;
|
|
83
84
|
};
|
|
@@ -101,6 +102,11 @@ export interface Transform {
|
|
|
101
102
|
scale: Vector;
|
|
102
103
|
rot: Orientation;
|
|
103
104
|
}
|
|
105
|
+
/** ValueWithUnit */
|
|
106
|
+
export interface ValueWithUnit {
|
|
107
|
+
value: number;
|
|
108
|
+
unit?: string;
|
|
109
|
+
}
|
|
104
110
|
/** Vector */
|
|
105
111
|
export interface Vector {
|
|
106
112
|
x: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@configura/web-api-auth",
|
|
3
|
-
"version": "1.3.0-alpha.
|
|
3
|
+
"version": "1.3.0-alpha.7",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -21,5 +21,5 @@
|
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "1c5c089a31e6662b6da365b7038254e70a1cc8ff"
|
|
25
25
|
}
|