automation-lib 5.5.68 → 5.5.69
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.d.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3052,13 +3052,14 @@ interface CreatePCDto {
|
|
|
3052
3052
|
machineGUID: string;
|
|
3053
3053
|
ip: string;
|
|
3054
3054
|
os: string;
|
|
3055
|
-
|
|
3056
|
-
|
|
3055
|
+
maxDevice?: number;
|
|
3056
|
+
userAssignId: string;
|
|
3057
|
+
note?: string;
|
|
3057
3058
|
}
|
|
3058
3059
|
interface UpdatePCDto {
|
|
3059
3060
|
name?: string;
|
|
3060
3061
|
alias?: string;
|
|
3061
|
-
|
|
3062
|
+
userAssignId?: string;
|
|
3062
3063
|
maxDevice?: number;
|
|
3063
3064
|
note?: string;
|
|
3064
3065
|
isNotifyConnection?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -3052,13 +3052,14 @@ interface CreatePCDto {
|
|
|
3052
3052
|
machineGUID: string;
|
|
3053
3053
|
ip: string;
|
|
3054
3054
|
os: string;
|
|
3055
|
-
|
|
3056
|
-
|
|
3055
|
+
maxDevice?: number;
|
|
3056
|
+
userAssignId: string;
|
|
3057
|
+
note?: string;
|
|
3057
3058
|
}
|
|
3058
3059
|
interface UpdatePCDto {
|
|
3059
3060
|
name?: string;
|
|
3060
3061
|
alias?: string;
|
|
3061
|
-
|
|
3062
|
+
userAssignId?: string;
|
|
3062
3063
|
maxDevice?: number;
|
|
3063
3064
|
note?: string;
|
|
3064
3065
|
isNotifyConnection?: boolean;
|