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 +13 -12
- package/dist/index.d.ts +13 -12
- package/dist/index.js +5 -4
- package/dist/index.mjs +5 -4
- package/package.json +1 -1
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
|
-
|
|
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.
|
|
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
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
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
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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: {
|