@fctc/edu-logic-lib 1.0.1 → 1.0.3
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/config.js +259 -4
- package/dist/config.mjs +255 -6
- package/dist/constants.js +154 -30
- package/dist/constants.mjs +140 -29
- package/dist/environment.js +841 -7
- package/dist/environment.mjs +840 -14
- package/dist/hooks.d.mts +2 -0
- package/dist/hooks.d.ts +2 -0
- package/dist/hooks.js +4372 -283
- package/dist/hooks.mjs +4275 -237
- package/dist/index.d.mts +23 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +5323 -0
- package/dist/index.mjs +5165 -0
- package/dist/models.js +3200 -18
- package/dist/models.mjs +3192 -18
- package/dist/provider.js +3179 -33
- package/dist/provider.mjs +3171 -33
- package/dist/services.js +4028 -9
- package/dist/services.mjs +4031 -25
- package/dist/store.js +582 -128
- package/dist/store.mjs +502 -111
- package/dist/types.js +2 -1
- package/dist/types.mjs +1 -0
- package/dist/utils.js +2346 -20
- package/dist/utils.mjs +2343 -33
- package/package.json +9 -6
- package/dist/chunk-6BLY7NZ6.mjs +0 -124
- package/dist/chunk-6QXB3XX7.mjs +0 -258
- package/dist/chunk-ELARQVCE.mjs +0 -2364
- package/dist/chunk-FVGPSTJ7.js +0 -124
- package/dist/chunk-GGOFXFSX.js +0 -2364
- package/dist/chunk-IXDDYGKE.js +0 -61
- package/dist/chunk-MJLXGYQ4.mjs +0 -102
- package/dist/chunk-MLJQPO4Q.mjs +0 -61
- package/dist/chunk-QLUONJPQ.mjs +0 -604
- package/dist/chunk-RZBHZYXG.js +0 -604
- package/dist/chunk-S7B3VKMJ.mjs +0 -95
- package/dist/chunk-S7YF2I23.js +0 -95
- package/dist/chunk-U4CC2BBB.js +0 -1074
- package/dist/chunk-UY6GNZNB.js +0 -258
- package/dist/chunk-W4W2L2NA.js +0 -102
- package/dist/chunk-WYXAE5LI.mjs +0 -1074
package/dist/constants.js
CHANGED
|
@@ -1,30 +1,154 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/constants/api/key-constant.ts
|
|
4
|
+
var KeyConstants = /* @__PURE__ */ ((KeyConstants2) => {
|
|
5
|
+
KeyConstants2["PROFILE"] = "userinfo";
|
|
6
|
+
KeyConstants2["CURRENT_COMPANY"] = "current_company";
|
|
7
|
+
KeyConstants2["LIST_COMPANY"] = "list_company";
|
|
8
|
+
KeyConstants2["COMPANY_INFO"] = "company_info";
|
|
9
|
+
KeyConstants2["MENU"] = "menus";
|
|
10
|
+
KeyConstants2["GET_VIEW_BY_ACTION"] = "get_view_by_action";
|
|
11
|
+
KeyConstants2["ACTION_DETAIL"] = "action_detail";
|
|
12
|
+
KeyConstants2["GET_DATA_SELECTION"] = "get_data_select";
|
|
13
|
+
KeyConstants2["WEB_SAVE"] = "web_save";
|
|
14
|
+
KeyConstants2["WEB_READ"] = "web_read";
|
|
15
|
+
KeyConstants2["GET_PROVIDER"] = "get_provider";
|
|
16
|
+
return KeyConstants2;
|
|
17
|
+
})(KeyConstants || {});
|
|
18
|
+
|
|
19
|
+
// src/constants/api/method-constant.ts
|
|
20
|
+
var MethodConstants = /* @__PURE__ */ ((MethodConstants2) => {
|
|
21
|
+
MethodConstants2["WEB_SEARCH_READ"] = "web_search_read";
|
|
22
|
+
MethodConstants2["WEB_READ_GROUP"] = "web_read_group";
|
|
23
|
+
MethodConstants2["WEB_READ"] = "web_read";
|
|
24
|
+
MethodConstants2["WEB_SAVE"] = "web_save";
|
|
25
|
+
MethodConstants2["UNLINK"] = "unlink";
|
|
26
|
+
MethodConstants2["ONCHANGE"] = "onchange";
|
|
27
|
+
MethodConstants2["GET_ONCHANGE_FIELDS"] = "get_fields_onchange";
|
|
28
|
+
MethodConstants2["GET_FIELD_VIEW"] = "get_fields_view_v2";
|
|
29
|
+
return MethodConstants2;
|
|
30
|
+
})(MethodConstants || {});
|
|
31
|
+
|
|
32
|
+
// src/constants/api/uri-constant.ts
|
|
33
|
+
var UriConstants = /* @__PURE__ */ ((UriConstants2) => {
|
|
34
|
+
UriConstants2["AUTH_TOKEN_PATH"] = "/authentication/oauth2/token";
|
|
35
|
+
UriConstants2["GENTOKEN_SOCIAL"] = "/token/generate";
|
|
36
|
+
UriConstants2["CALL_PATH"] = "/call";
|
|
37
|
+
UriConstants2["COMPANY_PATH"] = "/company";
|
|
38
|
+
UriConstants2["PROFILE_PATH"] = "/userinfo";
|
|
39
|
+
UriConstants2["RESET_PASSWORD_PATH"] = "/reset_password";
|
|
40
|
+
UriConstants2["CHANGE_PASSWORD_PATH"] = "/change_password";
|
|
41
|
+
UriConstants2["UPDATE_PASSWORD_PATH"] = "/change_password_parent";
|
|
42
|
+
UriConstants2["LOAD_ACTION"] = `/load_action`;
|
|
43
|
+
UriConstants2["REPORT_PATH"] = `/report`;
|
|
44
|
+
UriConstants2["RUN_ACTION_PATH"] = `/run_action`;
|
|
45
|
+
UriConstants2["UPLOAD_FILE_PATH"] = `/upload/file`;
|
|
46
|
+
UriConstants2["GET_MESSAGE"] = `/chatter/thread/messages`;
|
|
47
|
+
UriConstants2["SENT_MESSAGE"] = `/chatter/message/post`;
|
|
48
|
+
UriConstants2["UPLOAD_IMAGE"] = `/mail/attachment/upload`;
|
|
49
|
+
UriConstants2["DELETE_MESSAGE"] = `/chatter/message/update_content`;
|
|
50
|
+
UriConstants2["IMAGE_PATH"] = `/web/image`;
|
|
51
|
+
UriConstants2["LOAD_MESSAGE"] = `/load_message_failures`;
|
|
52
|
+
UriConstants2["TOKEN"] = `/check_token`;
|
|
53
|
+
UriConstants2["CREATE_UPDATE_PATH"] = `/create_update`;
|
|
54
|
+
UriConstants2["TWOFA_METHOD_PATH"] = `/id/api/v2/call`;
|
|
55
|
+
UriConstants2["SIGNIN_SSO"] = `/signin-sso/oauth`;
|
|
56
|
+
return UriConstants2;
|
|
57
|
+
})(UriConstants || {});
|
|
58
|
+
|
|
59
|
+
// src/constants/field/field-type-constant.ts
|
|
60
|
+
var FieldTypeConstants = /* @__PURE__ */ ((FieldTypeConstants2) => {
|
|
61
|
+
FieldTypeConstants2["CHAR"] = "char";
|
|
62
|
+
FieldTypeConstants2["TEXT"] = "text";
|
|
63
|
+
FieldTypeConstants2["INTEGER"] = "integer";
|
|
64
|
+
FieldTypeConstants2["FLOAT"] = "float";
|
|
65
|
+
FieldTypeConstants2["BOOLEAN"] = "boolean";
|
|
66
|
+
FieldTypeConstants2["DATE"] = "date";
|
|
67
|
+
FieldTypeConstants2["DATETIME"] = "datetime";
|
|
68
|
+
FieldTypeConstants2["BINARY"] = "binary";
|
|
69
|
+
FieldTypeConstants2["SELECTION"] = "selection";
|
|
70
|
+
FieldTypeConstants2["HTML"] = "html";
|
|
71
|
+
FieldTypeConstants2["MANY2ONE"] = "many2one";
|
|
72
|
+
FieldTypeConstants2["ONE2MANY"] = "one2many";
|
|
73
|
+
FieldTypeConstants2["MANY2MANY"] = "many2many";
|
|
74
|
+
FieldTypeConstants2["MONETARY"] = "monetary";
|
|
75
|
+
FieldTypeConstants2["REFERENCE"] = "reference";
|
|
76
|
+
FieldTypeConstants2["FUNCTION"] = "function";
|
|
77
|
+
FieldTypeConstants2["PROPERTY"] = "property";
|
|
78
|
+
return FieldTypeConstants2;
|
|
79
|
+
})(FieldTypeConstants || {});
|
|
80
|
+
|
|
81
|
+
// src/constants/method/method-type-constant.ts
|
|
82
|
+
var MethodType = /* @__PURE__ */ ((MethodType2) => {
|
|
83
|
+
MethodType2[MethodType2["CREATE"] = 0] = "CREATE";
|
|
84
|
+
MethodType2[MethodType2["UPDATE"] = 1] = "UPDATE";
|
|
85
|
+
MethodType2[MethodType2["DELETE"] = 2] = "DELETE";
|
|
86
|
+
MethodType2[MethodType2["UNLINK"] = 3] = "UNLINK";
|
|
87
|
+
MethodType2[MethodType2["NO_CHANGE"] = 4] = "NO_CHANGE";
|
|
88
|
+
return MethodType2;
|
|
89
|
+
})(MethodType || {});
|
|
90
|
+
|
|
91
|
+
// src/constants/model/model-constant.ts
|
|
92
|
+
var ModelConstants = /* @__PURE__ */ ((ModelConstants2) => {
|
|
93
|
+
ModelConstants2["MENU"] = "ir.ui.menu";
|
|
94
|
+
ModelConstants2["USER"] = "res.users";
|
|
95
|
+
ModelConstants2["COMPANY"] = "res.company";
|
|
96
|
+
ModelConstants2["WINDOW_ACTION"] = "ir.actions.act_window";
|
|
97
|
+
ModelConstants2["BASE_IMPORT"] = "base_import.import";
|
|
98
|
+
ModelConstants2["GET_IMPORT"] = "get_import_templates";
|
|
99
|
+
return ModelConstants2;
|
|
100
|
+
})(ModelConstants || {});
|
|
101
|
+
|
|
102
|
+
// src/constants/type/index.ts
|
|
103
|
+
var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
104
|
+
ComponentType2["TREE"] = "tree";
|
|
105
|
+
ComponentType2["GROUP"] = "group";
|
|
106
|
+
ComponentType2["LIST"] = "list";
|
|
107
|
+
ComponentType2["FORM"] = "form";
|
|
108
|
+
ComponentType2["FIELD"] = "field";
|
|
109
|
+
ComponentType2["DIV"] = "div";
|
|
110
|
+
ComponentType2["SPAN"] = "span";
|
|
111
|
+
return ComponentType2;
|
|
112
|
+
})(ComponentType || {});
|
|
113
|
+
var SearchType = {
|
|
114
|
+
FILTER: "filter_by",
|
|
115
|
+
SEARCH: "search_by",
|
|
116
|
+
GROUP: "group_by"
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
// src/constants/widget/widget-avatar-constant.ts
|
|
120
|
+
var WIDGETAVATAR = /* @__PURE__ */ ((WIDGETAVATAR2) => {
|
|
121
|
+
WIDGETAVATAR2["many2one_avatar_user"] = "many2one_avatar_user";
|
|
122
|
+
WIDGETAVATAR2["many2many_avatar_user"] = "many2many_avatar_user";
|
|
123
|
+
return WIDGETAVATAR2;
|
|
124
|
+
})(WIDGETAVATAR || {});
|
|
125
|
+
|
|
126
|
+
// src/constants/widget/widget-color-constant.ts
|
|
127
|
+
var WIDGETCOLOR = /* @__PURE__ */ ((WIDGETCOLOR2) => {
|
|
128
|
+
WIDGETCOLOR2["many2many_tags"] = "many2many_tags";
|
|
129
|
+
WIDGETCOLOR2["helpdesk_sla_many2many_tags"] = "helpdesk_sla_many2many_tags";
|
|
130
|
+
return WIDGETCOLOR2;
|
|
131
|
+
})(WIDGETCOLOR || {});
|
|
132
|
+
|
|
133
|
+
// src/constants/widget/widget-status-constant.ts
|
|
134
|
+
var WIDGETSTATUS = /* @__PURE__ */ ((WIDGETSTATUS2) => {
|
|
135
|
+
WIDGETSTATUS2["sla_status_ids"] = "sla_status_ids";
|
|
136
|
+
return WIDGETSTATUS2;
|
|
137
|
+
})(WIDGETSTATUS || {});
|
|
138
|
+
var WIDGETNOSTRING = /* @__PURE__ */ ((WIDGETNOSTRING2) => {
|
|
139
|
+
WIDGETNOSTRING2["sla_status_ids"] = "sla_status_ids";
|
|
140
|
+
return WIDGETNOSTRING2;
|
|
141
|
+
})(WIDGETNOSTRING || {});
|
|
142
|
+
|
|
143
|
+
exports.ComponentType = ComponentType;
|
|
144
|
+
exports.FieldTypeConstants = FieldTypeConstants;
|
|
145
|
+
exports.KeyConstants = KeyConstants;
|
|
146
|
+
exports.MethodConstants = MethodConstants;
|
|
147
|
+
exports.MethodType = MethodType;
|
|
148
|
+
exports.ModelConstants = ModelConstants;
|
|
149
|
+
exports.SearchType = SearchType;
|
|
150
|
+
exports.UriConstants = UriConstants;
|
|
151
|
+
exports.WIDGETAVATAR = WIDGETAVATAR;
|
|
152
|
+
exports.WIDGETCOLOR = WIDGETCOLOR;
|
|
153
|
+
exports.WIDGETNOSTRING = WIDGETNOSTRING;
|
|
154
|
+
exports.WIDGETSTATUS = WIDGETSTATUS;
|
package/dist/constants.mjs
CHANGED
|
@@ -1,30 +1,141 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
1
|
+
// src/constants/api/key-constant.ts
|
|
2
|
+
var KeyConstants = /* @__PURE__ */ ((KeyConstants2) => {
|
|
3
|
+
KeyConstants2["PROFILE"] = "userinfo";
|
|
4
|
+
KeyConstants2["CURRENT_COMPANY"] = "current_company";
|
|
5
|
+
KeyConstants2["LIST_COMPANY"] = "list_company";
|
|
6
|
+
KeyConstants2["COMPANY_INFO"] = "company_info";
|
|
7
|
+
KeyConstants2["MENU"] = "menus";
|
|
8
|
+
KeyConstants2["GET_VIEW_BY_ACTION"] = "get_view_by_action";
|
|
9
|
+
KeyConstants2["ACTION_DETAIL"] = "action_detail";
|
|
10
|
+
KeyConstants2["GET_DATA_SELECTION"] = "get_data_select";
|
|
11
|
+
KeyConstants2["WEB_SAVE"] = "web_save";
|
|
12
|
+
KeyConstants2["WEB_READ"] = "web_read";
|
|
13
|
+
KeyConstants2["GET_PROVIDER"] = "get_provider";
|
|
14
|
+
return KeyConstants2;
|
|
15
|
+
})(KeyConstants || {});
|
|
16
|
+
|
|
17
|
+
// src/constants/api/method-constant.ts
|
|
18
|
+
var MethodConstants = /* @__PURE__ */ ((MethodConstants2) => {
|
|
19
|
+
MethodConstants2["WEB_SEARCH_READ"] = "web_search_read";
|
|
20
|
+
MethodConstants2["WEB_READ_GROUP"] = "web_read_group";
|
|
21
|
+
MethodConstants2["WEB_READ"] = "web_read";
|
|
22
|
+
MethodConstants2["WEB_SAVE"] = "web_save";
|
|
23
|
+
MethodConstants2["UNLINK"] = "unlink";
|
|
24
|
+
MethodConstants2["ONCHANGE"] = "onchange";
|
|
25
|
+
MethodConstants2["GET_ONCHANGE_FIELDS"] = "get_fields_onchange";
|
|
26
|
+
MethodConstants2["GET_FIELD_VIEW"] = "get_fields_view_v2";
|
|
27
|
+
return MethodConstants2;
|
|
28
|
+
})(MethodConstants || {});
|
|
29
|
+
|
|
30
|
+
// src/constants/api/uri-constant.ts
|
|
31
|
+
var UriConstants = /* @__PURE__ */ ((UriConstants2) => {
|
|
32
|
+
UriConstants2["AUTH_TOKEN_PATH"] = "/authentication/oauth2/token";
|
|
33
|
+
UriConstants2["GENTOKEN_SOCIAL"] = "/token/generate";
|
|
34
|
+
UriConstants2["CALL_PATH"] = "/call";
|
|
35
|
+
UriConstants2["COMPANY_PATH"] = "/company";
|
|
36
|
+
UriConstants2["PROFILE_PATH"] = "/userinfo";
|
|
37
|
+
UriConstants2["RESET_PASSWORD_PATH"] = "/reset_password";
|
|
38
|
+
UriConstants2["CHANGE_PASSWORD_PATH"] = "/change_password";
|
|
39
|
+
UriConstants2["UPDATE_PASSWORD_PATH"] = "/change_password_parent";
|
|
40
|
+
UriConstants2["LOAD_ACTION"] = `/load_action`;
|
|
41
|
+
UriConstants2["REPORT_PATH"] = `/report`;
|
|
42
|
+
UriConstants2["RUN_ACTION_PATH"] = `/run_action`;
|
|
43
|
+
UriConstants2["UPLOAD_FILE_PATH"] = `/upload/file`;
|
|
44
|
+
UriConstants2["GET_MESSAGE"] = `/chatter/thread/messages`;
|
|
45
|
+
UriConstants2["SENT_MESSAGE"] = `/chatter/message/post`;
|
|
46
|
+
UriConstants2["UPLOAD_IMAGE"] = `/mail/attachment/upload`;
|
|
47
|
+
UriConstants2["DELETE_MESSAGE"] = `/chatter/message/update_content`;
|
|
48
|
+
UriConstants2["IMAGE_PATH"] = `/web/image`;
|
|
49
|
+
UriConstants2["LOAD_MESSAGE"] = `/load_message_failures`;
|
|
50
|
+
UriConstants2["TOKEN"] = `/check_token`;
|
|
51
|
+
UriConstants2["CREATE_UPDATE_PATH"] = `/create_update`;
|
|
52
|
+
UriConstants2["TWOFA_METHOD_PATH"] = `/id/api/v2/call`;
|
|
53
|
+
UriConstants2["SIGNIN_SSO"] = `/signin-sso/oauth`;
|
|
54
|
+
return UriConstants2;
|
|
55
|
+
})(UriConstants || {});
|
|
56
|
+
|
|
57
|
+
// src/constants/field/field-type-constant.ts
|
|
58
|
+
var FieldTypeConstants = /* @__PURE__ */ ((FieldTypeConstants2) => {
|
|
59
|
+
FieldTypeConstants2["CHAR"] = "char";
|
|
60
|
+
FieldTypeConstants2["TEXT"] = "text";
|
|
61
|
+
FieldTypeConstants2["INTEGER"] = "integer";
|
|
62
|
+
FieldTypeConstants2["FLOAT"] = "float";
|
|
63
|
+
FieldTypeConstants2["BOOLEAN"] = "boolean";
|
|
64
|
+
FieldTypeConstants2["DATE"] = "date";
|
|
65
|
+
FieldTypeConstants2["DATETIME"] = "datetime";
|
|
66
|
+
FieldTypeConstants2["BINARY"] = "binary";
|
|
67
|
+
FieldTypeConstants2["SELECTION"] = "selection";
|
|
68
|
+
FieldTypeConstants2["HTML"] = "html";
|
|
69
|
+
FieldTypeConstants2["MANY2ONE"] = "many2one";
|
|
70
|
+
FieldTypeConstants2["ONE2MANY"] = "one2many";
|
|
71
|
+
FieldTypeConstants2["MANY2MANY"] = "many2many";
|
|
72
|
+
FieldTypeConstants2["MONETARY"] = "monetary";
|
|
73
|
+
FieldTypeConstants2["REFERENCE"] = "reference";
|
|
74
|
+
FieldTypeConstants2["FUNCTION"] = "function";
|
|
75
|
+
FieldTypeConstants2["PROPERTY"] = "property";
|
|
76
|
+
return FieldTypeConstants2;
|
|
77
|
+
})(FieldTypeConstants || {});
|
|
78
|
+
|
|
79
|
+
// src/constants/method/method-type-constant.ts
|
|
80
|
+
var MethodType = /* @__PURE__ */ ((MethodType2) => {
|
|
81
|
+
MethodType2[MethodType2["CREATE"] = 0] = "CREATE";
|
|
82
|
+
MethodType2[MethodType2["UPDATE"] = 1] = "UPDATE";
|
|
83
|
+
MethodType2[MethodType2["DELETE"] = 2] = "DELETE";
|
|
84
|
+
MethodType2[MethodType2["UNLINK"] = 3] = "UNLINK";
|
|
85
|
+
MethodType2[MethodType2["NO_CHANGE"] = 4] = "NO_CHANGE";
|
|
86
|
+
return MethodType2;
|
|
87
|
+
})(MethodType || {});
|
|
88
|
+
|
|
89
|
+
// src/constants/model/model-constant.ts
|
|
90
|
+
var ModelConstants = /* @__PURE__ */ ((ModelConstants2) => {
|
|
91
|
+
ModelConstants2["MENU"] = "ir.ui.menu";
|
|
92
|
+
ModelConstants2["USER"] = "res.users";
|
|
93
|
+
ModelConstants2["COMPANY"] = "res.company";
|
|
94
|
+
ModelConstants2["WINDOW_ACTION"] = "ir.actions.act_window";
|
|
95
|
+
ModelConstants2["BASE_IMPORT"] = "base_import.import";
|
|
96
|
+
ModelConstants2["GET_IMPORT"] = "get_import_templates";
|
|
97
|
+
return ModelConstants2;
|
|
98
|
+
})(ModelConstants || {});
|
|
99
|
+
|
|
100
|
+
// src/constants/type/index.ts
|
|
101
|
+
var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
102
|
+
ComponentType2["TREE"] = "tree";
|
|
103
|
+
ComponentType2["GROUP"] = "group";
|
|
104
|
+
ComponentType2["LIST"] = "list";
|
|
105
|
+
ComponentType2["FORM"] = "form";
|
|
106
|
+
ComponentType2["FIELD"] = "field";
|
|
107
|
+
ComponentType2["DIV"] = "div";
|
|
108
|
+
ComponentType2["SPAN"] = "span";
|
|
109
|
+
return ComponentType2;
|
|
110
|
+
})(ComponentType || {});
|
|
111
|
+
var SearchType = {
|
|
112
|
+
FILTER: "filter_by",
|
|
113
|
+
SEARCH: "search_by",
|
|
114
|
+
GROUP: "group_by"
|
|
30
115
|
};
|
|
116
|
+
|
|
117
|
+
// src/constants/widget/widget-avatar-constant.ts
|
|
118
|
+
var WIDGETAVATAR = /* @__PURE__ */ ((WIDGETAVATAR2) => {
|
|
119
|
+
WIDGETAVATAR2["many2one_avatar_user"] = "many2one_avatar_user";
|
|
120
|
+
WIDGETAVATAR2["many2many_avatar_user"] = "many2many_avatar_user";
|
|
121
|
+
return WIDGETAVATAR2;
|
|
122
|
+
})(WIDGETAVATAR || {});
|
|
123
|
+
|
|
124
|
+
// src/constants/widget/widget-color-constant.ts
|
|
125
|
+
var WIDGETCOLOR = /* @__PURE__ */ ((WIDGETCOLOR2) => {
|
|
126
|
+
WIDGETCOLOR2["many2many_tags"] = "many2many_tags";
|
|
127
|
+
WIDGETCOLOR2["helpdesk_sla_many2many_tags"] = "helpdesk_sla_many2many_tags";
|
|
128
|
+
return WIDGETCOLOR2;
|
|
129
|
+
})(WIDGETCOLOR || {});
|
|
130
|
+
|
|
131
|
+
// src/constants/widget/widget-status-constant.ts
|
|
132
|
+
var WIDGETSTATUS = /* @__PURE__ */ ((WIDGETSTATUS2) => {
|
|
133
|
+
WIDGETSTATUS2["sla_status_ids"] = "sla_status_ids";
|
|
134
|
+
return WIDGETSTATUS2;
|
|
135
|
+
})(WIDGETSTATUS || {});
|
|
136
|
+
var WIDGETNOSTRING = /* @__PURE__ */ ((WIDGETNOSTRING2) => {
|
|
137
|
+
WIDGETNOSTRING2["sla_status_ids"] = "sla_status_ids";
|
|
138
|
+
return WIDGETNOSTRING2;
|
|
139
|
+
})(WIDGETNOSTRING || {});
|
|
140
|
+
|
|
141
|
+
export { ComponentType, FieldTypeConstants, KeyConstants, MethodConstants, MethodType, ModelConstants, SearchType, UriConstants, WIDGETAVATAR, WIDGETCOLOR, WIDGETNOSTRING, WIDGETSTATUS };
|