@leav/ui 1.7.0-80df764b → 1.7.0-889d1b75
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 +0 -13
- package/dist/_gqlTypes/index.js +4 -14
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/attributes/getAttributeWithEmbeddedFields.d.ts +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/useSearchReducer.d.ts +1 -1
- package/dist/components/Notifications/hooks/useNotificationSubscription.js +2 -2
- package/dist/components/Notifications/hooks/useNotificationSubscription.js.map +1 -1
- package/dist/components/RecordHistory/utils/extendedAttribute.d.ts +3 -1
- package/package.json +2 -2
|
@@ -356,16 +356,6 @@ export declare enum FormsSortableFields {
|
|
|
356
356
|
library = "library",
|
|
357
357
|
system = "system"
|
|
358
358
|
}
|
|
359
|
-
export declare enum GenerationStatus {
|
|
360
|
-
DONE = "DONE",
|
|
361
|
-
GENERATION_FAILED = "GENERATION_FAILED",
|
|
362
|
-
GENERATION_IN_PROGRESS = "GENERATION_IN_PROGRESS",
|
|
363
|
-
GENERATION_IN_PROGRESS_WITH_FAILURE = "GENERATION_IN_PROGRESS_WITH_FAILURE",
|
|
364
|
-
PREPARATION_FAILED = "PREPARATION_FAILED",
|
|
365
|
-
PREPARATION_IN_PROGRESS = "PREPARATION_IN_PROGRESS",
|
|
366
|
-
TRANSMISSION_FAILED = "TRANSMISSION_FAILED",
|
|
367
|
-
TRANSMISSION_IN_PROGRESS = "TRANSMISSION_IN_PROGRESS"
|
|
368
|
-
}
|
|
369
359
|
export type GlobalSettingsFileInput = {
|
|
370
360
|
library: Scalars['String']['input'];
|
|
371
361
|
recordId: Scalars['String']['input'];
|
|
@@ -453,9 +443,6 @@ export declare enum LogAction {
|
|
|
453
443
|
PERMISSION_SAVE = "PERMISSION_SAVE",
|
|
454
444
|
RECORD_DELETE = "RECORD_DELETE",
|
|
455
445
|
RECORD_SAVE = "RECORD_SAVE",
|
|
456
|
-
SDO_LOG_ERROR = "SDO_LOG_ERROR",
|
|
457
|
-
SDO_LOG_EXPORT_RECORD = "SDO_LOG_EXPORT_RECORD",
|
|
458
|
-
SDO_LOG_IMPORT_RECORD = "SDO_LOG_IMPORT_RECORD",
|
|
459
446
|
TASKS_DELETE = "TASKS_DELETE",
|
|
460
447
|
TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
|
|
461
448
|
TREE_DELETE = "TREE_DELETE",
|
package/dist/_gqlTypes/index.js
CHANGED
|
@@ -88,17 +88,6 @@ export var FormsSortableFields;
|
|
|
88
88
|
FormsSortableFields["library"] = "library";
|
|
89
89
|
FormsSortableFields["system"] = "system";
|
|
90
90
|
})(FormsSortableFields || (FormsSortableFields = {}));
|
|
91
|
-
export var GenerationStatus;
|
|
92
|
-
(function (GenerationStatus) {
|
|
93
|
-
GenerationStatus["DONE"] = "DONE";
|
|
94
|
-
GenerationStatus["GENERATION_FAILED"] = "GENERATION_FAILED";
|
|
95
|
-
GenerationStatus["GENERATION_IN_PROGRESS"] = "GENERATION_IN_PROGRESS";
|
|
96
|
-
GenerationStatus["GENERATION_IN_PROGRESS_WITH_FAILURE"] = "GENERATION_IN_PROGRESS_WITH_FAILURE";
|
|
97
|
-
GenerationStatus["PREPARATION_FAILED"] = "PREPARATION_FAILED";
|
|
98
|
-
GenerationStatus["PREPARATION_IN_PROGRESS"] = "PREPARATION_IN_PROGRESS";
|
|
99
|
-
GenerationStatus["TRANSMISSION_FAILED"] = "TRANSMISSION_FAILED";
|
|
100
|
-
GenerationStatus["TRANSMISSION_IN_PROGRESS"] = "TRANSMISSION_IN_PROGRESS";
|
|
101
|
-
})(GenerationStatus || (GenerationStatus = {}));
|
|
102
91
|
export var IoTypes;
|
|
103
92
|
(function (IoTypes) {
|
|
104
93
|
IoTypes["boolean"] = "boolean";
|
|
@@ -152,9 +141,6 @@ export var LogAction;
|
|
|
152
141
|
LogAction["PERMISSION_SAVE"] = "PERMISSION_SAVE";
|
|
153
142
|
LogAction["RECORD_DELETE"] = "RECORD_DELETE";
|
|
154
143
|
LogAction["RECORD_SAVE"] = "RECORD_SAVE";
|
|
155
|
-
LogAction["SDO_LOG_ERROR"] = "SDO_LOG_ERROR";
|
|
156
|
-
LogAction["SDO_LOG_EXPORT_RECORD"] = "SDO_LOG_EXPORT_RECORD";
|
|
157
|
-
LogAction["SDO_LOG_IMPORT_RECORD"] = "SDO_LOG_IMPORT_RECORD";
|
|
158
144
|
LogAction["TASKS_DELETE"] = "TASKS_DELETE";
|
|
159
145
|
LogAction["TREE_ADD_ELEMENT"] = "TREE_ADD_ELEMENT";
|
|
160
146
|
LogAction["TREE_DELETE"] = "TREE_DELETE";
|
|
@@ -3999,6 +3985,10 @@ export const NotificationDocument = gql `
|
|
|
3999
3985
|
label
|
|
4000
3986
|
url
|
|
4001
3987
|
}
|
|
3988
|
+
relatedEntities {
|
|
3989
|
+
label
|
|
3990
|
+
url
|
|
3991
|
+
}
|
|
4002
3992
|
}
|
|
4003
3993
|
}
|
|
4004
3994
|
`;
|