complexqa_frontend_core 1.18.1 → 1.18.2
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/package.json
CHANGED
|
@@ -10,7 +10,6 @@ const FK_FIELDS = [
|
|
|
10
10
|
'device_context_id',
|
|
11
11
|
'locale_context_id',
|
|
12
12
|
'deployment_target_context_id',
|
|
13
|
-
'test_account_id',
|
|
14
13
|
];
|
|
15
14
|
|
|
16
15
|
function build_execution_context_listing_columns(locale)
|
|
@@ -43,8 +42,6 @@ function build_execution_context_details_columns(locale)
|
|
|
43
42
|
'host',
|
|
44
43
|
'base_url',
|
|
45
44
|
'build_version',
|
|
46
|
-
'context_snapshot',
|
|
47
|
-
'custom_field_values',
|
|
48
45
|
'created_at',
|
|
49
46
|
'updated_at',
|
|
50
47
|
];
|
|
@@ -5,8 +5,7 @@ import { is_object } from "../../utils/utils.js";
|
|
|
5
5
|
/**
|
|
6
6
|
* Снимок окружения на момент события (баг, результат прогона, автотест).
|
|
7
7
|
*
|
|
8
|
-
* Ссылается на справочники familyContext по FK
|
|
9
|
-
* копия для истории (если справочник переименуют). host/base_url — проектный URL.
|
|
8
|
+
* Ссылается на справочники familyContext по FK. host/base_url — проектный URL.
|
|
10
9
|
*
|
|
11
10
|
* @version v.0.1 (03/06/2026)
|
|
12
11
|
*/
|
|
@@ -31,10 +30,6 @@ export class typeExecutionContext extends familyGeneralElement
|
|
|
31
30
|
base_url;
|
|
32
31
|
build_version;
|
|
33
32
|
|
|
34
|
-
context_snapshot;
|
|
35
|
-
custom_field_values;
|
|
36
|
-
test_account_id;
|
|
37
|
-
|
|
38
33
|
created_at;
|
|
39
34
|
updated_at;
|
|
40
35
|
|
|
@@ -57,9 +52,6 @@ export class typeExecutionContext extends familyGeneralElement
|
|
|
57
52
|
host : 'string | max:255 | optional',
|
|
58
53
|
base_url : 'string | max:2048 | optional',
|
|
59
54
|
build_version : 'string | max:128 | optional',
|
|
60
|
-
context_snapshot : 'object | optional',
|
|
61
|
-
custom_field_values : 'object | optional',
|
|
62
|
-
test_account_id : 'integer | optional',
|
|
63
55
|
created_at : 'timestamp | require',
|
|
64
56
|
updated_at : 'timestamp | optional',
|
|
65
57
|
};
|
|
@@ -103,9 +95,6 @@ export class typeExecutionContext extends familyGeneralElement
|
|
|
103
95
|
host : 'Host',
|
|
104
96
|
base_url : 'Base URL',
|
|
105
97
|
build_version : 'Build version',
|
|
106
|
-
context_snapshot : 'Context snapshot',
|
|
107
|
-
custom_field_values : 'Custom fields',
|
|
108
|
-
test_account_id : 'Test account',
|
|
109
98
|
created_at : 'Created at',
|
|
110
99
|
updated_at : 'Updated at',
|
|
111
100
|
},
|
|
@@ -125,9 +114,6 @@ export class typeExecutionContext extends familyGeneralElement
|
|
|
125
114
|
host : 'Хост',
|
|
126
115
|
base_url : 'Базовый URL',
|
|
127
116
|
build_version : 'Версия сборки',
|
|
128
|
-
context_snapshot : 'Снимок контекста',
|
|
129
|
-
custom_field_values : 'Доп. поля',
|
|
130
|
-
test_account_id : 'Тестовый аккаунт',
|
|
131
117
|
created_at : 'Создано',
|
|
132
118
|
updated_at : 'Обновлено',
|
|
133
119
|
},
|