automation-lib 6.3.14 → 6.3.15
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5928,8 +5928,8 @@ interface CreateAccountVPSDto {
|
|
|
5928
5928
|
providerId: string;
|
|
5929
5929
|
provider: string;
|
|
5930
5930
|
price: string;
|
|
5931
|
-
departmentAssigned: string;
|
|
5932
|
-
teamAssigned: string;
|
|
5931
|
+
departmentAssigned: string | IDepartment;
|
|
5932
|
+
teamAssigned: string | ITeam;
|
|
5933
5933
|
listJobsID: string[];
|
|
5934
5934
|
settingDescription: string;
|
|
5935
5935
|
description: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -5928,8 +5928,8 @@ interface CreateAccountVPSDto {
|
|
|
5928
5928
|
providerId: string;
|
|
5929
5929
|
provider: string;
|
|
5930
5930
|
price: string;
|
|
5931
|
-
departmentAssigned: string;
|
|
5932
|
-
teamAssigned: string;
|
|
5931
|
+
departmentAssigned: string | IDepartment;
|
|
5932
|
+
teamAssigned: string | ITeam;
|
|
5933
5933
|
listJobsID: string[];
|
|
5934
5934
|
settingDescription: string;
|
|
5935
5935
|
description: string;
|