automation-lib 4.9.113 → 4.9.116

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
@@ -19,10 +19,11 @@ declare const CONST_API_AUTH: {
19
19
  declare const CONST_API_COMMON: {
20
20
  SLUG: string;
21
21
  SEARCH: string;
22
- SOFT_DELETE: string;
22
+ FILL_BY_ID: string;
23
+ FILL_DETAIL: string;
24
+ FILL_MULTI: string;
25
+ FILL_MULTI_FULL: string;
23
26
  DELETE_MULTI: string;
24
- RESTORE_MULTI: string;
25
- SOFT_DELETE_MULTI: string;
26
27
  };
27
28
  declare const CONST_API_CONTROLLERS: {
28
29
  COMMON: {
@@ -1118,7 +1119,7 @@ interface IAccountHistory {
1118
1119
  social2Fa: string;
1119
1120
  fullName: string;
1120
1121
  }
1121
- interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1122
+ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1122
1123
  account_avatar: string;
1123
1124
  account_cover: string;
1124
1125
  account_sheetUrl: string;
@@ -1152,14 +1153,14 @@ interface IManagerImageAIUserAttached extends BoInterfaceModelsCommon.IBaseModel
1152
1153
  accountSocial: string | IAccount;
1153
1154
  }
1154
1155
 
1155
- interface IFile extends BoInterfaceModelsCommon$1.IBaseModel {
1156
- file_name: string;
1157
- file_path: string;
1158
- file_size: number;
1159
- file_type: string;
1160
- file_md5: string;
1161
- file_url: string;
1162
- file_isDraft: boolean;
1156
+ interface IFile extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1157
+ name: string;
1158
+ path: string;
1159
+ size: number;
1160
+ type: string;
1161
+ md5: string;
1162
+ url: string;
1163
+ isDraft: boolean;
1163
1164
  }
1164
1165
 
1165
1166
  type index$6_IFile = IFile;
package/dist/index.d.ts CHANGED
@@ -19,10 +19,11 @@ declare const CONST_API_AUTH: {
19
19
  declare const CONST_API_COMMON: {
20
20
  SLUG: string;
21
21
  SEARCH: string;
22
- SOFT_DELETE: string;
22
+ FILL_BY_ID: string;
23
+ FILL_DETAIL: string;
24
+ FILL_MULTI: string;
25
+ FILL_MULTI_FULL: string;
23
26
  DELETE_MULTI: string;
24
- RESTORE_MULTI: string;
25
- SOFT_DELETE_MULTI: string;
26
27
  };
27
28
  declare const CONST_API_CONTROLLERS: {
28
29
  COMMON: {
@@ -1118,7 +1119,7 @@ interface IAccountHistory {
1118
1119
  social2Fa: string;
1119
1120
  fullName: string;
1120
1121
  }
1121
- interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1122
+ interface IAccount extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1122
1123
  account_avatar: string;
1123
1124
  account_cover: string;
1124
1125
  account_sheetUrl: string;
@@ -1152,14 +1153,14 @@ interface IManagerImageAIUserAttached extends BoInterfaceModelsCommon.IBaseModel
1152
1153
  accountSocial: string | IAccount;
1153
1154
  }
1154
1155
 
1155
- interface IFile extends BoInterfaceModelsCommon$1.IBaseModel {
1156
- file_name: string;
1157
- file_path: string;
1158
- file_size: number;
1159
- file_type: string;
1160
- file_md5: string;
1161
- file_url: string;
1162
- file_isDraft: boolean;
1156
+ interface IFile extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1157
+ name: string;
1158
+ path: string;
1159
+ size: number;
1160
+ type: string;
1161
+ md5: string;
1162
+ url: string;
1163
+ isDraft: boolean;
1163
1164
  }
1164
1165
 
1165
1166
  type index$6_IFile = IFile;
package/dist/index.js CHANGED
@@ -64,10 +64,11 @@ var CONST_API_AUTH = {
64
64
  var CONST_API_COMMON = {
65
65
  SLUG: "slug",
66
66
  SEARCH: "search/advance",
67
- SOFT_DELETE: "soft-delete",
68
- DELETE_MULTI: "delete-multi",
69
- RESTORE_MULTI: "restore-multi",
70
- SOFT_DELETE_MULTI: "soft-delete-multi"
67
+ FILL_BY_ID: "find-by-id",
68
+ FILL_DETAIL: "find-detail",
69
+ FILL_MULTI: "find-multi",
70
+ FILL_MULTI_FULL: "find-multi/full",
71
+ DELETE_MULTI: "delete-multi"
71
72
  };
72
73
  var CONST_API_CONTROLLERS = {
73
74
  COMMON: {
package/dist/index.mjs CHANGED
@@ -41,10 +41,11 @@ var CONST_API_AUTH = {
41
41
  var CONST_API_COMMON = {
42
42
  SLUG: "slug",
43
43
  SEARCH: "search/advance",
44
- SOFT_DELETE: "soft-delete",
45
- DELETE_MULTI: "delete-multi",
46
- RESTORE_MULTI: "restore-multi",
47
- SOFT_DELETE_MULTI: "soft-delete-multi"
44
+ FILL_BY_ID: "find-by-id",
45
+ FILL_DETAIL: "find-detail",
46
+ FILL_MULTI: "find-multi",
47
+ FILL_MULTI_FULL: "find-multi/full",
48
+ DELETE_MULTI: "delete-multi"
48
49
  };
49
50
  var CONST_API_CONTROLLERS = {
50
51
  COMMON: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "4.9.113",
3
+ "version": "4.9.116",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",