@leav/ui 1.13.0-19a7798b → 1.13.0-2d58210a
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/_gqlTypes/index.d.ts +109 -33
- package/dist/_gqlTypes/index.js +46 -31
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/attributes/attributeDetailsFragment.js +3 -0
- package/dist/_queries/attributes/attributeDetailsFragment.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
- package/dist/components/Filters/_types.d.ts +6 -0
- package/dist/components/Filters/_types.js +2 -1
- package/dist/components/Filters/_types.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/smart-filter/SmartFilterAttributeDropdown.js +2 -3
- package/dist/components/Filters/filter-items/filter-type/smart-filter/SmartFilterAttributeDropdown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/smart-filter/useGetSmartFilterData.d.ts +2 -4
- package/dist/components/Filters/filter-items/filter-type/smart-filter/useGetSmartFilterData.js +22 -16
- package/dist/components/Filters/filter-items/filter-type/smart-filter/useGetSmartFilterData.js.map +1 -1
- package/dist/components/Filters/useFilters.d.ts +306 -0
- package/dist/components/Filters/useTransformFilters.js +1 -0
- package/dist/components/Filters/useTransformFilters.js.map +1 -1
- package/package.json +1 -1
|
@@ -174,6 +174,10 @@ export type ApplicationsFiltersInput = {
|
|
|
174
174
|
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
175
175
|
type?: InputMaybe<Array<InputMaybe<ApplicationType>>>;
|
|
176
176
|
};
|
|
177
|
+
export type AttributeDependentValueInput = {
|
|
178
|
+
attributeId: Scalars['ID']['input'];
|
|
179
|
+
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
180
|
+
};
|
|
177
181
|
export declare enum AttributeFormat {
|
|
178
182
|
boolean = "boolean",
|
|
179
183
|
color = "color",
|
|
@@ -205,7 +209,7 @@ export type AttributeInput = {
|
|
|
205
209
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206
210
|
reverse_link?: InputMaybe<Scalars['String']['input']>;
|
|
207
211
|
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
208
|
-
/** only for link attribute */
|
|
212
|
+
/** only for link and standard attribute */
|
|
209
213
|
smart_filter?: InputMaybe<SmartFilterConfInput>;
|
|
210
214
|
type?: InputMaybe<AttributeType>;
|
|
211
215
|
unique?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -243,40 +247,27 @@ export declare enum AttributesSortableFields {
|
|
|
243
247
|
multiple_values = "multiple_values",
|
|
244
248
|
type = "type"
|
|
245
249
|
}
|
|
250
|
+
export declare enum AutomationRuleActions {
|
|
251
|
+
condition = "condition",
|
|
252
|
+
error = "error",
|
|
253
|
+
jexlCalculation = "jexlCalculation",
|
|
254
|
+
log = "log",
|
|
255
|
+
modifyAttribute = "modifyAttribute",
|
|
256
|
+
notification = "notification"
|
|
257
|
+
}
|
|
246
258
|
export declare enum AutomationRuleEventAction {
|
|
247
|
-
API_KEY_DELETE = "API_KEY_DELETE",
|
|
248
|
-
API_KEY_SAVE = "API_KEY_SAVE",
|
|
249
|
-
APP_DELETE = "APP_DELETE",
|
|
250
|
-
APP_SAVE = "APP_SAVE",
|
|
251
|
-
ATTRIBUTE_DELETE = "ATTRIBUTE_DELETE",
|
|
252
|
-
ATTRIBUTE_SAVE = "ATTRIBUTE_SAVE",
|
|
253
|
-
AUTOMATION_RULE_CREATE = "AUTOMATION_RULE_CREATE",
|
|
254
|
-
AUTOMATION_RULE_UPDATE = "AUTOMATION_RULE_UPDATE",
|
|
255
|
-
CONFIG_IMPORT_END = "CONFIG_IMPORT_END",
|
|
256
|
-
CONFIG_IMPORT_START = "CONFIG_IMPORT_START",
|
|
257
|
-
DATA_IMPORT_END = "DATA_IMPORT_END",
|
|
258
|
-
DATA_IMPORT_START = "DATA_IMPORT_START",
|
|
259
|
-
EXPORT_END = "EXPORT_END",
|
|
260
|
-
EXPORT_START = "EXPORT_START",
|
|
261
|
-
GLOBAL_SETTINGS_SAVE = "GLOBAL_SETTINGS_SAVE",
|
|
262
|
-
LIBRARY_DELETE = "LIBRARY_DELETE",
|
|
263
|
-
LIBRARY_PURGE = "LIBRARY_PURGE",
|
|
264
|
-
LIBRARY_SAVE = "LIBRARY_SAVE",
|
|
265
|
-
PERMISSION_SAVE = "PERMISSION_SAVE",
|
|
266
|
-
RECORD_DELETE = "RECORD_DELETE",
|
|
267
259
|
RECORD_INIT = "RECORD_INIT",
|
|
268
260
|
RECORD_SAVE = "RECORD_SAVE",
|
|
269
|
-
|
|
270
|
-
TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
|
|
271
|
-
TREE_DELETE = "TREE_DELETE",
|
|
272
|
-
TREE_DELETE_ELEMENT = "TREE_DELETE_ELEMENT",
|
|
273
|
-
TREE_MOVE_ELEMENT = "TREE_MOVE_ELEMENT",
|
|
274
|
-
TREE_SAVE = "TREE_SAVE",
|
|
275
|
-
VALUE_DELETE = "VALUE_DELETE",
|
|
276
|
-
VALUE_SAVE = "VALUE_SAVE",
|
|
277
|
-
VERSION_PROFILE_DELETE = "VERSION_PROFILE_DELETE",
|
|
278
|
-
VERSION_PROFILE_SAVE = "VERSION_PROFILE_SAVE"
|
|
261
|
+
VALUE_SAVE = "VALUE_SAVE"
|
|
279
262
|
}
|
|
263
|
+
export type AutomationRulePipelineInput = {
|
|
264
|
+
steps: Array<AutomationRulePipelineStepInput>;
|
|
265
|
+
};
|
|
266
|
+
export type AutomationRulePipelineStepInput = {
|
|
267
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
268
|
+
params: Scalars['JSON']['input'];
|
|
269
|
+
type: AutomationRuleActions;
|
|
270
|
+
};
|
|
280
271
|
export declare enum AutomationRuleSortableFields {
|
|
281
272
|
id = "id"
|
|
282
273
|
}
|
|
@@ -308,14 +299,26 @@ export declare enum AvailableLanguage {
|
|
|
308
299
|
en = "en",
|
|
309
300
|
fr = "fr"
|
|
310
301
|
}
|
|
302
|
+
export type CampaignToRenew = {
|
|
303
|
+
endDate: Scalars['String']['input'];
|
|
304
|
+
id: Scalars['String']['input'];
|
|
305
|
+
startDate: Scalars['String']['input'];
|
|
306
|
+
};
|
|
307
|
+
export type CampaignToUpdateDates = {
|
|
308
|
+
endDate: Scalars['String']['input'];
|
|
309
|
+
id: Scalars['String']['input'];
|
|
310
|
+
startDate: Scalars['String']['input'];
|
|
311
|
+
};
|
|
311
312
|
export type ChildrenAsRecordValuePermissionFilterInput = {
|
|
312
313
|
action: RecordPermissionsActions;
|
|
313
314
|
attributeId: Scalars['ID']['input'];
|
|
314
315
|
libraryId: Scalars['ID']['input'];
|
|
315
316
|
};
|
|
316
317
|
export type CreateAutomationRuleInput = {
|
|
318
|
+
active: Scalars['Boolean']['input'];
|
|
317
319
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
318
320
|
label: Scalars['String']['input'];
|
|
321
|
+
pipeline: AutomationRulePipelineInput;
|
|
319
322
|
trigger: AutomationRuleTriggerInput;
|
|
320
323
|
};
|
|
321
324
|
export type CreateRecordDataInput = {
|
|
@@ -360,7 +363,10 @@ export declare enum EventAction {
|
|
|
360
363
|
APP_SAVE = "APP_SAVE",
|
|
361
364
|
ATTRIBUTE_DELETE = "ATTRIBUTE_DELETE",
|
|
362
365
|
ATTRIBUTE_SAVE = "ATTRIBUTE_SAVE",
|
|
366
|
+
AUTOMATION_PIPELINE_FAILURE = "AUTOMATION_PIPELINE_FAILURE",
|
|
367
|
+
AUTOMATION_PIPELINE_SUCCESS = "AUTOMATION_PIPELINE_SUCCESS",
|
|
363
368
|
AUTOMATION_RULE_CREATE = "AUTOMATION_RULE_CREATE",
|
|
369
|
+
AUTOMATION_RULE_DELETE = "AUTOMATION_RULE_DELETE",
|
|
364
370
|
AUTOMATION_RULE_UPDATE = "AUTOMATION_RULE_UPDATE",
|
|
365
371
|
CONFIG_IMPORT_END = "CONFIG_IMPORT_END",
|
|
366
372
|
CONFIG_IMPORT_START = "CONFIG_IMPORT_START",
|
|
@@ -373,6 +379,8 @@ export declare enum EventAction {
|
|
|
373
379
|
LIBRARY_PURGE = "LIBRARY_PURGE",
|
|
374
380
|
LIBRARY_SAVE = "LIBRARY_SAVE",
|
|
375
381
|
PERMISSION_SAVE = "PERMISSION_SAVE",
|
|
382
|
+
PLANNING_RECONDUCTION_END = "PLANNING_RECONDUCTION_END",
|
|
383
|
+
PLANNING_RECONDUCTION_START = "PLANNING_RECONDUCTION_START",
|
|
376
384
|
RECORD_DELETE = "RECORD_DELETE",
|
|
377
385
|
RECORD_SAVE = "RECORD_SAVE",
|
|
378
386
|
TASKS_DELETE = "TASKS_DELETE",
|
|
@@ -466,6 +474,16 @@ export declare enum FormsSortableFields {
|
|
|
466
474
|
library = "library",
|
|
467
475
|
system = "system"
|
|
468
476
|
}
|
|
477
|
+
export declare enum GenerationStatus {
|
|
478
|
+
DONE = "DONE",
|
|
479
|
+
GENERATION_FAILED = "GENERATION_FAILED",
|
|
480
|
+
GENERATION_IN_PROGRESS = "GENERATION_IN_PROGRESS",
|
|
481
|
+
GENERATION_IN_PROGRESS_WITH_FAILURE = "GENERATION_IN_PROGRESS_WITH_FAILURE",
|
|
482
|
+
PREPARATION_FAILED = "PREPARATION_FAILED",
|
|
483
|
+
PREPARATION_IN_PROGRESS = "PREPARATION_IN_PROGRESS",
|
|
484
|
+
TRANSMISSION_FAILED = "TRANSMISSION_FAILED",
|
|
485
|
+
TRANSMISSION_IN_PROGRESS = "TRANSMISSION_IN_PROGRESS"
|
|
486
|
+
}
|
|
469
487
|
export type GlobalSettingsFileInput = {
|
|
470
488
|
library: Scalars['String']['input'];
|
|
471
489
|
recordId: Scalars['String']['input'];
|
|
@@ -540,7 +558,10 @@ export declare enum LogAction {
|
|
|
540
558
|
APP_SAVE = "APP_SAVE",
|
|
541
559
|
ATTRIBUTE_DELETE = "ATTRIBUTE_DELETE",
|
|
542
560
|
ATTRIBUTE_SAVE = "ATTRIBUTE_SAVE",
|
|
561
|
+
AUTOMATION_PIPELINE_FAILURE = "AUTOMATION_PIPELINE_FAILURE",
|
|
562
|
+
AUTOMATION_PIPELINE_SUCCESS = "AUTOMATION_PIPELINE_SUCCESS",
|
|
543
563
|
AUTOMATION_RULE_CREATE = "AUTOMATION_RULE_CREATE",
|
|
564
|
+
AUTOMATION_RULE_DELETE = "AUTOMATION_RULE_DELETE",
|
|
544
565
|
AUTOMATION_RULE_UPDATE = "AUTOMATION_RULE_UPDATE",
|
|
545
566
|
CONFIG_IMPORT_END = "CONFIG_IMPORT_END",
|
|
546
567
|
CONFIG_IMPORT_START = "CONFIG_IMPORT_START",
|
|
@@ -553,6 +574,8 @@ export declare enum LogAction {
|
|
|
553
574
|
LIBRARY_PURGE = "LIBRARY_PURGE",
|
|
554
575
|
LIBRARY_SAVE = "LIBRARY_SAVE",
|
|
555
576
|
PERMISSION_SAVE = "PERMISSION_SAVE",
|
|
577
|
+
PLANNING_RECONDUCTION_END = "PLANNING_RECONDUCTION_END",
|
|
578
|
+
PLANNING_RECONDUCTION_START = "PLANNING_RECONDUCTION_START",
|
|
556
579
|
RECORD_DELETE = "RECORD_DELETE",
|
|
557
580
|
RECORD_SAVE = "RECORD_SAVE",
|
|
558
581
|
TASKS_DELETE = "TASKS_DELETE",
|
|
@@ -815,6 +838,26 @@ export type RecordsPagination = {
|
|
|
815
838
|
limit: Scalars['Int']['input'];
|
|
816
839
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
817
840
|
};
|
|
841
|
+
export type ReportFramingAttributeFilterItemInput = {
|
|
842
|
+
attributeId: Scalars['String']['input'];
|
|
843
|
+
values: Array<ReportFramingAttributeFilterValueItemInput>;
|
|
844
|
+
withEmptyValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
845
|
+
};
|
|
846
|
+
export type ReportFramingAttributeFilterValueItemInput = {
|
|
847
|
+
formattedValue?: InputMaybe<Scalars['String']['input']>;
|
|
848
|
+
rawValue: Scalars['String']['input'];
|
|
849
|
+
};
|
|
850
|
+
export type ReportFramingContentInput = {
|
|
851
|
+
filters?: InputMaybe<ReportFramingFiltersInput>;
|
|
852
|
+
};
|
|
853
|
+
export type ReportFramingFiltersInput = {
|
|
854
|
+
/** only for excel header filter display */
|
|
855
|
+
attributes?: InputMaybe<Array<ReportFramingAttributeFilterItemInput>>;
|
|
856
|
+
campaigns?: InputMaybe<Array<RecordFilterInput>>;
|
|
857
|
+
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
858
|
+
categoryStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
859
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
860
|
+
};
|
|
818
861
|
export type SaveValueBulkMappingInput = {
|
|
819
862
|
dependenciesFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>>>;
|
|
820
863
|
values: Array<SaveValueBulkMappingValueInput>;
|
|
@@ -886,12 +929,18 @@ export declare enum TaskStatus {
|
|
|
886
929
|
}
|
|
887
930
|
export declare enum TaskType {
|
|
888
931
|
EXPORT = "EXPORT",
|
|
932
|
+
FRAMING_REPORT = "FRAMING_REPORT",
|
|
889
933
|
IMPORT_CONFIG = "IMPORT_CONFIG",
|
|
890
934
|
IMPORT_DATA = "IMPORT_DATA",
|
|
891
935
|
INDEXATION = "INDEXATION",
|
|
892
936
|
PURGE_MULTIPLE_VALUES = "PURGE_MULTIPLE_VALUES",
|
|
937
|
+
RENEW_CAMPAIGNS = "RENEW_CAMPAIGNS",
|
|
893
938
|
SAVE_VALUE_BULK = "SAVE_VALUE_BULK"
|
|
894
939
|
}
|
|
940
|
+
export type ThematicToRenew = {
|
|
941
|
+
campaignId: Scalars['String']['input'];
|
|
942
|
+
thematicId: Scalars['String']['input'];
|
|
943
|
+
};
|
|
895
944
|
export declare enum TreeBehavior {
|
|
896
945
|
files = "files",
|
|
897
946
|
standard = "standard"
|
|
@@ -957,7 +1006,8 @@ export type UpdateAutomationRuleInput = {
|
|
|
957
1006
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
958
1007
|
id: Scalars['ID']['input'];
|
|
959
1008
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
960
|
-
|
|
1009
|
+
pipeline?: InputMaybe<AutomationRulePipelineInput>;
|
|
1010
|
+
trigger?: InputMaybe<AutomationRuleTriggerInput>;
|
|
961
1011
|
};
|
|
962
1012
|
export type UploadFiltersInput = {
|
|
963
1013
|
uid?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1165,6 +1215,9 @@ export type AttributeDetailsStandardAttributeFragment = {
|
|
|
1165
1215
|
multiple_values: boolean;
|
|
1166
1216
|
multi_link_display_option?: MultiDisplayOption | null;
|
|
1167
1217
|
multi_tree_display_option?: MultiDisplayOption | null;
|
|
1218
|
+
smart_filter?: {
|
|
1219
|
+
enable: boolean;
|
|
1220
|
+
} | null;
|
|
1168
1221
|
metadata_fields?: Array<{
|
|
1169
1222
|
id: string;
|
|
1170
1223
|
label?: any | null;
|
|
@@ -3500,6 +3553,9 @@ export type AttributesByLibAttributeWithPermissionsStandardAttributeFragment = {
|
|
|
3500
3553
|
allowListUpdate?: boolean | null;
|
|
3501
3554
|
values?: Array<string> | null;
|
|
3502
3555
|
} | null;
|
|
3556
|
+
smart_filter?: {
|
|
3557
|
+
enable: boolean;
|
|
3558
|
+
} | null;
|
|
3503
3559
|
permissions: {
|
|
3504
3560
|
access_attribute: boolean;
|
|
3505
3561
|
};
|
|
@@ -3577,6 +3633,9 @@ export type StandardAttributeDetailsFragment = {
|
|
|
3577
3633
|
allowListUpdate?: boolean | null;
|
|
3578
3634
|
values?: Array<string> | null;
|
|
3579
3635
|
} | null;
|
|
3636
|
+
smart_filter?: {
|
|
3637
|
+
enable: boolean;
|
|
3638
|
+
} | null;
|
|
3580
3639
|
};
|
|
3581
3640
|
export type LinkAttributeDetailsFragment = {
|
|
3582
3641
|
label?: any | null;
|
|
@@ -4017,6 +4076,9 @@ export type GetAttributeByIdQuery = {
|
|
|
4017
4076
|
multiple_values: boolean;
|
|
4018
4077
|
multi_link_display_option?: MultiDisplayOption | null;
|
|
4019
4078
|
multi_tree_display_option?: MultiDisplayOption | null;
|
|
4079
|
+
smart_filter?: {
|
|
4080
|
+
enable: boolean;
|
|
4081
|
+
} | null;
|
|
4020
4082
|
metadata_fields?: Array<{
|
|
4021
4083
|
id: string;
|
|
4022
4084
|
label?: any | null;
|
|
@@ -4246,6 +4308,9 @@ export type SaveAttributeMutation = {
|
|
|
4246
4308
|
multiple_values: boolean;
|
|
4247
4309
|
multi_link_display_option?: MultiDisplayOption | null;
|
|
4248
4310
|
multi_tree_display_option?: MultiDisplayOption | null;
|
|
4311
|
+
smart_filter?: {
|
|
4312
|
+
enable: boolean;
|
|
4313
|
+
} | null;
|
|
4249
4314
|
metadata_fields?: Array<{
|
|
4250
4315
|
id: string;
|
|
4251
4316
|
label?: any | null;
|
|
@@ -7667,6 +7732,9 @@ export type GetAttributesByLibWithPermissionsQuery = {
|
|
|
7667
7732
|
allowListUpdate?: boolean | null;
|
|
7668
7733
|
values?: Array<string> | null;
|
|
7669
7734
|
} | null;
|
|
7735
|
+
smart_filter?: {
|
|
7736
|
+
enable: boolean;
|
|
7737
|
+
} | null;
|
|
7670
7738
|
permissions: {
|
|
7671
7739
|
access_attribute: boolean;
|
|
7672
7740
|
};
|
|
@@ -7754,6 +7822,9 @@ export type ExplorerAttributesQuery = {
|
|
|
7754
7822
|
allowListUpdate?: boolean | null;
|
|
7755
7823
|
values?: Array<string> | null;
|
|
7756
7824
|
} | null;
|
|
7825
|
+
smart_filter?: {
|
|
7826
|
+
enable: boolean;
|
|
7827
|
+
} | null;
|
|
7757
7828
|
permissions: {
|
|
7758
7829
|
access_attribute: boolean;
|
|
7759
7830
|
};
|
|
@@ -8256,7 +8327,7 @@ export type SmartFilterListValuesQueryVariables = Exact<{
|
|
|
8256
8327
|
export type SmartFilterListValuesQuery = {
|
|
8257
8328
|
listDistinctValues?: Array<{
|
|
8258
8329
|
count: number;
|
|
8259
|
-
|
|
8330
|
+
recordValue?: {
|
|
8260
8331
|
id: string;
|
|
8261
8332
|
whoAmI: {
|
|
8262
8333
|
id: string;
|
|
@@ -8270,6 +8341,11 @@ export type SmartFilterListValuesQuery = {
|
|
|
8270
8341
|
};
|
|
8271
8342
|
};
|
|
8272
8343
|
} | null;
|
|
8344
|
+
} | {
|
|
8345
|
+
count: number;
|
|
8346
|
+
standardValue?: any | null;
|
|
8347
|
+
} | {
|
|
8348
|
+
count: number;
|
|
8273
8349
|
}> | null;
|
|
8274
8350
|
};
|
|
8275
8351
|
export type FilterTreeDataQueryQueryVariables = Exact<{
|
package/dist/_gqlTypes/index.js
CHANGED
|
@@ -64,40 +64,20 @@ export var AttributesSortableFields;
|
|
|
64
64
|
AttributesSortableFields["multiple_values"] = "multiple_values";
|
|
65
65
|
AttributesSortableFields["type"] = "type";
|
|
66
66
|
})(AttributesSortableFields || (AttributesSortableFields = {}));
|
|
67
|
+
export var AutomationRuleActions;
|
|
68
|
+
(function (AutomationRuleActions) {
|
|
69
|
+
AutomationRuleActions["condition"] = "condition";
|
|
70
|
+
AutomationRuleActions["error"] = "error";
|
|
71
|
+
AutomationRuleActions["jexlCalculation"] = "jexlCalculation";
|
|
72
|
+
AutomationRuleActions["log"] = "log";
|
|
73
|
+
AutomationRuleActions["modifyAttribute"] = "modifyAttribute";
|
|
74
|
+
AutomationRuleActions["notification"] = "notification";
|
|
75
|
+
})(AutomationRuleActions || (AutomationRuleActions = {}));
|
|
67
76
|
export var AutomationRuleEventAction;
|
|
68
77
|
(function (AutomationRuleEventAction) {
|
|
69
|
-
AutomationRuleEventAction["API_KEY_DELETE"] = "API_KEY_DELETE";
|
|
70
|
-
AutomationRuleEventAction["API_KEY_SAVE"] = "API_KEY_SAVE";
|
|
71
|
-
AutomationRuleEventAction["APP_DELETE"] = "APP_DELETE";
|
|
72
|
-
AutomationRuleEventAction["APP_SAVE"] = "APP_SAVE";
|
|
73
|
-
AutomationRuleEventAction["ATTRIBUTE_DELETE"] = "ATTRIBUTE_DELETE";
|
|
74
|
-
AutomationRuleEventAction["ATTRIBUTE_SAVE"] = "ATTRIBUTE_SAVE";
|
|
75
|
-
AutomationRuleEventAction["AUTOMATION_RULE_CREATE"] = "AUTOMATION_RULE_CREATE";
|
|
76
|
-
AutomationRuleEventAction["AUTOMATION_RULE_UPDATE"] = "AUTOMATION_RULE_UPDATE";
|
|
77
|
-
AutomationRuleEventAction["CONFIG_IMPORT_END"] = "CONFIG_IMPORT_END";
|
|
78
|
-
AutomationRuleEventAction["CONFIG_IMPORT_START"] = "CONFIG_IMPORT_START";
|
|
79
|
-
AutomationRuleEventAction["DATA_IMPORT_END"] = "DATA_IMPORT_END";
|
|
80
|
-
AutomationRuleEventAction["DATA_IMPORT_START"] = "DATA_IMPORT_START";
|
|
81
|
-
AutomationRuleEventAction["EXPORT_END"] = "EXPORT_END";
|
|
82
|
-
AutomationRuleEventAction["EXPORT_START"] = "EXPORT_START";
|
|
83
|
-
AutomationRuleEventAction["GLOBAL_SETTINGS_SAVE"] = "GLOBAL_SETTINGS_SAVE";
|
|
84
|
-
AutomationRuleEventAction["LIBRARY_DELETE"] = "LIBRARY_DELETE";
|
|
85
|
-
AutomationRuleEventAction["LIBRARY_PURGE"] = "LIBRARY_PURGE";
|
|
86
|
-
AutomationRuleEventAction["LIBRARY_SAVE"] = "LIBRARY_SAVE";
|
|
87
|
-
AutomationRuleEventAction["PERMISSION_SAVE"] = "PERMISSION_SAVE";
|
|
88
|
-
AutomationRuleEventAction["RECORD_DELETE"] = "RECORD_DELETE";
|
|
89
78
|
AutomationRuleEventAction["RECORD_INIT"] = "RECORD_INIT";
|
|
90
79
|
AutomationRuleEventAction["RECORD_SAVE"] = "RECORD_SAVE";
|
|
91
|
-
AutomationRuleEventAction["TASKS_DELETE"] = "TASKS_DELETE";
|
|
92
|
-
AutomationRuleEventAction["TREE_ADD_ELEMENT"] = "TREE_ADD_ELEMENT";
|
|
93
|
-
AutomationRuleEventAction["TREE_DELETE"] = "TREE_DELETE";
|
|
94
|
-
AutomationRuleEventAction["TREE_DELETE_ELEMENT"] = "TREE_DELETE_ELEMENT";
|
|
95
|
-
AutomationRuleEventAction["TREE_MOVE_ELEMENT"] = "TREE_MOVE_ELEMENT";
|
|
96
|
-
AutomationRuleEventAction["TREE_SAVE"] = "TREE_SAVE";
|
|
97
|
-
AutomationRuleEventAction["VALUE_DELETE"] = "VALUE_DELETE";
|
|
98
80
|
AutomationRuleEventAction["VALUE_SAVE"] = "VALUE_SAVE";
|
|
99
|
-
AutomationRuleEventAction["VERSION_PROFILE_DELETE"] = "VERSION_PROFILE_DELETE";
|
|
100
|
-
AutomationRuleEventAction["VERSION_PROFILE_SAVE"] = "VERSION_PROFILE_SAVE";
|
|
101
81
|
})(AutomationRuleEventAction || (AutomationRuleEventAction = {}));
|
|
102
82
|
export var AutomationRuleSortableFields;
|
|
103
83
|
(function (AutomationRuleSortableFields) {
|
|
@@ -127,7 +107,10 @@ export var EventAction;
|
|
|
127
107
|
EventAction["APP_SAVE"] = "APP_SAVE";
|
|
128
108
|
EventAction["ATTRIBUTE_DELETE"] = "ATTRIBUTE_DELETE";
|
|
129
109
|
EventAction["ATTRIBUTE_SAVE"] = "ATTRIBUTE_SAVE";
|
|
110
|
+
EventAction["AUTOMATION_PIPELINE_FAILURE"] = "AUTOMATION_PIPELINE_FAILURE";
|
|
111
|
+
EventAction["AUTOMATION_PIPELINE_SUCCESS"] = "AUTOMATION_PIPELINE_SUCCESS";
|
|
130
112
|
EventAction["AUTOMATION_RULE_CREATE"] = "AUTOMATION_RULE_CREATE";
|
|
113
|
+
EventAction["AUTOMATION_RULE_DELETE"] = "AUTOMATION_RULE_DELETE";
|
|
131
114
|
EventAction["AUTOMATION_RULE_UPDATE"] = "AUTOMATION_RULE_UPDATE";
|
|
132
115
|
EventAction["CONFIG_IMPORT_END"] = "CONFIG_IMPORT_END";
|
|
133
116
|
EventAction["CONFIG_IMPORT_START"] = "CONFIG_IMPORT_START";
|
|
@@ -140,6 +123,8 @@ export var EventAction;
|
|
|
140
123
|
EventAction["LIBRARY_PURGE"] = "LIBRARY_PURGE";
|
|
141
124
|
EventAction["LIBRARY_SAVE"] = "LIBRARY_SAVE";
|
|
142
125
|
EventAction["PERMISSION_SAVE"] = "PERMISSION_SAVE";
|
|
126
|
+
EventAction["PLANNING_RECONDUCTION_END"] = "PLANNING_RECONDUCTION_END";
|
|
127
|
+
EventAction["PLANNING_RECONDUCTION_START"] = "PLANNING_RECONDUCTION_START";
|
|
143
128
|
EventAction["RECORD_DELETE"] = "RECORD_DELETE";
|
|
144
129
|
EventAction["RECORD_SAVE"] = "RECORD_SAVE";
|
|
145
130
|
EventAction["TASKS_DELETE"] = "TASKS_DELETE";
|
|
@@ -172,6 +157,17 @@ export var FormsSortableFields;
|
|
|
172
157
|
FormsSortableFields["library"] = "library";
|
|
173
158
|
FormsSortableFields["system"] = "system";
|
|
174
159
|
})(FormsSortableFields || (FormsSortableFields = {}));
|
|
160
|
+
export var GenerationStatus;
|
|
161
|
+
(function (GenerationStatus) {
|
|
162
|
+
GenerationStatus["DONE"] = "DONE";
|
|
163
|
+
GenerationStatus["GENERATION_FAILED"] = "GENERATION_FAILED";
|
|
164
|
+
GenerationStatus["GENERATION_IN_PROGRESS"] = "GENERATION_IN_PROGRESS";
|
|
165
|
+
GenerationStatus["GENERATION_IN_PROGRESS_WITH_FAILURE"] = "GENERATION_IN_PROGRESS_WITH_FAILURE";
|
|
166
|
+
GenerationStatus["PREPARATION_FAILED"] = "PREPARATION_FAILED";
|
|
167
|
+
GenerationStatus["PREPARATION_IN_PROGRESS"] = "PREPARATION_IN_PROGRESS";
|
|
168
|
+
GenerationStatus["TRANSMISSION_FAILED"] = "TRANSMISSION_FAILED";
|
|
169
|
+
GenerationStatus["TRANSMISSION_IN_PROGRESS"] = "TRANSMISSION_IN_PROGRESS";
|
|
170
|
+
})(GenerationStatus || (GenerationStatus = {}));
|
|
175
171
|
export var IoTypes;
|
|
176
172
|
(function (IoTypes) {
|
|
177
173
|
IoTypes["boolean"] = "boolean";
|
|
@@ -212,7 +208,10 @@ export var LogAction;
|
|
|
212
208
|
LogAction["APP_SAVE"] = "APP_SAVE";
|
|
213
209
|
LogAction["ATTRIBUTE_DELETE"] = "ATTRIBUTE_DELETE";
|
|
214
210
|
LogAction["ATTRIBUTE_SAVE"] = "ATTRIBUTE_SAVE";
|
|
211
|
+
LogAction["AUTOMATION_PIPELINE_FAILURE"] = "AUTOMATION_PIPELINE_FAILURE";
|
|
212
|
+
LogAction["AUTOMATION_PIPELINE_SUCCESS"] = "AUTOMATION_PIPELINE_SUCCESS";
|
|
215
213
|
LogAction["AUTOMATION_RULE_CREATE"] = "AUTOMATION_RULE_CREATE";
|
|
214
|
+
LogAction["AUTOMATION_RULE_DELETE"] = "AUTOMATION_RULE_DELETE";
|
|
216
215
|
LogAction["AUTOMATION_RULE_UPDATE"] = "AUTOMATION_RULE_UPDATE";
|
|
217
216
|
LogAction["CONFIG_IMPORT_END"] = "CONFIG_IMPORT_END";
|
|
218
217
|
LogAction["CONFIG_IMPORT_START"] = "CONFIG_IMPORT_START";
|
|
@@ -225,6 +224,8 @@ export var LogAction;
|
|
|
225
224
|
LogAction["LIBRARY_PURGE"] = "LIBRARY_PURGE";
|
|
226
225
|
LogAction["LIBRARY_SAVE"] = "LIBRARY_SAVE";
|
|
227
226
|
LogAction["PERMISSION_SAVE"] = "PERMISSION_SAVE";
|
|
227
|
+
LogAction["PLANNING_RECONDUCTION_END"] = "PLANNING_RECONDUCTION_END";
|
|
228
|
+
LogAction["PLANNING_RECONDUCTION_START"] = "PLANNING_RECONDUCTION_START";
|
|
228
229
|
LogAction["RECORD_DELETE"] = "RECORD_DELETE";
|
|
229
230
|
LogAction["RECORD_SAVE"] = "RECORD_SAVE";
|
|
230
231
|
LogAction["TASKS_DELETE"] = "TASKS_DELETE";
|
|
@@ -394,10 +395,12 @@ export var TaskStatus;
|
|
|
394
395
|
export var TaskType;
|
|
395
396
|
(function (TaskType) {
|
|
396
397
|
TaskType["EXPORT"] = "EXPORT";
|
|
398
|
+
TaskType["FRAMING_REPORT"] = "FRAMING_REPORT";
|
|
397
399
|
TaskType["IMPORT_CONFIG"] = "IMPORT_CONFIG";
|
|
398
400
|
TaskType["IMPORT_DATA"] = "IMPORT_DATA";
|
|
399
401
|
TaskType["INDEXATION"] = "INDEXATION";
|
|
400
402
|
TaskType["PURGE_MULTIPLE_VALUES"] = "PURGE_MULTIPLE_VALUES";
|
|
403
|
+
TaskType["RENEW_CAMPAIGNS"] = "RENEW_CAMPAIGNS";
|
|
401
404
|
TaskType["SAVE_VALUE_BULK"] = "SAVE_VALUE_BULK";
|
|
402
405
|
})(TaskType || (TaskType = {}));
|
|
403
406
|
export var TreeBehavior;
|
|
@@ -515,6 +518,9 @@ export const AttributeDetailsFragmentDoc = gql `
|
|
|
515
518
|
}
|
|
516
519
|
... on StandardAttribute {
|
|
517
520
|
unique
|
|
521
|
+
smart_filter {
|
|
522
|
+
enable
|
|
523
|
+
}
|
|
518
524
|
}
|
|
519
525
|
... on LinkAttribute {
|
|
520
526
|
linked_library {
|
|
@@ -1129,6 +1135,9 @@ export const AttributesByLibAttributeWithPermissionsFragmentDoc = gql `
|
|
|
1129
1135
|
}
|
|
1130
1136
|
}
|
|
1131
1137
|
}
|
|
1138
|
+
smart_filter {
|
|
1139
|
+
enable
|
|
1140
|
+
}
|
|
1132
1141
|
}
|
|
1133
1142
|
}
|
|
1134
1143
|
${AttributesByLibLinkAttributeWithPermissionsFragmentDoc}`;
|
|
@@ -1189,6 +1198,9 @@ export const StandardAttributeDetailsFragmentDoc = gql `
|
|
|
1189
1198
|
values
|
|
1190
1199
|
}
|
|
1191
1200
|
}
|
|
1201
|
+
smart_filter {
|
|
1202
|
+
enable
|
|
1203
|
+
}
|
|
1192
1204
|
}
|
|
1193
1205
|
`;
|
|
1194
1206
|
export const AttributePropertiesFragmentDoc = gql `
|
|
@@ -4233,12 +4245,15 @@ export const SmartFilterListValuesDocument = gql `
|
|
|
4233
4245
|
attribute: $attribute
|
|
4234
4246
|
recordFilters: $recordFilters
|
|
4235
4247
|
) {
|
|
4248
|
+
count
|
|
4236
4249
|
... on LinkDistinctValues {
|
|
4237
|
-
|
|
4238
|
-
value {
|
|
4250
|
+
recordValue: value {
|
|
4239
4251
|
...RecordIdentity
|
|
4240
4252
|
}
|
|
4241
4253
|
}
|
|
4254
|
+
... on StandardDistinctValues {
|
|
4255
|
+
standardValue: value
|
|
4256
|
+
}
|
|
4242
4257
|
}
|
|
4243
4258
|
}
|
|
4244
4259
|
${RecordIdentityFragmentDoc}`;
|