awing-library 2.1.81-beta → 2.1.83-beta
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/lib/ACM-AXN/Campaign/CreateOrEdit/TabInfomation.js +2 -1
- package/lib/ACM-AXN/Campaign/CreateOrEdit/TabSubCampaign/AdList.js +4 -4
- package/lib/ACM-AXN/Directory/DomainDirectory/DomainDirectory.test.js +1 -0
- package/lib/ACM-AXN/Directory/DomainDirectory/FolderDetail.test.js +1 -0
- package/lib/ACM-AXN/Directory/MenuDirectory/MenuDirectory.test.js +1 -0
- package/lib/ACM-AXN/Directory/SystemDirectory/SystemDirectory.test.js +1 -0
- package/lib/ACM-AXN/Directory/components/CreateOrEditFolder.test.js +1 -0
- package/lib/ACM-AXN/Directory/components/Permission/AddAuthen.test.js +2 -0
- package/lib/ACM-AXN/Directory/components/Permission/CreateOrEditPermission.test.js +2 -0
- package/lib/ACM-AXN/Directory/components/Permission/ManagementPermission.test.js +3 -0
- package/lib/ACM-AXN/Directory/components/Permission/MenuPermissions/MenuPermissionManagement.test.js +2 -0
- package/lib/ACM-AXN/GroupUser/CreateOrEdit.js +18 -16
- package/lib/ACM-AXN/GroupUser/User/UserComponent.js +10 -4
- package/lib/ACM-AXN/Notifications/NotificationDetail/NotificationList/NotificationItem/Message.d.ts +3 -2
- package/lib/ACM-AXN/Notifications/NotificationDetail/NotificationList/NotificationItem/Message.js +23 -24
- package/lib/ACM-AXN/Notifications/NotificationDetail/NotificationList/NotificationItem/NotificationContent.d.ts +2 -2
- package/lib/ACM-AXN/Notifications/NotificationDetail/NotificationList/NotificationItem/NotificationContent.js +3 -1
- package/lib/ACM-AXN/Notifications/NotificationDetail/NotificationList/NotificationItem/index.d.ts +2 -2
- package/lib/ACM-AXN/Notifications/NotificationDetail/NotificationList/NotificationItem/index.js +3 -1
- package/lib/ACM-AXN/Notifications/Types.d.ts +6 -164
- package/lib/ACM-AXN/Notifications/Types.js +1 -278
- package/lib/ACM-AXN/Page/Container.js +1 -1
- package/lib/ACM-AXN/Page/CreateOrEdit/DrawerAction.js +6 -1
- package/lib/ACM-AXN/TaskScheduler/Components/TriggerInput.js +4 -2
- package/lib/ACM-AXN/TaskScheduler/Constant.d.ts +0 -107
- package/lib/ACM-AXN/TaskScheduler/Constant.js +1 -105
- package/lib/ACM-AXN/TransactionLog/Container.js +6 -4
- package/lib/ACM-AXN/TransactionLog/Detail.js +3 -1
- package/lib/ACM-AXN/TransactionLog/Types.d.ts +1 -107
- package/lib/ACM-AXN/TransactionLog/Types.js +1 -109
- package/lib/ACM-AXN/TransactionLog/Utils.d.ts +0 -103
- package/lib/ACM-AXN/TransactionLog/Utils.js +1 -104
- package/lib/AWING/Directory/CreateDirectory.js +2 -2
- package/lib/Context/index.js +1 -0
- package/lib/Context/interface.d.ts +1 -0
- package/lib/translate/en/translation.json +4 -0
- package/lib/translate/vi/translation.json +4 -0
- package/package.json +1 -1
|
@@ -5,286 +5,9 @@
|
|
|
5
5
|
*
|
|
6
6
|
**/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.
|
|
9
|
-
var Timestamp = /** @class */ (function () {
|
|
10
|
-
function Timestamp(data) {
|
|
11
|
-
if (data) {
|
|
12
|
-
for (var property in data) {
|
|
13
|
-
if (data.hasOwnProperty(property))
|
|
14
|
-
this[property] = data[property];
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
Timestamp.prototype.init = function (_data) {
|
|
19
|
-
if (_data) {
|
|
20
|
-
this.seconds = _data['seconds'];
|
|
21
|
-
this.nanos = _data['nanos'];
|
|
22
|
-
}
|
|
23
|
-
};
|
|
24
|
-
Timestamp.fromJS = function (data) {
|
|
25
|
-
data = typeof data === 'object' ? data : {};
|
|
26
|
-
var result = new Timestamp();
|
|
27
|
-
result.init(data);
|
|
28
|
-
return result;
|
|
29
|
-
};
|
|
30
|
-
Timestamp.prototype.toJSON = function (data) {
|
|
31
|
-
data = typeof data === 'object' ? data : {};
|
|
32
|
-
data['seconds'] = this.seconds;
|
|
33
|
-
data['nanos'] = this.nanos;
|
|
34
|
-
return data;
|
|
35
|
-
};
|
|
36
|
-
return Timestamp;
|
|
37
|
-
}());
|
|
38
|
-
exports.Timestamp = Timestamp;
|
|
8
|
+
exports.NotificationMessageStatus = void 0;
|
|
39
9
|
var NotificationMessageStatus;
|
|
40
10
|
(function (NotificationMessageStatus) {
|
|
41
11
|
NotificationMessageStatus[NotificationMessageStatus["Unread"] = 0] = "Unread";
|
|
42
12
|
NotificationMessageStatus[NotificationMessageStatus["Read"] = 1] = "Read";
|
|
43
13
|
})(NotificationMessageStatus || (exports.NotificationMessageStatus = NotificationMessageStatus = {}));
|
|
44
|
-
var NotificationMessage = /** @class */ (function () {
|
|
45
|
-
function NotificationMessage(data) {
|
|
46
|
-
if (data) {
|
|
47
|
-
for (var property in data) {
|
|
48
|
-
if (data.hasOwnProperty(property))
|
|
49
|
-
this[property] = data[property];
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
NotificationMessage.prototype.init = function (_data) {
|
|
54
|
-
if (_data) {
|
|
55
|
-
this.id = _data['id'];
|
|
56
|
-
this.userId = _data['userId'];
|
|
57
|
-
this.sagaTransactionType = _data['sagaTransactionType'];
|
|
58
|
-
if (Array.isArray(_data['fields'])) {
|
|
59
|
-
;
|
|
60
|
-
this.fields = [];
|
|
61
|
-
for (var _i = 0, _a = _data['fields']; _i < _a.length; _i++) {
|
|
62
|
-
var item = _a[_i];
|
|
63
|
-
this.fields.push(NotificationMessageField.fromJS(item));
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
this.status = _data['status'];
|
|
67
|
-
this.createdDate = _data['createdDate']
|
|
68
|
-
? Timestamp.fromJS(_data['createdDate'])
|
|
69
|
-
: undefined;
|
|
70
|
-
}
|
|
71
|
-
};
|
|
72
|
-
NotificationMessage.fromJS = function (data) {
|
|
73
|
-
data = typeof data === 'object' ? data : {};
|
|
74
|
-
var result = new NotificationMessage();
|
|
75
|
-
result.init(data);
|
|
76
|
-
return result;
|
|
77
|
-
};
|
|
78
|
-
NotificationMessage.prototype.toJSON = function (data) {
|
|
79
|
-
data = typeof data === 'object' ? data : {};
|
|
80
|
-
data['id'] = this.id;
|
|
81
|
-
data['userId'] = this.userId;
|
|
82
|
-
data['sagaTransactionType'] = this.sagaTransactionType;
|
|
83
|
-
if (Array.isArray(this.fields)) {
|
|
84
|
-
data['fields'] = [];
|
|
85
|
-
for (var _i = 0, _a = this.fields; _i < _a.length; _i++) {
|
|
86
|
-
var item = _a[_i];
|
|
87
|
-
data['fields'].push(item.toJSON());
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
data['status'] = this.status;
|
|
91
|
-
data['createdDate'] = this.createdDate
|
|
92
|
-
? this.createdDate.toJSON()
|
|
93
|
-
: undefined;
|
|
94
|
-
return data;
|
|
95
|
-
};
|
|
96
|
-
return NotificationMessage;
|
|
97
|
-
}());
|
|
98
|
-
exports.NotificationMessage = NotificationMessage;
|
|
99
|
-
var NotificationMessageField = /** @class */ (function () {
|
|
100
|
-
function NotificationMessageField(data) {
|
|
101
|
-
if (data) {
|
|
102
|
-
for (var property in data) {
|
|
103
|
-
if (data.hasOwnProperty(property))
|
|
104
|
-
this[property] = data[property];
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
NotificationMessageField.prototype.init = function (_data) {
|
|
109
|
-
if (_data) {
|
|
110
|
-
this.name = _data['name'];
|
|
111
|
-
this.value = _data['value'];
|
|
112
|
-
this.text = _data['text'];
|
|
113
|
-
}
|
|
114
|
-
};
|
|
115
|
-
NotificationMessageField.fromJS = function (data) {
|
|
116
|
-
data = typeof data === 'object' ? data : {};
|
|
117
|
-
var result = new NotificationMessageField();
|
|
118
|
-
result.init(data);
|
|
119
|
-
return result;
|
|
120
|
-
};
|
|
121
|
-
NotificationMessageField.prototype.toJSON = function (data) {
|
|
122
|
-
data = typeof data === 'object' ? data : {};
|
|
123
|
-
data['name'] = this.name;
|
|
124
|
-
data['value'] = this.value;
|
|
125
|
-
data['text'] = this.text;
|
|
126
|
-
return data;
|
|
127
|
-
};
|
|
128
|
-
return NotificationMessageField;
|
|
129
|
-
}());
|
|
130
|
-
exports.NotificationMessageField = NotificationMessageField;
|
|
131
|
-
var PagedList_1OfNotificationMessage = /** @class */ (function () {
|
|
132
|
-
function PagedList_1OfNotificationMessage(data) {
|
|
133
|
-
if (data) {
|
|
134
|
-
for (var property in data) {
|
|
135
|
-
if (data.hasOwnProperty(property))
|
|
136
|
-
this[property] = data[property];
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
PagedList_1OfNotificationMessage.prototype.init = function (_data) {
|
|
141
|
-
if (_data) {
|
|
142
|
-
if (Array.isArray(_data['items'])) {
|
|
143
|
-
this.items = [];
|
|
144
|
-
for (var _i = 0, _a = _data['items']; _i < _a.length; _i++) {
|
|
145
|
-
var item = _a[_i];
|
|
146
|
-
this.items.push(NotificationMessage.fromJS(item));
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
this.pageCount = _data['pageCount'];
|
|
150
|
-
this.totalItemCount = _data['totalItemCount'];
|
|
151
|
-
this.pageNumber = _data['pageNumber'];
|
|
152
|
-
this.pageSize = _data['pageSize'];
|
|
153
|
-
this.hasPreviousPage = _data['hasPreviousPage'];
|
|
154
|
-
this.hasNextPage = _data['hasNextPage'];
|
|
155
|
-
}
|
|
156
|
-
};
|
|
157
|
-
PagedList_1OfNotificationMessage.fromJS = function (data) {
|
|
158
|
-
data = typeof data === 'object' ? data : {};
|
|
159
|
-
var result = new PagedList_1OfNotificationMessage();
|
|
160
|
-
result.init(data);
|
|
161
|
-
return result;
|
|
162
|
-
};
|
|
163
|
-
PagedList_1OfNotificationMessage.prototype.toJSON = function (data) {
|
|
164
|
-
data = typeof data === 'object' ? data : {};
|
|
165
|
-
if (Array.isArray(this.items)) {
|
|
166
|
-
data['items'] = [];
|
|
167
|
-
for (var _i = 0, _a = this.items; _i < _a.length; _i++) {
|
|
168
|
-
var item = _a[_i];
|
|
169
|
-
data['items'].push(item.toJSON());
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
data['pageCount'] = this.pageCount;
|
|
173
|
-
data['totalItemCount'] = this.totalItemCount;
|
|
174
|
-
data['pageNumber'] = this.pageNumber;
|
|
175
|
-
data['pageSize'] = this.pageSize;
|
|
176
|
-
data['hasPreviousPage'] = this.hasPreviousPage;
|
|
177
|
-
data['hasNextPage'] = this.hasNextPage;
|
|
178
|
-
return data;
|
|
179
|
-
};
|
|
180
|
-
return PagedList_1OfNotificationMessage;
|
|
181
|
-
}());
|
|
182
|
-
exports.PagedList_1OfNotificationMessage = PagedList_1OfNotificationMessage;
|
|
183
|
-
var SagaTransactionType;
|
|
184
|
-
(function (SagaTransactionType) {
|
|
185
|
-
SagaTransactionType[SagaTransactionType["None"] = 0] = "None";
|
|
186
|
-
SagaTransactionType[SagaTransactionType["StartDay"] = 1] = "StartDay";
|
|
187
|
-
SagaTransactionType[SagaTransactionType["CampaignCreate"] = 1000] = "CampaignCreate";
|
|
188
|
-
SagaTransactionType[SagaTransactionType["CampaignUpdate"] = 1001] = "CampaignUpdate";
|
|
189
|
-
SagaTransactionType[SagaTransactionType["CampaignDelete"] = 1002] = "CampaignDelete";
|
|
190
|
-
SagaTransactionType[SagaTransactionType["CampaignBlocked"] = 1003] = "CampaignBlocked";
|
|
191
|
-
SagaTransactionType[SagaTransactionType["PlaceCreate"] = 1100] = "PlaceCreate";
|
|
192
|
-
SagaTransactionType[SagaTransactionType["PlaceUpdate"] = 1101] = "PlaceUpdate";
|
|
193
|
-
SagaTransactionType[SagaTransactionType["PlaceDelete"] = 1102] = "PlaceDelete";
|
|
194
|
-
SagaTransactionType[SagaTransactionType["PlaceJoinRequest"] = 1103] = "PlaceJoinRequest";
|
|
195
|
-
SagaTransactionType[SagaTransactionType["PlaceJoinApprove"] = 1104] = "PlaceJoinApprove";
|
|
196
|
-
SagaTransactionType[SagaTransactionType["PlaceJoinReject"] = 1105] = "PlaceJoinReject";
|
|
197
|
-
SagaTransactionType[SagaTransactionType["PlaceJoinDelete"] = 1106] = "PlaceJoinDelete";
|
|
198
|
-
SagaTransactionType[SagaTransactionType["PlaceUnjoinRequest"] = 1107] = "PlaceUnjoinRequest";
|
|
199
|
-
SagaTransactionType[SagaTransactionType["PlaceUnjoinApprove"] = 1108] = "PlaceUnjoinApprove";
|
|
200
|
-
SagaTransactionType[SagaTransactionType["PlaceUnjoinReject"] = 1109] = "PlaceUnjoinReject";
|
|
201
|
-
SagaTransactionType[SagaTransactionType["PlaceUnjoinDelete"] = 1110] = "PlaceUnjoinDelete";
|
|
202
|
-
SagaTransactionType[SagaTransactionType["PlaceCustomerInfoUpdate"] = 1111] = "PlaceCustomerInfoUpdate";
|
|
203
|
-
SagaTransactionType[SagaTransactionType["PlaceStatsNeedCalculate"] = 1112] = "PlaceStatsNeedCalculate";
|
|
204
|
-
SagaTransactionType[SagaTransactionType["PlaceStatsUpdate"] = 1113] = "PlaceStatsUpdate";
|
|
205
|
-
SagaTransactionType[SagaTransactionType["PlaceClearCache"] = 1114] = "PlaceClearCache";
|
|
206
|
-
SagaTransactionType[SagaTransactionType["PlaceCustomerInfoCreate"] = 1115] = "PlaceCustomerInfoCreate";
|
|
207
|
-
SagaTransactionType[SagaTransactionType["PlaceCustomerInfoDelete"] = 1116] = "PlaceCustomerInfoDelete";
|
|
208
|
-
SagaTransactionType[SagaTransactionType["PlaceGroupCreate"] = 1117] = "PlaceGroupCreate";
|
|
209
|
-
SagaTransactionType[SagaTransactionType["PlaceGroupUpdate"] = 1118] = "PlaceGroupUpdate";
|
|
210
|
-
SagaTransactionType[SagaTransactionType["PlaceGroupDelete"] = 1119] = "PlaceGroupDelete";
|
|
211
|
-
SagaTransactionType[SagaTransactionType["PlaceStatusUpdate"] = 1120] = "PlaceStatusUpdate";
|
|
212
|
-
SagaTransactionType[SagaTransactionType["DomainCreate"] = 1200] = "DomainCreate";
|
|
213
|
-
SagaTransactionType[SagaTransactionType["DomainUpdate"] = 1201] = "DomainUpdate";
|
|
214
|
-
SagaTransactionType[SagaTransactionType["DomainDelete"] = 1202] = "DomainDelete";
|
|
215
|
-
SagaTransactionType[SagaTransactionType["DomainJoinRequest"] = 1203] = "DomainJoinRequest";
|
|
216
|
-
SagaTransactionType[SagaTransactionType["DomainJoinApprove"] = 1204] = "DomainJoinApprove";
|
|
217
|
-
SagaTransactionType[SagaTransactionType["DomainJoinReject"] = 1205] = "DomainJoinReject";
|
|
218
|
-
SagaTransactionType[SagaTransactionType["DomainJoinDelete"] = 1206] = "DomainJoinDelete";
|
|
219
|
-
SagaTransactionType[SagaTransactionType["DomainJoinUpdate"] = 1207] = "DomainJoinUpdate";
|
|
220
|
-
SagaTransactionType[SagaTransactionType["DomainUnjoinRequest"] = 1208] = "DomainUnjoinRequest";
|
|
221
|
-
SagaTransactionType[SagaTransactionType["DomainUnjoinApprove"] = 1209] = "DomainUnjoinApprove";
|
|
222
|
-
SagaTransactionType[SagaTransactionType["DomainUnjoinReject"] = 1210] = "DomainUnjoinReject";
|
|
223
|
-
SagaTransactionType[SagaTransactionType["DomainUnjoinDelete"] = 1211] = "DomainUnjoinDelete";
|
|
224
|
-
SagaTransactionType[SagaTransactionType["DomainClearCache"] = 1212] = "DomainClearCache";
|
|
225
|
-
SagaTransactionType[SagaTransactionType["PageCreate"] = 1300] = "PageCreate";
|
|
226
|
-
SagaTransactionType[SagaTransactionType["PageUpdate"] = 1301] = "PageUpdate";
|
|
227
|
-
SagaTransactionType[SagaTransactionType["PageDelete"] = 1302] = "PageDelete";
|
|
228
|
-
SagaTransactionType[SagaTransactionType["PageArchive"] = 1303] = "PageArchive";
|
|
229
|
-
SagaTransactionType[SagaTransactionType["DirectoryCreate"] = 1400] = "DirectoryCreate";
|
|
230
|
-
SagaTransactionType[SagaTransactionType["DirectoryUpdate"] = 1401] = "DirectoryUpdate";
|
|
231
|
-
SagaTransactionType[SagaTransactionType["DirectoryDelete"] = 1402] = "DirectoryDelete";
|
|
232
|
-
SagaTransactionType[SagaTransactionType["DirectoryPermissionUpdate"] = 1501] = "DirectoryPermissionUpdate";
|
|
233
|
-
SagaTransactionType[SagaTransactionType["DirectoryPermissionDelete"] = 1502] = "DirectoryPermissionDelete";
|
|
234
|
-
SagaTransactionType[SagaTransactionType["SystemDirectoryPermissionUpdate"] = 1551] = "SystemDirectoryPermissionUpdate";
|
|
235
|
-
SagaTransactionType[SagaTransactionType["SystemDirectoryPermissionDelete"] = 1552] = "SystemDirectoryPermissionDelete";
|
|
236
|
-
SagaTransactionType[SagaTransactionType["StaticFileUpload"] = 1601] = "StaticFileUpload";
|
|
237
|
-
SagaTransactionType[SagaTransactionType["StaticFileDelete"] = 1602] = "StaticFileDelete";
|
|
238
|
-
SagaTransactionType[SagaTransactionType["StaticFileDownload"] = 1603] = "StaticFileDownload";
|
|
239
|
-
SagaTransactionType[SagaTransactionType["FolderFileCreate"] = 1700] = "FolderFileCreate";
|
|
240
|
-
SagaTransactionType[SagaTransactionType["ScheduleNeedCalculate"] = 1803] = "ScheduleNeedCalculate";
|
|
241
|
-
SagaTransactionType[SagaTransactionType["ScheduleAllCalculate"] = 1804] = "ScheduleAllCalculate";
|
|
242
|
-
SagaTransactionType[SagaTransactionType["ScheduleCampaignCalculate"] = 1805] = "ScheduleCampaignCalculate";
|
|
243
|
-
SagaTransactionType[SagaTransactionType["ApCreate"] = 1900] = "ApCreate";
|
|
244
|
-
SagaTransactionType[SagaTransactionType["ApUpdate"] = 1901] = "ApUpdate";
|
|
245
|
-
SagaTransactionType[SagaTransactionType["ApDelete"] = 1902] = "ApDelete";
|
|
246
|
-
SagaTransactionType[SagaTransactionType["ApControllerClearCache"] = 1903] = "ApControllerClearCache";
|
|
247
|
-
SagaTransactionType[SagaTransactionType["AuthenticationProfileCreate"] = 2000] = "AuthenticationProfileCreate";
|
|
248
|
-
SagaTransactionType[SagaTransactionType["AuthenticationProfileUpdate"] = 2001] = "AuthenticationProfileUpdate";
|
|
249
|
-
SagaTransactionType[SagaTransactionType["AuthenticationProfileDelete"] = 2002] = "AuthenticationProfileDelete";
|
|
250
|
-
SagaTransactionType[SagaTransactionType["CaptiveClearCache"] = 2100] = "CaptiveClearCache";
|
|
251
|
-
SagaTransactionType[SagaTransactionType["GroupCreate"] = 2200] = "GroupCreate";
|
|
252
|
-
SagaTransactionType[SagaTransactionType["GroupUpdate"] = 2201] = "GroupUpdate";
|
|
253
|
-
SagaTransactionType[SagaTransactionType["GroupDelete"] = 2202] = "GroupDelete";
|
|
254
|
-
SagaTransactionType[SagaTransactionType["UserCreate"] = 2300] = "UserCreate";
|
|
255
|
-
SagaTransactionType[SagaTransactionType["UserUpdate"] = 2301] = "UserUpdate";
|
|
256
|
-
SagaTransactionType[SagaTransactionType["UserDelete"] = 2302] = "UserDelete";
|
|
257
|
-
SagaTransactionType[SagaTransactionType["UserChangePassword"] = 2303] = "UserChangePassword";
|
|
258
|
-
SagaTransactionType[SagaTransactionType["UserAddToDomain"] = 2304] = "UserAddToDomain";
|
|
259
|
-
SagaTransactionType[SagaTransactionType["UserRemoveFromDomain"] = 2305] = "UserRemoveFromDomain";
|
|
260
|
-
SagaTransactionType[SagaTransactionType["TemplateCreate"] = 2400] = "TemplateCreate";
|
|
261
|
-
SagaTransactionType[SagaTransactionType["TemplateUpdate"] = 2401] = "TemplateUpdate";
|
|
262
|
-
SagaTransactionType[SagaTransactionType["TemplateDelete"] = 2402] = "TemplateDelete";
|
|
263
|
-
SagaTransactionType[SagaTransactionType["RemarketingListCreate"] = 2500] = "RemarketingListCreate";
|
|
264
|
-
SagaTransactionType[SagaTransactionType["RemarketingListUpdate"] = 2501] = "RemarketingListUpdate";
|
|
265
|
-
SagaTransactionType[SagaTransactionType["RemarketingListDelete"] = 2502] = "RemarketingListDelete";
|
|
266
|
-
SagaTransactionType[SagaTransactionType["UserLogin"] = 2600] = "UserLogin";
|
|
267
|
-
SagaTransactionType[SagaTransactionType["UserLogout"] = 2601] = "UserLogout";
|
|
268
|
-
SagaTransactionType[SagaTransactionType["WizardCreate"] = 2700] = "WizardCreate";
|
|
269
|
-
SagaTransactionType[SagaTransactionType["WizardUpdate"] = 2701] = "WizardUpdate";
|
|
270
|
-
SagaTransactionType[SagaTransactionType["WizardDelete"] = 2702] = "WizardDelete";
|
|
271
|
-
SagaTransactionType[SagaTransactionType["HolidayCreate"] = 2800] = "HolidayCreate";
|
|
272
|
-
SagaTransactionType[SagaTransactionType["HolidayUpdate"] = 2801] = "HolidayUpdate";
|
|
273
|
-
SagaTransactionType[SagaTransactionType["HolidayDelete"] = 2802] = "HolidayDelete";
|
|
274
|
-
SagaTransactionType[SagaTransactionType["AttributeCreate"] = 2900] = "AttributeCreate";
|
|
275
|
-
SagaTransactionType[SagaTransactionType["AttributeUpdate"] = 2901] = "AttributeUpdate";
|
|
276
|
-
SagaTransactionType[SagaTransactionType["AttributeDelete"] = 2902] = "AttributeDelete";
|
|
277
|
-
SagaTransactionType[SagaTransactionType["InventoryCreate"] = 3000] = "InventoryCreate";
|
|
278
|
-
SagaTransactionType[SagaTransactionType["InventoryUpdate"] = 3001] = "InventoryUpdate";
|
|
279
|
-
SagaTransactionType[SagaTransactionType["InventoryDelete"] = 3002] = "InventoryDelete";
|
|
280
|
-
SagaTransactionType[SagaTransactionType["MenuPermissionCreate"] = 3100] = "MenuPermissionCreate";
|
|
281
|
-
SagaTransactionType[SagaTransactionType["MenuPermissionUpdate"] = 3101] = "MenuPermissionUpdate";
|
|
282
|
-
SagaTransactionType[SagaTransactionType["MenuPermissionDelete"] = 3102] = "MenuPermissionDelete";
|
|
283
|
-
SagaTransactionType[SagaTransactionType["AudienceSumupCalculate"] = 3200] = "AudienceSumupCalculate";
|
|
284
|
-
SagaTransactionType[SagaTransactionType["AttributeTypeCreate"] = 3300] = "AttributeTypeCreate";
|
|
285
|
-
SagaTransactionType[SagaTransactionType["AttributeTypeUpdate"] = 3301] = "AttributeTypeUpdate";
|
|
286
|
-
SagaTransactionType[SagaTransactionType["AttributeTypeDelete"] = 3302] = "AttributeTypeDelete";
|
|
287
|
-
SagaTransactionType[SagaTransactionType["TaskSchedulerCreate"] = 3400] = "TaskSchedulerCreate";
|
|
288
|
-
SagaTransactionType[SagaTransactionType["TaskSchedulerUpdate"] = 3401] = "TaskSchedulerUpdate";
|
|
289
|
-
SagaTransactionType[SagaTransactionType["TaskSchedulerDelete"] = 3402] = "TaskSchedulerDelete";
|
|
290
|
-
})(SagaTransactionType || (exports.SagaTransactionType = SagaTransactionType = {}));
|
|
@@ -159,7 +159,7 @@ var PageContainer = function () {
|
|
|
159
159
|
prevQuery.current = (0, lodash_1.cloneDeep)(input);
|
|
160
160
|
}, [directories, handleFetchPaging]);
|
|
161
161
|
var handlePreview = function (id, domainId) {
|
|
162
|
-
var url = "".concat(CONFIGS.CAPTIVE_DOMAIN, "/").concat(CONFIGS.PAGE_LOGIN_PREVIEW, "?loginId=").concat(id, "&domainId=").concat(domainId, "&isNetworkCampaign=
|
|
162
|
+
var url = "".concat(CONFIGS.CAPTIVE_DOMAIN, "/").concat(CONFIGS.PAGE_LOGIN_PREVIEW, "?loginId=").concat(id, "&domainId=").concat(domainId, "&isNetworkCampaign=").concat(Boolean(service.domainsGetAll).toString());
|
|
163
163
|
window.open(url, '_blank');
|
|
164
164
|
};
|
|
165
165
|
var handlePreviewClick = function (id) {
|
|
@@ -36,7 +36,12 @@ var DrawerAction = function (_a) {
|
|
|
36
36
|
setAnchorEl(null);
|
|
37
37
|
};
|
|
38
38
|
var handlePreview = function (domainId) {
|
|
39
|
-
var
|
|
39
|
+
var params = new URLSearchParams({
|
|
40
|
+
loginId: pageId,
|
|
41
|
+
domainId: domainId,
|
|
42
|
+
isNetworkCampaign: Boolean(service.domainsGetAll).toString(),
|
|
43
|
+
});
|
|
44
|
+
var url = "".concat(CONFIGS.CAPTIVE_DOMAIN, "/").concat(CONFIGS.PAGE_LOGIN_PREVIEW, "?").concat(params.toString());
|
|
40
45
|
window.open(url, '_blank');
|
|
41
46
|
};
|
|
42
47
|
var handlePreviewPage = function (e) {
|
|
@@ -6,14 +6,16 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
7
7
|
var material_1 = require("@mui/material");
|
|
8
8
|
var react_i18next_1 = require("react-i18next");
|
|
9
|
-
var Constant_1 = require("../Constant");
|
|
10
9
|
var BasicInput_1 = __importDefault(require("./BasicInput"));
|
|
11
10
|
var validation_1 = require("../../../AWING/ultis/validation");
|
|
11
|
+
var Context_1 = require("../../../Context");
|
|
12
12
|
var TriggerInput = function (_a) {
|
|
13
13
|
var handleChange = _a.handleChange, jobModel = _a.jobModel;
|
|
14
14
|
var t = (0, react_i18next_1.useTranslation)().t;
|
|
15
|
+
var transactionType = (0, Context_1.useAwing)().transactionType;
|
|
16
|
+
var SagaTransactionTypes = Object.entries(transactionType).map(function (x) { return ({ id: x[1], name: x[0] }); });
|
|
15
17
|
return ((0, jsx_runtime_1.jsxs)(material_1.Grid, { container: true, children: [(0, jsx_runtime_1.jsx)(material_1.Grid, { item: true, xs: 2, style: { paddingRight: '10px' }, children: (0, jsx_runtime_1.jsx)(BasicInput_1.default, { fullWidth: true, onChange: handleChange, name: "triggerTopic", value: jobModel.triggerTopic, checkValid: validation_1.textValidation, label: t('TaskScheduler.TriggerTopic') }) }), (0, jsx_runtime_1.jsx)(material_1.Grid, { item: true, xs: 10, children: (0, jsx_runtime_1.jsx)(BasicInput_1.default, { required: true, fullWidth: true, select: true,
|
|
16
18
|
// isError={Boolean(jobModelValid?.triggerEventValid)}
|
|
17
|
-
name: "triggerEvent", label: t("TaskScheduler.TriggerEvent"), onChange: handleChange, value: jobModel.triggerEvent, children:
|
|
19
|
+
name: "triggerEvent", label: t("TaskScheduler.TriggerEvent"), onChange: handleChange, value: jobModel.triggerEvent, children: SagaTransactionTypes.map(function (item) { return ((0, jsx_runtime_1.jsx)(material_1.MenuItem, { value: item.name, children: item.name }, item.name)); }) }) })] }));
|
|
18
20
|
};
|
|
19
21
|
exports.default = TriggerInput;
|
|
@@ -3,113 +3,6 @@ export declare const Constant: {
|
|
|
3
3
|
CREATE_PATH: string;
|
|
4
4
|
EDIT_PATH: string;
|
|
5
5
|
};
|
|
6
|
-
export declare const SAGA_TRANSACTION_TYPE: {
|
|
7
|
-
None: number;
|
|
8
|
-
StartDay: number;
|
|
9
|
-
CampaignCreate: number;
|
|
10
|
-
CampaignUpdate: number;
|
|
11
|
-
CampaignDelete: number;
|
|
12
|
-
CampaignBlocked: number;
|
|
13
|
-
PlaceCreate: number;
|
|
14
|
-
PlaceUpdate: number;
|
|
15
|
-
PlaceDelete: number;
|
|
16
|
-
PlaceJoinRequest: number;
|
|
17
|
-
PlaceJoinApprove: number;
|
|
18
|
-
PlaceJoinReject: number;
|
|
19
|
-
PlaceJoinDelete: number;
|
|
20
|
-
PlaceUnjoinRequest: number;
|
|
21
|
-
PlaceUnjoinApprove: number;
|
|
22
|
-
PlaceUnjoinReject: number;
|
|
23
|
-
PlaceUnjoinDelete: number;
|
|
24
|
-
PlaceCustomerInfoUpdate: number;
|
|
25
|
-
PlaceStatsNeedCalculate: number;
|
|
26
|
-
PlaceStatsUpdate: number;
|
|
27
|
-
PlaceClearCache: number;
|
|
28
|
-
PlaceCustomerInfoCreate: number;
|
|
29
|
-
PlaceCustomerInfoDelete: number;
|
|
30
|
-
PlaceGroupCreate: number;
|
|
31
|
-
PlaceGroupUpdate: number;
|
|
32
|
-
PlaceGroupDelete: number;
|
|
33
|
-
PlaceStatusUpdate: number;
|
|
34
|
-
DomainCreate: number;
|
|
35
|
-
DomainUpdate: number;
|
|
36
|
-
DomainDelete: number;
|
|
37
|
-
DomainJoinRequest: number;
|
|
38
|
-
DomainJoinApprove: number;
|
|
39
|
-
DomainJoinReject: number;
|
|
40
|
-
DomainJoinDelete: number;
|
|
41
|
-
DomainJoinUpdate: number;
|
|
42
|
-
DomainUnjoinRequest: number;
|
|
43
|
-
DomainUnjoinApprove: number;
|
|
44
|
-
DomainUnjoinReject: number;
|
|
45
|
-
DomainUnjoinDelete: number;
|
|
46
|
-
DomainClearCache: number;
|
|
47
|
-
PageCreate: number;
|
|
48
|
-
PageUpdate: number;
|
|
49
|
-
PageDelete: number;
|
|
50
|
-
PageArchive: number;
|
|
51
|
-
DirectoryCreate: number;
|
|
52
|
-
DirectoryUpdate: number;
|
|
53
|
-
DirectoryDelete: number;
|
|
54
|
-
DirectoryPermissionUpdate: number;
|
|
55
|
-
DirectoryPermissionDelete: number;
|
|
56
|
-
SystemDirectoryPermissionUpdate: number;
|
|
57
|
-
SystemDirectoryPermissionDelete: number;
|
|
58
|
-
StaticFileUpload: number;
|
|
59
|
-
StaticFileDelete: number;
|
|
60
|
-
StaticFileDownload: number;
|
|
61
|
-
FolderFileCreate: number;
|
|
62
|
-
ScheduleNeedCalculate: number;
|
|
63
|
-
ScheduleAllCalculate: number;
|
|
64
|
-
ScheduleCampaignCalculate: number;
|
|
65
|
-
ApCreate: number;
|
|
66
|
-
ApUpdate: number;
|
|
67
|
-
ApDelete: number;
|
|
68
|
-
ApControllerClearCache: number;
|
|
69
|
-
AuthenticationProfileCreate: number;
|
|
70
|
-
AuthenticationProfileUpdate: number;
|
|
71
|
-
AuthenticationProfileDelete: number;
|
|
72
|
-
CaptiveClearCache: number;
|
|
73
|
-
GroupCreate: number;
|
|
74
|
-
GroupUpdate: number;
|
|
75
|
-
GroupDelete: number;
|
|
76
|
-
UserCreate: number;
|
|
77
|
-
UserUpdate: number;
|
|
78
|
-
UserDelete: number;
|
|
79
|
-
UserChangePassword: number;
|
|
80
|
-
UserAddToDomain: number;
|
|
81
|
-
UserRemoveFromDomain: number;
|
|
82
|
-
TemplateCreate: number;
|
|
83
|
-
TemplateUpdate: number;
|
|
84
|
-
TemplateDelete: number;
|
|
85
|
-
RemarketingListCreate: number;
|
|
86
|
-
RemarketingListUpdate: number;
|
|
87
|
-
RemarketingListDelete: number;
|
|
88
|
-
Login: number;
|
|
89
|
-
Logout: number;
|
|
90
|
-
WizardCreate: number;
|
|
91
|
-
WizardUpdate: number;
|
|
92
|
-
WizardDelete: number;
|
|
93
|
-
HolidayCreate: number;
|
|
94
|
-
HolidayUpdate: number;
|
|
95
|
-
HolidayDelete: number;
|
|
96
|
-
AttributeCreate: number;
|
|
97
|
-
AttributeUpdate: number;
|
|
98
|
-
AttributeDelete: number;
|
|
99
|
-
InventoryCreate: number;
|
|
100
|
-
InventoryUpdate: number;
|
|
101
|
-
InventoryDelete: number;
|
|
102
|
-
MenuPermissionCreate: number;
|
|
103
|
-
MenuPermissionUpdate: number;
|
|
104
|
-
MenuPermissionDelete: number;
|
|
105
|
-
TaskSchedulerCreate: number;
|
|
106
|
-
TaskSchedulerUpdate: number;
|
|
107
|
-
TaskSchedulerDelete: number;
|
|
108
|
-
};
|
|
109
|
-
export declare const SagaTransactionTypes: {
|
|
110
|
-
id: number;
|
|
111
|
-
name: string;
|
|
112
|
-
}[];
|
|
113
6
|
export declare const JobTypes: {
|
|
114
7
|
id: number;
|
|
115
8
|
name: JobTypeEnum;
|
|
@@ -1,115 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.JobTypes = exports.
|
|
3
|
+
exports.JobTypes = exports.Constant = void 0;
|
|
4
4
|
var Enums_1 = require("./Enums");
|
|
5
5
|
exports.Constant = {
|
|
6
6
|
CREATE_PATH: 'Creat',
|
|
7
7
|
EDIT_PATH: 'Edit'
|
|
8
8
|
};
|
|
9
|
-
exports.SAGA_TRANSACTION_TYPE = {
|
|
10
|
-
None: 0,
|
|
11
|
-
StartDay: 1,
|
|
12
|
-
CampaignCreate: 1000,
|
|
13
|
-
CampaignUpdate: 1001,
|
|
14
|
-
CampaignDelete: 1002,
|
|
15
|
-
CampaignBlocked: 1003,
|
|
16
|
-
PlaceCreate: 1100,
|
|
17
|
-
PlaceUpdate: 1101,
|
|
18
|
-
PlaceDelete: 1102,
|
|
19
|
-
PlaceJoinRequest: 1103,
|
|
20
|
-
PlaceJoinApprove: 1104,
|
|
21
|
-
PlaceJoinReject: 1105,
|
|
22
|
-
PlaceJoinDelete: 1106,
|
|
23
|
-
PlaceUnjoinRequest: 1107,
|
|
24
|
-
PlaceUnjoinApprove: 1108,
|
|
25
|
-
PlaceUnjoinReject: 1109,
|
|
26
|
-
PlaceUnjoinDelete: 1110,
|
|
27
|
-
PlaceCustomerInfoUpdate: 1111,
|
|
28
|
-
PlaceStatsNeedCalculate: 1112,
|
|
29
|
-
PlaceStatsUpdate: 1113,
|
|
30
|
-
PlaceClearCache: 1114,
|
|
31
|
-
PlaceCustomerInfoCreate: 1115,
|
|
32
|
-
PlaceCustomerInfoDelete: 1116,
|
|
33
|
-
PlaceGroupCreate: 1117,
|
|
34
|
-
PlaceGroupUpdate: 1118,
|
|
35
|
-
PlaceGroupDelete: 1119,
|
|
36
|
-
PlaceStatusUpdate: 1120,
|
|
37
|
-
DomainCreate: 1200,
|
|
38
|
-
DomainUpdate: 1201,
|
|
39
|
-
DomainDelete: 1202,
|
|
40
|
-
DomainJoinRequest: 1203,
|
|
41
|
-
DomainJoinApprove: 1204,
|
|
42
|
-
DomainJoinReject: 1205,
|
|
43
|
-
DomainJoinDelete: 1206,
|
|
44
|
-
DomainJoinUpdate: 1207,
|
|
45
|
-
DomainUnjoinRequest: 1208,
|
|
46
|
-
DomainUnjoinApprove: 1209,
|
|
47
|
-
DomainUnjoinReject: 1210,
|
|
48
|
-
DomainUnjoinDelete: 1211,
|
|
49
|
-
DomainClearCache: 1212,
|
|
50
|
-
PageCreate: 1300,
|
|
51
|
-
PageUpdate: 1301,
|
|
52
|
-
PageDelete: 1302,
|
|
53
|
-
PageArchive: 1303,
|
|
54
|
-
DirectoryCreate: 1400,
|
|
55
|
-
DirectoryUpdate: 1401,
|
|
56
|
-
DirectoryDelete: 1402,
|
|
57
|
-
DirectoryPermissionUpdate: 1501,
|
|
58
|
-
DirectoryPermissionDelete: 1502,
|
|
59
|
-
SystemDirectoryPermissionUpdate: 1551,
|
|
60
|
-
SystemDirectoryPermissionDelete: 1552,
|
|
61
|
-
StaticFileUpload: 1601,
|
|
62
|
-
StaticFileDelete: 1602,
|
|
63
|
-
StaticFileDownload: 1603,
|
|
64
|
-
FolderFileCreate: 1700,
|
|
65
|
-
ScheduleNeedCalculate: 1803,
|
|
66
|
-
ScheduleAllCalculate: 1804,
|
|
67
|
-
ScheduleCampaignCalculate: 1805,
|
|
68
|
-
ApCreate: 1900,
|
|
69
|
-
ApUpdate: 1901,
|
|
70
|
-
ApDelete: 1902,
|
|
71
|
-
ApControllerClearCache: 1903,
|
|
72
|
-
AuthenticationProfileCreate: 2000,
|
|
73
|
-
AuthenticationProfileUpdate: 2001,
|
|
74
|
-
AuthenticationProfileDelete: 2002,
|
|
75
|
-
CaptiveClearCache: 2100,
|
|
76
|
-
GroupCreate: 2200,
|
|
77
|
-
GroupUpdate: 2201,
|
|
78
|
-
GroupDelete: 2202,
|
|
79
|
-
UserCreate: 2300,
|
|
80
|
-
UserUpdate: 2301,
|
|
81
|
-
UserDelete: 2302,
|
|
82
|
-
UserChangePassword: 2303,
|
|
83
|
-
UserAddToDomain: 2304,
|
|
84
|
-
UserRemoveFromDomain: 2305,
|
|
85
|
-
TemplateCreate: 2400,
|
|
86
|
-
TemplateUpdate: 2401,
|
|
87
|
-
TemplateDelete: 2402,
|
|
88
|
-
RemarketingListCreate: 2500,
|
|
89
|
-
RemarketingListUpdate: 2501,
|
|
90
|
-
RemarketingListDelete: 2502,
|
|
91
|
-
Login: 2600,
|
|
92
|
-
Logout: 2601,
|
|
93
|
-
WizardCreate: 2700,
|
|
94
|
-
WizardUpdate: 2701,
|
|
95
|
-
WizardDelete: 2702,
|
|
96
|
-
HolidayCreate: 2800,
|
|
97
|
-
HolidayUpdate: 2801,
|
|
98
|
-
HolidayDelete: 2802,
|
|
99
|
-
AttributeCreate: 2900,
|
|
100
|
-
AttributeUpdate: 2901,
|
|
101
|
-
AttributeDelete: 2902,
|
|
102
|
-
InventoryCreate: 3000,
|
|
103
|
-
InventoryUpdate: 3001,
|
|
104
|
-
InventoryDelete: 3002,
|
|
105
|
-
MenuPermissionCreate: 3100,
|
|
106
|
-
MenuPermissionUpdate: 3101,
|
|
107
|
-
MenuPermissionDelete: 3102,
|
|
108
|
-
TaskSchedulerCreate: 3400,
|
|
109
|
-
TaskSchedulerUpdate: 3401,
|
|
110
|
-
TaskSchedulerDelete: 3402,
|
|
111
|
-
};
|
|
112
|
-
exports.SagaTransactionTypes = Object.entries(exports.SAGA_TRANSACTION_TYPE).map(function (x) { return ({ id: x[1], name: x[0] }); });
|
|
113
9
|
exports.JobTypes = Object.entries(Enums_1.JobTypeEnum)
|
|
114
10
|
.map(function (_a, x) {
|
|
115
11
|
var key = _a[0], value = _a[1];
|
|
@@ -27,10 +27,12 @@ var Router_1 = require("../../AWING/Router");
|
|
|
27
27
|
var AWING_1 = require("../../AWING");
|
|
28
28
|
var Helpers_1 = require("../../Utils/Helpers");
|
|
29
29
|
var Utils_1 = require("./Utils");
|
|
30
|
+
var Context_1 = require("../../Context");
|
|
30
31
|
function Container() {
|
|
31
32
|
var navigate = (0, Router_1.useNavigate)();
|
|
32
33
|
var t = (0, react_i18next_1.useTranslation)().t;
|
|
33
34
|
var service = (0, Hooks_1.default)().service;
|
|
35
|
+
var transactionType = (0, Context_1.useAwing)().transactionType;
|
|
34
36
|
var _a = (0, react_1.useState)(false), loading = _a[0], setLoading = _a[1];
|
|
35
37
|
var _b = (0, react_1.useState)(), transactionLog = _b[0], setTransactionLog = _b[1];
|
|
36
38
|
var _c = (0, react_1.useState)(), users = _c[0], setUsers = _c[1];
|
|
@@ -93,9 +95,9 @@ function Container() {
|
|
|
93
95
|
fieldName: 'transactionType',
|
|
94
96
|
label: t('TransactionLog.TransactionType'),
|
|
95
97
|
type: 'autocomplete',
|
|
96
|
-
options: Object.entries(
|
|
98
|
+
options: Object.entries(transactionType).map(function (_a) {
|
|
97
99
|
var text = _a[0], value = _a[1];
|
|
98
|
-
if (value ===
|
|
100
|
+
if (value === transactionType.None) {
|
|
99
101
|
return {
|
|
100
102
|
value: '',
|
|
101
103
|
text: t('Common.SelectAll'),
|
|
@@ -150,8 +152,8 @@ function Container() {
|
|
|
150
152
|
headerName: t('TransactionLog.TransactionType'),
|
|
151
153
|
width: 300,
|
|
152
154
|
valueGetter: function (row) {
|
|
153
|
-
var index = Object.values(
|
|
154
|
-
return Object.keys(
|
|
155
|
+
var index = Object.values(transactionType).indexOf(row.transactionType);
|
|
156
|
+
return Object.keys(transactionType)[index];
|
|
155
157
|
},
|
|
156
158
|
},
|
|
157
159
|
{
|
|
@@ -78,6 +78,7 @@ var ClassicDrawer_1 = __importDefault(require("../../Commons/Components/ClassicD
|
|
|
78
78
|
var Helpers_1 = require("../../Utils/Helpers");
|
|
79
79
|
var AWING_1 = require("../../AWING");
|
|
80
80
|
var Utils_1 = require("./Utils");
|
|
81
|
+
var Context_1 = require("../../Context");
|
|
81
82
|
var newStyles = {
|
|
82
83
|
variables: {
|
|
83
84
|
light: {
|
|
@@ -106,6 +107,7 @@ function Detail() {
|
|
|
106
107
|
var id = (0, react_router_dom_1.useParams)().id;
|
|
107
108
|
var t = (0, react_i18next_1.useTranslation)().t;
|
|
108
109
|
var service = (0, Hooks_1.default)().service;
|
|
110
|
+
var transactionType = (0, Context_1.useAwing)().transactionType;
|
|
109
111
|
var _b = (0, react_1.useState)(false), loading = _b[0], setLoading = _b[1];
|
|
110
112
|
var _c = (0, react_1.useState)(), user = _c[0], setUser = _c[1];
|
|
111
113
|
var _d = (0, react_1.useState)(), transactionLog = _d[0], setTransactionLog = _d[1];
|
|
@@ -169,7 +171,7 @@ function Detail() {
|
|
|
169
171
|
label: t('TransactionLog.TransactionType'),
|
|
170
172
|
required: true,
|
|
171
173
|
inputProps: { readOnly: true },
|
|
172
|
-
defaultValue: Object.keys(
|
|
174
|
+
defaultValue: Object.keys(transactionType)[Object.values(transactionType).indexOf(Number(transactionLog === null || transactionLog === void 0 ? void 0 : transactionLog.transactionType))],
|
|
173
175
|
},
|
|
174
176
|
{
|
|
175
177
|
fieldName: 'objectId',
|