automation-lib 6.3.13 → 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 CHANGED
@@ -5162,8 +5162,8 @@ interface IAccountVPS extends IBaseModel, IAssignTeam, ITrackingModel {
5162
5162
  settingDescription: string;
5163
5163
  description: string;
5164
5164
  noteFix: string;
5165
- departmentAssignedID: string;
5166
- teamAssignedID: string;
5165
+ departmentAssigned: string;
5166
+ teamAssigned: string;
5167
5167
  oldInfoVPS: {
5168
5168
  ip: string;
5169
5169
  port: string;
@@ -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
@@ -5162,8 +5162,8 @@ interface IAccountVPS extends IBaseModel, IAssignTeam, ITrackingModel {
5162
5162
  settingDescription: string;
5163
5163
  description: string;
5164
5164
  noteFix: string;
5165
- departmentAssignedID: string;
5166
- teamAssignedID: string;
5165
+ departmentAssigned: string;
5166
+ teamAssigned: string;
5167
5167
  oldInfoVPS: {
5168
5168
  ip: string;
5169
5169
  port: string;
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.3.13",
3
+ "version": "6.3.15",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",