@leav/ui 1.7.0-a16d0bd7 → 1.7.0-a928cf9c
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 +19 -2
- package/dist/_gqlTypes/index.js +4 -2
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/components/Notifications/hooks/useNotificationSubscription.js +4 -4
- package/dist/components/Notifications/hooks/useNotificationSubscription.js.map +1 -1
- package/package.json +1 -1
|
@@ -204,6 +204,8 @@ export type AttributeInput = {
|
|
|
204
204
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205
205
|
reverse_link?: InputMaybe<Scalars['String']['input']>;
|
|
206
206
|
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
207
|
+
/** only for link attribute */
|
|
208
|
+
smart_filter?: InputMaybe<SmartFilterConfInput>;
|
|
207
209
|
type?: InputMaybe<AttributeType>;
|
|
208
210
|
unique?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209
211
|
values_list?: InputMaybe<ValuesListConfInput>;
|
|
@@ -244,6 +246,16 @@ export declare enum AvailableLanguage {
|
|
|
244
246
|
en = "en",
|
|
245
247
|
fr = "fr"
|
|
246
248
|
}
|
|
249
|
+
export type CampaignToRenew = {
|
|
250
|
+
endDate: Scalars['String']['input'];
|
|
251
|
+
id: Scalars['String']['input'];
|
|
252
|
+
startDate: Scalars['String']['input'];
|
|
253
|
+
};
|
|
254
|
+
export type CampaignToUpdateDates = {
|
|
255
|
+
endDate: Scalars['String']['input'];
|
|
256
|
+
id: Scalars['String']['input'];
|
|
257
|
+
startDate: Scalars['String']['input'];
|
|
258
|
+
};
|
|
247
259
|
export type ChildrenAsRecordValuePermissionFilterInput = {
|
|
248
260
|
action: RecordPermissionsActions;
|
|
249
261
|
attributeId: Scalars['ID']['input'];
|
|
@@ -560,7 +572,6 @@ export declare enum PermissionsActions {
|
|
|
560
572
|
admin_access_libraries = "admin_access_libraries",
|
|
561
573
|
admin_access_logs = "admin_access_logs",
|
|
562
574
|
admin_access_permissions = "admin_access_permissions",
|
|
563
|
-
admin_access_plugins = "admin_access_plugins",
|
|
564
575
|
admin_access_tasks = "admin_access_tasks",
|
|
565
576
|
admin_access_trees = "admin_access_trees",
|
|
566
577
|
admin_access_version_profiles = "admin_access_version_profiles",
|
|
@@ -707,6 +718,9 @@ export type SheetInput = {
|
|
|
707
718
|
treeLinkLibrary?: InputMaybe<Scalars['String']['input']>;
|
|
708
719
|
type: ImportType;
|
|
709
720
|
};
|
|
721
|
+
export type SmartFilterConfInput = {
|
|
722
|
+
enable: Scalars['Boolean']['input'];
|
|
723
|
+
};
|
|
710
724
|
export type SortApiKeysInput = {
|
|
711
725
|
field: ApiKeysSortableFields;
|
|
712
726
|
order?: InputMaybe<SortOrder>;
|
|
@@ -760,6 +774,7 @@ export declare enum TaskType {
|
|
|
760
774
|
IMPORT_CONFIG = "IMPORT_CONFIG",
|
|
761
775
|
IMPORT_DATA = "IMPORT_DATA",
|
|
762
776
|
INDEXATION = "INDEXATION",
|
|
777
|
+
RENEW_CAMPAIGNS = "RENEW_CAMPAIGNS",
|
|
763
778
|
SAVE_VALUE_BULK = "SAVE_VALUE_BULK"
|
|
764
779
|
}
|
|
765
780
|
export declare enum TreeBehavior {
|
|
@@ -8028,10 +8043,12 @@ export type NotificationSubscriptionVariables = Exact<{
|
|
|
8028
8043
|
}>;
|
|
8029
8044
|
export type NotificationSubscription = {
|
|
8030
8045
|
notification: {
|
|
8046
|
+
id: string;
|
|
8047
|
+
date: number;
|
|
8031
8048
|
level: NotificationLevel;
|
|
8032
8049
|
message: string;
|
|
8033
8050
|
title: string;
|
|
8034
|
-
|
|
8051
|
+
displayDuration?: number | null;
|
|
8035
8052
|
attachments?: Array<{
|
|
8036
8053
|
label: string;
|
|
8037
8054
|
url: string;
|
package/dist/_gqlTypes/index.js
CHANGED
|
@@ -215,7 +215,6 @@ export var PermissionsActions;
|
|
|
215
215
|
PermissionsActions["admin_access_libraries"] = "admin_access_libraries";
|
|
216
216
|
PermissionsActions["admin_access_logs"] = "admin_access_logs";
|
|
217
217
|
PermissionsActions["admin_access_permissions"] = "admin_access_permissions";
|
|
218
|
-
PermissionsActions["admin_access_plugins"] = "admin_access_plugins";
|
|
219
218
|
PermissionsActions["admin_access_tasks"] = "admin_access_tasks";
|
|
220
219
|
PermissionsActions["admin_access_trees"] = "admin_access_trees";
|
|
221
220
|
PermissionsActions["admin_access_version_profiles"] = "admin_access_version_profiles";
|
|
@@ -325,6 +324,7 @@ export var TaskType;
|
|
|
325
324
|
TaskType["IMPORT_CONFIG"] = "IMPORT_CONFIG";
|
|
326
325
|
TaskType["IMPORT_DATA"] = "IMPORT_DATA";
|
|
327
326
|
TaskType["INDEXATION"] = "INDEXATION";
|
|
327
|
+
TaskType["RENEW_CAMPAIGNS"] = "RENEW_CAMPAIGNS";
|
|
328
328
|
TaskType["SAVE_VALUE_BULK"] = "SAVE_VALUE_BULK";
|
|
329
329
|
})(TaskType || (TaskType = {}));
|
|
330
330
|
export var TreeBehavior;
|
|
@@ -3989,10 +3989,12 @@ export function useUpdateViewMutation(baseOptions) {
|
|
|
3989
3989
|
export const NotificationDocument = gql `
|
|
3990
3990
|
subscription Notification {
|
|
3991
3991
|
notification {
|
|
3992
|
+
id
|
|
3993
|
+
date
|
|
3992
3994
|
level
|
|
3993
3995
|
message
|
|
3994
3996
|
title
|
|
3995
|
-
|
|
3997
|
+
displayDuration
|
|
3996
3998
|
attachments {
|
|
3997
3999
|
label
|
|
3998
4000
|
url
|