@leav/ui 1.7.0 → 1.8.0-73498354
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/__mocks__/common/library.d.ts +1 -0
- package/dist/_gqlTypes/index.d.ts +317 -113
- package/dist/_gqlTypes/index.js +142 -53
- 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/_queries/attributes/getAttributeWithEmbeddedFields.d.ts +1 -1
- package/dist/_queries/libraries/libraryDetailsFragment.js +1 -0
- package/dist/_queries/libraries/libraryDetailsFragment.js.map +1 -1
- package/dist/components/AttributePicker/AttributesList/AttributesList.js +3 -7
- package/dist/components/AttributePicker/AttributesList/AttributesList.js.map +1 -1
- package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/AttributesList.js +3 -7
- package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/AttributesList.js.map +1 -1
- package/dist/components/Explorer/TableCell.js +9 -16
- package/dist/components/Explorer/TableCell.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js +2 -2
- package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js +2 -2
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js +17 -8
- package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js.map +1 -1
- package/dist/components/Filters/_types.d.ts +12 -1
- package/dist/components/Filters/_types.js +2 -1
- package/dist/components/Filters/_types.js.map +1 -1
- package/dist/components/Filters/context/filtersReducer.js +3 -2
- package/dist/components/Filters/context/filtersReducer.js.map +1 -1
- package/dist/components/Filters/context/useGetTreeFilters.d.ts +8 -6
- package/dist/components/Filters/context/useGetTreeFilters.js +41 -18
- package/dist/components/Filters/context/useGetTreeFilters.js.map +1 -1
- package/dist/components/Filters/filter-items/CommonFilterItem.js +3 -3
- package/dist/components/Filters/filter-items/CommonFilterItem.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/ColorAttributeDropDown.js +1 -1
- package/dist/components/Filters/filter-items/filter-type/ColorAttributeDropDown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/FilterDropdownContent.js +6 -2
- package/dist/components/Filters/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/FilterValueListDropDown.js +4 -4
- package/dist/components/Filters/filter-items/filter-type/FilterValueListDropDown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/_types.d.ts +6 -1
- package/dist/components/Filters/filter-items/filter-type/_types.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/smart-filter/SmartFilterAttributeDropdown.d.ts +2 -0
- package/dist/components/Filters/filter-items/filter-type/smart-filter/SmartFilterAttributeDropdown.js +106 -0
- package/dist/components/Filters/filter-items/filter-type/smart-filter/SmartFilterAttributeDropdown.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/smart-filter/useGetSmartFilterData.d.ts +25 -0
- package/dist/components/Filters/filter-items/filter-type/smart-filter/useGetSmartFilterData.js +59 -0
- package/dist/components/Filters/filter-items/filter-type/smart-filter/useGetSmartFilterData.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/smart-filter/useSmartFilerSearch.d.ts +5 -0
- package/dist/components/Filters/filter-items/filter-type/smart-filter/useSmartFilerSearch.js +25 -0
- package/dist/components/Filters/filter-items/filter-type/smart-filter/useSmartFilerSearch.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/{TreeAttributeDropDown.d.ts → tree/TreeAttributeDropDown.d.ts} +1 -1
- package/dist/components/Filters/filter-items/filter-type/tree/TreeAttributeDropDown.js +131 -0
- package/dist/components/Filters/filter-items/filter-type/tree/TreeAttributeDropDown.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useGetTreeData.d.ts +20 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useGetTreeData.js +72 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useGetTreeData.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useTreesSearch.d.ts +7 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useTreesSearch.js +36 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useTreesSearch.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/buildFlattenTreeMap.d.ts +2 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/buildFlattenTreeMap.js +14 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/buildFlattenTreeMap.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/filterTreeByPermission.d.ts +2 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/filterTreeByPermission.js +15 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/filterTreeByPermission.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/getSelectAllState.d.ts +5 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/getSelectAllState.js +17 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/getSelectAllState.js.map +1 -0
- package/dist/components/Filters/filter-items/{EmptyValueCheckbox.d.ts → shared/EmptyValueCheckbox.d.ts} +2 -1
- package/dist/components/Filters/filter-items/shared/EmptyValueCheckbox.js +20 -0
- package/dist/components/Filters/filter-items/shared/EmptyValueCheckbox.js.map +1 -0
- package/dist/components/Filters/filter-items/shared/FilterTreeNodeTitle.d.ts +5 -0
- package/dist/components/Filters/filter-items/shared/FilterTreeNodeTitle.js +18 -0
- package/dist/components/Filters/filter-items/shared/FilterTreeNodeTitle.js.map +1 -0
- package/dist/components/Filters/filter-items/shared/SelectAllCheckbox.d.ts +8 -0
- package/dist/components/Filters/filter-items/shared/SelectAllCheckbox.js +22 -0
- package/dist/components/Filters/filter-items/shared/SelectAllCheckbox.js.map +1 -0
- package/dist/components/Filters/prepareFiltersForRequest.js +10 -5
- package/dist/components/Filters/prepareFiltersForRequest.js.map +1 -1
- package/dist/components/Filters/useFilters.d.ts +542 -0
- package/dist/components/Filters/useTransformFilters.js +3 -0
- package/dist/components/Filters/useTransformFilters.js.map +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/_types.d.ts +2 -2
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/_types.js.map +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.d.ts +2 -2
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js.map +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/useSearchReducer.d.ts +1 -1
- package/dist/components/Notifications/hooks/useNotificationSubscription.d.ts +9 -3
- package/dist/components/Notifications/hooks/useNotificationSubscription.js +2 -2
- package/dist/components/Notifications/hooks/useNotificationSubscription.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/antdUtils.js +2 -0
- package/dist/components/RecordEdition/EditRecordContent/antdUtils.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/link-record/useLinkRecord.js +4 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/link-record/useLinkRecord.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +2 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
- package/dist/components/RecordHistory/RecordHistoryLogEntry.js +10 -2
- package/dist/components/RecordHistory/RecordHistoryLogEntry.js.map +1 -1
- package/dist/components/RecordHistory/_queries/recordHistoryQuery.d.ts +7 -0
- package/dist/components/RecordHistory/_queries/recordHistoryQuery.js +64 -0
- package/dist/components/RecordHistory/_queries/recordHistoryQuery.js.map +1 -0
- package/dist/components/RecordHistory/hooks/useFetchRecordHistory.js +5 -2
- package/dist/components/RecordHistory/hooks/useFetchRecordHistory.js.map +1 -1
- package/dist/components/RecordHistory/utils/extendedAttribute.d.ts +13 -0
- package/dist/components/RecordHistory/utils/extendedAttribute.js +40 -0
- package/dist/components/RecordHistory/utils/extendedAttribute.js.map +1 -0
- package/dist/components/SelectTreeNode/TreeNodeTitle.js +2 -2
- package/dist/components/SelectTreeNode/TreeNodeTitle.js.map +1 -1
- package/dist/hooks/useGetLibraryDetailExtendedQuery/useGetLibraryDetailExtendedQuery.d.ts +1 -1
- package/dist/hooks/useGetRecordUpdatesSubscription/useGetRecordUpdatesSubscription.d.ts +9 -3
- package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.js.map +1 -1
- package/dist/locales/en/shared.json +6 -2
- package/dist/locales/fr/shared.json +6 -2
- package/dist/types/records.d.ts +1 -0
- package/dist/types/records.js.map +1 -1
- package/package.json +8 -8
- package/dist/components/Filters/filter-items/EmptyValueCheckbox.js +0 -16
- package/dist/components/Filters/filter-items/EmptyValueCheckbox.js.map +0 -1
- package/dist/components/Filters/filter-items/filter-type/TreeAttributeDropDown.js +0 -71
- package/dist/components/Filters/filter-items/filter-type/TreeAttributeDropDown.js.map +0 -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>;
|
|
@@ -585,6 +587,7 @@ export declare enum PermissionsActions {
|
|
|
585
587
|
admin_edit_version_profile = "admin_edit_version_profile",
|
|
586
588
|
admin_import_config_clear_database = "admin_import_config_clear_database",
|
|
587
589
|
admin_library = "admin_library",
|
|
590
|
+
admin_list_plugins = "admin_list_plugins",
|
|
588
591
|
admin_manage_global_preferences = "admin_manage_global_preferences",
|
|
589
592
|
create_record = "create_record",
|
|
590
593
|
delete_record = "delete_record",
|
|
@@ -662,6 +665,7 @@ export declare enum RecordFilterOperator {
|
|
|
662
665
|
export type RecordIdentityConfInput = {
|
|
663
666
|
color?: InputMaybe<Scalars['ID']['input']>;
|
|
664
667
|
label?: InputMaybe<Scalars['ID']['input']>;
|
|
668
|
+
parentContext?: InputMaybe<Scalars['ID']['input']>;
|
|
665
669
|
preview?: InputMaybe<Scalars['ID']['input']>;
|
|
666
670
|
subLabel?: InputMaybe<Scalars['ID']['input']>;
|
|
667
671
|
treeColorPreview?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -701,6 +705,9 @@ export type SheetInput = {
|
|
|
701
705
|
treeLinkLibrary?: InputMaybe<Scalars['String']['input']>;
|
|
702
706
|
type: ImportType;
|
|
703
707
|
};
|
|
708
|
+
export type SmartFilterConfInput = {
|
|
709
|
+
enable: Scalars['Boolean']['input'];
|
|
710
|
+
};
|
|
704
711
|
export type SortApiKeysInput = {
|
|
705
712
|
field: ApiKeysSortableFields;
|
|
706
713
|
order?: InputMaybe<SortOrder>;
|
|
@@ -979,6 +986,9 @@ export type AttributeDetailsLinkAttributeFragment = {
|
|
|
979
986
|
id: string;
|
|
980
987
|
label?: any | null;
|
|
981
988
|
} | null;
|
|
989
|
+
smart_filter?: {
|
|
990
|
+
enable: boolean;
|
|
991
|
+
} | null;
|
|
982
992
|
metadata_fields?: Array<{
|
|
983
993
|
id: string;
|
|
984
994
|
label?: any | null;
|
|
@@ -1202,6 +1212,7 @@ export type LibraryDetailsFragment = {
|
|
|
1202
1212
|
color?: string | null;
|
|
1203
1213
|
preview?: string | null;
|
|
1204
1214
|
treeColorPreview?: string | null;
|
|
1215
|
+
parentContext?: string | null;
|
|
1205
1216
|
} | null;
|
|
1206
1217
|
permissions?: {
|
|
1207
1218
|
admin_library: boolean;
|
|
@@ -3313,6 +3324,9 @@ export type AttributesByLibAttributeWithPermissionsLinkAttributeFragment = {
|
|
|
3313
3324
|
linked_library?: {
|
|
3314
3325
|
id: string;
|
|
3315
3326
|
} | null;
|
|
3327
|
+
smart_filter?: {
|
|
3328
|
+
enable: boolean;
|
|
3329
|
+
} | null;
|
|
3316
3330
|
};
|
|
3317
3331
|
export type AttributesByLibAttributeWithPermissionsStandardAttributeFragment = {
|
|
3318
3332
|
id: string;
|
|
@@ -3399,6 +3413,9 @@ export type AttributesByLibLinkAttributeWithPermissionsFragment = {
|
|
|
3399
3413
|
linked_library?: {
|
|
3400
3414
|
id: string;
|
|
3401
3415
|
} | null;
|
|
3416
|
+
smart_filter?: {
|
|
3417
|
+
enable: boolean;
|
|
3418
|
+
} | null;
|
|
3402
3419
|
};
|
|
3403
3420
|
export type StandardAttributeDetailsFragment = {
|
|
3404
3421
|
id: string;
|
|
@@ -3436,6 +3453,9 @@ export type LinkAttributeDetailsFragment = {
|
|
|
3436
3453
|
};
|
|
3437
3454
|
}> | null;
|
|
3438
3455
|
} | null;
|
|
3456
|
+
smart_filter?: {
|
|
3457
|
+
enable: boolean;
|
|
3458
|
+
} | null;
|
|
3439
3459
|
};
|
|
3440
3460
|
export type TreeAttributeDetailsFragment = {
|
|
3441
3461
|
id: string;
|
|
@@ -3620,6 +3640,16 @@ export type RecordHistoryLogEntryFragment = {
|
|
|
3620
3640
|
type: AttributeType;
|
|
3621
3641
|
format?: AttributeFormat | null;
|
|
3622
3642
|
multiple_values: boolean;
|
|
3643
|
+
} | {
|
|
3644
|
+
id: string;
|
|
3645
|
+
label?: any | null;
|
|
3646
|
+
type: AttributeType;
|
|
3647
|
+
format?: AttributeFormat | null;
|
|
3648
|
+
multiple_values: boolean;
|
|
3649
|
+
embedded_fields?: Array<{
|
|
3650
|
+
id: string;
|
|
3651
|
+
label?: any | null;
|
|
3652
|
+
} | null> | null;
|
|
3623
3653
|
} | null;
|
|
3624
3654
|
} | null;
|
|
3625
3655
|
user: {
|
|
@@ -3644,13 +3674,25 @@ export type RecordHistoryLogEntryFragment = {
|
|
|
3644
3674
|
asString?: string | null;
|
|
3645
3675
|
} | null;
|
|
3646
3676
|
};
|
|
3647
|
-
export type
|
|
3677
|
+
export type RecordHistoryLogAttributeLinkAttributeTreeAttributeFragment = {
|
|
3648
3678
|
id: string;
|
|
3649
3679
|
label?: any | null;
|
|
3650
3680
|
type: AttributeType;
|
|
3651
3681
|
format?: AttributeFormat | null;
|
|
3652
3682
|
multiple_values: boolean;
|
|
3653
3683
|
};
|
|
3684
|
+
export type RecordHistoryLogAttributeStandardAttributeFragment = {
|
|
3685
|
+
id: string;
|
|
3686
|
+
label?: any | null;
|
|
3687
|
+
type: AttributeType;
|
|
3688
|
+
format?: AttributeFormat | null;
|
|
3689
|
+
multiple_values: boolean;
|
|
3690
|
+
embedded_fields?: Array<{
|
|
3691
|
+
id: string;
|
|
3692
|
+
label?: any | null;
|
|
3693
|
+
} | null> | null;
|
|
3694
|
+
};
|
|
3695
|
+
export type RecordHistoryLogAttributeFragment = RecordHistoryLogAttributeLinkAttributeTreeAttributeFragment | RecordHistoryLogAttributeStandardAttributeFragment;
|
|
3654
3696
|
export type CheckApplicationExistenceQueryVariables = Exact<{
|
|
3655
3697
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
3656
3698
|
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3778,6 +3820,9 @@ export type GetAttributeByIdQuery = {
|
|
|
3778
3820
|
id: string;
|
|
3779
3821
|
label?: any | null;
|
|
3780
3822
|
} | null;
|
|
3823
|
+
smart_filter?: {
|
|
3824
|
+
enable: boolean;
|
|
3825
|
+
} | null;
|
|
3781
3826
|
metadata_fields?: Array<{
|
|
3782
3827
|
id: string;
|
|
3783
3828
|
label?: any | null;
|
|
@@ -4001,6 +4046,9 @@ export type SaveAttributeMutation = {
|
|
|
4001
4046
|
id: string;
|
|
4002
4047
|
label?: any | null;
|
|
4003
4048
|
} | null;
|
|
4049
|
+
smart_filter?: {
|
|
4050
|
+
enable: boolean;
|
|
4051
|
+
} | null;
|
|
4004
4052
|
metadata_fields?: Array<{
|
|
4005
4053
|
id: string;
|
|
4006
4054
|
label?: any | null;
|
|
@@ -4358,6 +4406,7 @@ export type GetLibraryByIdQuery = {
|
|
|
4358
4406
|
color?: string | null;
|
|
4359
4407
|
preview?: string | null;
|
|
4360
4408
|
treeColorPreview?: string | null;
|
|
4409
|
+
parentContext?: string | null;
|
|
4361
4410
|
} | null;
|
|
4362
4411
|
permissions?: {
|
|
4363
4412
|
admin_library: boolean;
|
|
@@ -4496,6 +4545,7 @@ export type SaveLibraryMutation = {
|
|
|
4496
4545
|
color?: string | null;
|
|
4497
4546
|
preview?: string | null;
|
|
4498
4547
|
treeColorPreview?: string | null;
|
|
4548
|
+
parentContext?: string | null;
|
|
4499
4549
|
} | null;
|
|
4500
4550
|
permissions?: {
|
|
4501
4551
|
admin_library: boolean;
|
|
@@ -6309,6 +6359,68 @@ export type TreeNodeChildrenQuery = {
|
|
|
6309
6359
|
}>;
|
|
6310
6360
|
};
|
|
6311
6361
|
};
|
|
6362
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables = Exact<{
|
|
6363
|
+
treeId: Scalars['ID']['input'];
|
|
6364
|
+
node?: InputMaybe<Scalars['ID']['input']>;
|
|
6365
|
+
pagination?: InputMaybe<Pagination>;
|
|
6366
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
6367
|
+
dependentValuesPermissionFilter?: InputMaybe<DependentValuesPermissionFilterInput>;
|
|
6368
|
+
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
6369
|
+
}>;
|
|
6370
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery = {
|
|
6371
|
+
treeNodeChildren: {
|
|
6372
|
+
totalCount?: number | null;
|
|
6373
|
+
list: Array<{
|
|
6374
|
+
id: string;
|
|
6375
|
+
order?: number | null;
|
|
6376
|
+
childrenCount?: number | null;
|
|
6377
|
+
accessRecordByDefaultPermission?: boolean | null;
|
|
6378
|
+
record: {
|
|
6379
|
+
id: string;
|
|
6380
|
+
active: Array<{
|
|
6381
|
+
value?: any | null;
|
|
6382
|
+
}>;
|
|
6383
|
+
whoAmI: {
|
|
6384
|
+
id: string;
|
|
6385
|
+
label?: string | null;
|
|
6386
|
+
subLabel?: string | null;
|
|
6387
|
+
color?: string | null;
|
|
6388
|
+
preview?: IPreviewScalar | null;
|
|
6389
|
+
library: {
|
|
6390
|
+
id: string;
|
|
6391
|
+
label?: any | null;
|
|
6392
|
+
};
|
|
6393
|
+
};
|
|
6394
|
+
};
|
|
6395
|
+
ancestors?: Array<{
|
|
6396
|
+
id: string;
|
|
6397
|
+
record: {
|
|
6398
|
+
id: string;
|
|
6399
|
+
library: {
|
|
6400
|
+
id: string;
|
|
6401
|
+
label?: any | null;
|
|
6402
|
+
};
|
|
6403
|
+
whoAmI: {
|
|
6404
|
+
id: string;
|
|
6405
|
+
label?: string | null;
|
|
6406
|
+
subLabel?: string | null;
|
|
6407
|
+
color?: string | null;
|
|
6408
|
+
preview?: IPreviewScalar | null;
|
|
6409
|
+
library: {
|
|
6410
|
+
id: string;
|
|
6411
|
+
label?: any | null;
|
|
6412
|
+
};
|
|
6413
|
+
};
|
|
6414
|
+
};
|
|
6415
|
+
}> | null;
|
|
6416
|
+
permissions: {
|
|
6417
|
+
access_tree: boolean;
|
|
6418
|
+
detach: boolean;
|
|
6419
|
+
edit_children: boolean;
|
|
6420
|
+
};
|
|
6421
|
+
}>;
|
|
6422
|
+
};
|
|
6423
|
+
};
|
|
6312
6424
|
export type GetUserDataQueryVariables = Exact<{
|
|
6313
6425
|
keys: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
6314
6426
|
global?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -7332,28 +7444,6 @@ export type SaveViewMutation = {
|
|
|
7332
7444
|
}> | null;
|
|
7333
7445
|
};
|
|
7334
7446
|
};
|
|
7335
|
-
export type TreeFilterByDefaultValuesQueryVariables = Exact<{
|
|
7336
|
-
treeId: Scalars['ID']['input'];
|
|
7337
|
-
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
7338
|
-
}>;
|
|
7339
|
-
export type TreeFilterByDefaultValuesQuery = {
|
|
7340
|
-
treeNodeChildren: {
|
|
7341
|
-
list: Array<{
|
|
7342
|
-
accessRecordByDefaultPermission?: boolean | null;
|
|
7343
|
-
id: string;
|
|
7344
|
-
record: {
|
|
7345
|
-
id: string;
|
|
7346
|
-
whoAmI: {
|
|
7347
|
-
id: string;
|
|
7348
|
-
label?: string | null;
|
|
7349
|
-
library: {
|
|
7350
|
-
id: string;
|
|
7351
|
-
};
|
|
7352
|
-
};
|
|
7353
|
-
};
|
|
7354
|
-
}>;
|
|
7355
|
-
};
|
|
7356
|
-
};
|
|
7357
7447
|
export type AttributeWithValuesForMassEditionQueryVariables = Exact<{
|
|
7358
7448
|
attributeId: Scalars['ID']['input'];
|
|
7359
7449
|
}>;
|
|
@@ -7416,6 +7506,9 @@ export type GetAttributesByLibWithPermissionsQuery = {
|
|
|
7416
7506
|
linked_library?: {
|
|
7417
7507
|
id: string;
|
|
7418
7508
|
} | null;
|
|
7509
|
+
smart_filter?: {
|
|
7510
|
+
enable: boolean;
|
|
7511
|
+
} | null;
|
|
7419
7512
|
permissions: {
|
|
7420
7513
|
access_attribute: boolean;
|
|
7421
7514
|
};
|
|
@@ -7510,6 +7603,9 @@ export type ExplorerAttributesQuery = {
|
|
|
7510
7603
|
};
|
|
7511
7604
|
}> | null;
|
|
7512
7605
|
} | null;
|
|
7606
|
+
smart_filter?: {
|
|
7607
|
+
enable: boolean;
|
|
7608
|
+
} | null;
|
|
7513
7609
|
permissions: {
|
|
7514
7610
|
access_attribute: boolean;
|
|
7515
7611
|
};
|
|
@@ -7575,6 +7671,9 @@ export type ExplorerLinkAttributeQuery = {
|
|
|
7575
7671
|
};
|
|
7576
7672
|
}> | null;
|
|
7577
7673
|
} | null;
|
|
7674
|
+
smart_filter?: {
|
|
7675
|
+
enable: boolean;
|
|
7676
|
+
} | null;
|
|
7578
7677
|
permissions: {
|
|
7579
7678
|
access_attribute: boolean;
|
|
7580
7679
|
edit_value: boolean;
|
|
@@ -7953,15 +8052,40 @@ export type UpdateViewMutation = {
|
|
|
7953
8052
|
}> | null;
|
|
7954
8053
|
};
|
|
7955
8054
|
};
|
|
8055
|
+
export type SmartFilterListValuesQueryVariables = Exact<{
|
|
8056
|
+
library: Scalars['ID']['input'];
|
|
8057
|
+
attribute: Scalars['ID']['input'];
|
|
8058
|
+
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8059
|
+
}>;
|
|
8060
|
+
export type SmartFilterListValuesQuery = {
|
|
8061
|
+
listDistinctValues?: Array<{
|
|
8062
|
+
count: number;
|
|
8063
|
+
value?: {
|
|
8064
|
+
id: string;
|
|
8065
|
+
whoAmI: {
|
|
8066
|
+
id: string;
|
|
8067
|
+
label?: string | null;
|
|
8068
|
+
subLabel?: string | null;
|
|
8069
|
+
color?: string | null;
|
|
8070
|
+
preview?: IPreviewScalar | null;
|
|
8071
|
+
library: {
|
|
8072
|
+
id: string;
|
|
8073
|
+
label?: any | null;
|
|
8074
|
+
};
|
|
8075
|
+
};
|
|
8076
|
+
} | null;
|
|
8077
|
+
}> | null;
|
|
8078
|
+
};
|
|
7956
8079
|
export type NotificationSubscriptionVariables = Exact<{
|
|
7957
8080
|
[key: string]: never;
|
|
7958
8081
|
}>;
|
|
7959
8082
|
export type NotificationSubscription = {
|
|
7960
8083
|
notification: {
|
|
8084
|
+
id: string;
|
|
8085
|
+
date: number;
|
|
7961
8086
|
level: NotificationLevel;
|
|
7962
8087
|
message: string;
|
|
7963
8088
|
title: string;
|
|
7964
|
-
date: number;
|
|
7965
8089
|
attachments?: Array<{
|
|
7966
8090
|
label: string;
|
|
7967
8091
|
url: string;
|
|
@@ -7991,6 +8115,16 @@ export type GetRecordHistoryQuery = {
|
|
|
7991
8115
|
type: AttributeType;
|
|
7992
8116
|
format?: AttributeFormat | null;
|
|
7993
8117
|
multiple_values: boolean;
|
|
8118
|
+
} | {
|
|
8119
|
+
id: string;
|
|
8120
|
+
label?: any | null;
|
|
8121
|
+
type: AttributeType;
|
|
8122
|
+
format?: AttributeFormat | null;
|
|
8123
|
+
multiple_values: boolean;
|
|
8124
|
+
embedded_fields?: Array<{
|
|
8125
|
+
id: string;
|
|
8126
|
+
label?: any | null;
|
|
8127
|
+
} | null> | null;
|
|
7994
8128
|
} | null;
|
|
7995
8129
|
} | null;
|
|
7996
8130
|
user: {
|
|
@@ -8081,7 +8215,7 @@ export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
|
|
|
8081
8215
|
* },
|
|
8082
8216
|
* });
|
|
8083
8217
|
*/
|
|
8084
|
-
export declare function useCheckApplicationExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.
|
|
8218
|
+
export declare function useCheckApplicationExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.InteropQueryResult<CheckApplicationExistenceQuery, Exact<{
|
|
8085
8219
|
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8086
8220
|
endpoint?: InputMaybe<Scalars["String"]["input"]>;
|
|
8087
8221
|
}>>;
|
|
@@ -8117,7 +8251,7 @@ export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHook
|
|
|
8117
8251
|
skip?: boolean;
|
|
8118
8252
|
} | {
|
|
8119
8253
|
skip: boolean;
|
|
8120
|
-
})): Apollo.
|
|
8254
|
+
})): Apollo.InteropQueryResult<GetApplicationByIdQuery, Exact<{
|
|
8121
8255
|
id: Scalars["ID"]["input"];
|
|
8122
8256
|
}>>;
|
|
8123
8257
|
export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
|
|
@@ -8145,7 +8279,7 @@ export declare const GetApplicationModulesDocument: Apollo.DocumentNode;
|
|
|
8145
8279
|
* },
|
|
8146
8280
|
* });
|
|
8147
8281
|
*/
|
|
8148
|
-
export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.QueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.
|
|
8282
|
+
export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.QueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.InteropQueryResult<GetApplicationModulesQuery, Exact<{
|
|
8149
8283
|
[key: string]: never;
|
|
8150
8284
|
}>>;
|
|
8151
8285
|
export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
|
|
@@ -8204,7 +8338,7 @@ export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.Quer
|
|
|
8204
8338
|
skip?: boolean;
|
|
8205
8339
|
} | {
|
|
8206
8340
|
skip: boolean;
|
|
8207
|
-
})): Apollo.
|
|
8341
|
+
})): Apollo.InteropQueryResult<CheckAttributeExistenceQuery, Exact<{
|
|
8208
8342
|
id: Scalars["ID"]["input"];
|
|
8209
8343
|
}>>;
|
|
8210
8344
|
export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
|
|
@@ -8258,7 +8392,7 @@ export declare const GetAttributeByIdDocument: Apollo.DocumentNode;
|
|
|
8258
8392
|
* },
|
|
8259
8393
|
* });
|
|
8260
8394
|
*/
|
|
8261
|
-
export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.
|
|
8395
|
+
export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.InteropQueryResult<GetAttributeByIdQuery, Exact<{
|
|
8262
8396
|
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8263
8397
|
}>>;
|
|
8264
8398
|
export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
|
|
@@ -8292,7 +8426,7 @@ export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHook
|
|
|
8292
8426
|
skip?: boolean;
|
|
8293
8427
|
} | {
|
|
8294
8428
|
skip: boolean;
|
|
8295
|
-
})): Apollo.
|
|
8429
|
+
})): Apollo.InteropQueryResult<GetAttributesByLibQuery, Exact<{
|
|
8296
8430
|
library: Scalars["String"]["input"];
|
|
8297
8431
|
}>>;
|
|
8298
8432
|
export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
|
|
@@ -8323,7 +8457,7 @@ export declare const GetAttributesDocument: Apollo.DocumentNode;
|
|
|
8323
8457
|
* },
|
|
8324
8458
|
* });
|
|
8325
8459
|
*/
|
|
8326
|
-
export declare function useGetAttributesQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.
|
|
8460
|
+
export declare function useGetAttributesQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.InteropQueryResult<GetAttributesQuery, Exact<{
|
|
8327
8461
|
pagination?: InputMaybe<Pagination>;
|
|
8328
8462
|
sort?: InputMaybe<SortAttributes>;
|
|
8329
8463
|
filters?: InputMaybe<AttributesFiltersInput>;
|
|
@@ -8357,7 +8491,7 @@ export declare const GetVersionProfilesDocument: Apollo.DocumentNode;
|
|
|
8357
8491
|
* },
|
|
8358
8492
|
* });
|
|
8359
8493
|
*/
|
|
8360
|
-
export declare function useGetVersionProfilesQuery(baseOptions?: Apollo.QueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.
|
|
8494
|
+
export declare function useGetVersionProfilesQuery(baseOptions?: Apollo.QueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.InteropQueryResult<GetVersionProfilesQuery, Exact<{
|
|
8361
8495
|
filters?: InputMaybe<VersionProfilesFiltersInput>;
|
|
8362
8496
|
sort?: InputMaybe<SortVersionProfilesInput>;
|
|
8363
8497
|
}>>;
|
|
@@ -8393,7 +8527,7 @@ export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: A
|
|
|
8393
8527
|
skip?: boolean;
|
|
8394
8528
|
} | {
|
|
8395
8529
|
skip: boolean;
|
|
8396
|
-
})): Apollo.
|
|
8530
|
+
})): Apollo.InteropQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
8397
8531
|
libraryId: Scalars["String"]["input"];
|
|
8398
8532
|
}>>;
|
|
8399
8533
|
export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
@@ -8454,7 +8588,7 @@ export declare function useExportQuery(baseOptions: Apollo.QueryHookOptions<Expo
|
|
|
8454
8588
|
skip?: boolean;
|
|
8455
8589
|
} | {
|
|
8456
8590
|
skip: boolean;
|
|
8457
|
-
})): Apollo.
|
|
8591
|
+
})): Apollo.InteropQueryResult<ExportQuery, Exact<{
|
|
8458
8592
|
library: Scalars["ID"]["input"];
|
|
8459
8593
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8460
8594
|
profile?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -8555,7 +8689,7 @@ export declare function useGetDirectoryDataQuery(baseOptions: Apollo.QueryHookOp
|
|
|
8555
8689
|
skip?: boolean;
|
|
8556
8690
|
} | {
|
|
8557
8691
|
skip: boolean;
|
|
8558
|
-
})): Apollo.
|
|
8692
|
+
})): Apollo.InteropQueryResult<GetDirectoryDataQuery, Exact<{
|
|
8559
8693
|
library: Scalars["ID"]["input"];
|
|
8560
8694
|
directoryId: Scalars["String"]["input"];
|
|
8561
8695
|
}>>;
|
|
@@ -8586,9 +8720,15 @@ export declare const UploadUpdateDocument: Apollo.DocumentNode;
|
|
|
8586
8720
|
* },
|
|
8587
8721
|
* });
|
|
8588
8722
|
*/
|
|
8589
|
-
export declare function useUploadUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<UploadUpdateSubscription, UploadUpdateSubscriptionVariables>):
|
|
8590
|
-
|
|
8591
|
-
|
|
8723
|
+
export declare function useUploadUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<UploadUpdateSubscription, UploadUpdateSubscriptionVariables>): {
|
|
8724
|
+
restart: () => void;
|
|
8725
|
+
loading: boolean;
|
|
8726
|
+
data?: UploadUpdateSubscription;
|
|
8727
|
+
error?: Apollo.ApolloError;
|
|
8728
|
+
variables?: Exact<{
|
|
8729
|
+
filters?: InputMaybe<UploadFiltersInput>;
|
|
8730
|
+
}>;
|
|
8731
|
+
};
|
|
8592
8732
|
export type UploadUpdateSubscriptionHookResult = ReturnType<typeof useUploadUpdateSubscription>;
|
|
8593
8733
|
export type UploadUpdateSubscriptionResult = Apollo.SubscriptionResult<UploadUpdateSubscription>;
|
|
8594
8734
|
export declare const UploadDocument: Apollo.DocumentNode;
|
|
@@ -8666,7 +8806,7 @@ export declare const CheckLibraryExistenceDocument: Apollo.DocumentNode;
|
|
|
8666
8806
|
* },
|
|
8667
8807
|
* });
|
|
8668
8808
|
*/
|
|
8669
|
-
export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.
|
|
8809
|
+
export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.InteropQueryResult<CheckLibraryExistenceQuery, Exact<{
|
|
8670
8810
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8671
8811
|
}>>;
|
|
8672
8812
|
export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
|
|
@@ -8719,7 +8859,7 @@ export declare const GetLibrariesDocument: Apollo.DocumentNode;
|
|
|
8719
8859
|
* },
|
|
8720
8860
|
* });
|
|
8721
8861
|
*/
|
|
8722
|
-
export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.
|
|
8862
|
+
export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.InteropQueryResult<GetLibrariesQuery, Exact<{
|
|
8723
8863
|
[key: string]: never;
|
|
8724
8864
|
}>>;
|
|
8725
8865
|
export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
|
|
@@ -8748,7 +8888,7 @@ export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
|
|
|
8748
8888
|
* },
|
|
8749
8889
|
* });
|
|
8750
8890
|
*/
|
|
8751
|
-
export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.
|
|
8891
|
+
export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.InteropQueryResult<GetLibraryByIdQuery, Exact<{
|
|
8752
8892
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8753
8893
|
}>>;
|
|
8754
8894
|
export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
|
|
@@ -8777,7 +8917,7 @@ export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
|
|
|
8777
8917
|
* },
|
|
8778
8918
|
* });
|
|
8779
8919
|
*/
|
|
8780
|
-
export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.
|
|
8920
|
+
export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.InteropQueryResult<GetLibraryPermissionsQuery, Exact<{
|
|
8781
8921
|
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8782
8922
|
}>>;
|
|
8783
8923
|
export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
|
|
@@ -8811,7 +8951,7 @@ export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.Q
|
|
|
8811
8951
|
skip?: boolean;
|
|
8812
8952
|
} | {
|
|
8813
8953
|
skip: boolean;
|
|
8814
|
-
})): Apollo.
|
|
8954
|
+
})): Apollo.InteropQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
8815
8955
|
id: Scalars["ID"]["input"];
|
|
8816
8956
|
}>>;
|
|
8817
8957
|
export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
@@ -8873,7 +9013,7 @@ export declare function useIsAllowedQuery(baseOptions: Apollo.QueryHookOptions<I
|
|
|
8873
9013
|
skip?: boolean;
|
|
8874
9014
|
} | {
|
|
8875
9015
|
skip: boolean;
|
|
8876
|
-
})): Apollo.
|
|
9016
|
+
})): Apollo.InteropQueryResult<IsAllowedQuery, Exact<{
|
|
8877
9017
|
type: PermissionTypes;
|
|
8878
9018
|
actions: Array<PermissionsActions> | PermissionsActions;
|
|
8879
9019
|
applyTo?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -9054,7 +9194,7 @@ export declare function useDoesFileExistAsChildQuery(baseOptions: Apollo.QueryHo
|
|
|
9054
9194
|
skip?: boolean;
|
|
9055
9195
|
} | {
|
|
9056
9196
|
skip: boolean;
|
|
9057
|
-
})): Apollo.
|
|
9197
|
+
})): Apollo.InteropQueryResult<DoesFileExistAsChildQuery, Exact<{
|
|
9058
9198
|
parentNode?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9059
9199
|
treeId: Scalars["ID"]["input"];
|
|
9060
9200
|
filename: Scalars["String"]["input"];
|
|
@@ -9094,7 +9234,7 @@ export declare function useGetFileDataQuery(baseOptions: Apollo.QueryHookOptions
|
|
|
9094
9234
|
skip?: boolean;
|
|
9095
9235
|
} | {
|
|
9096
9236
|
skip: boolean;
|
|
9097
|
-
})): Apollo.
|
|
9237
|
+
})): Apollo.InteropQueryResult<GetFileDataQuery, Exact<{
|
|
9098
9238
|
library: Scalars["ID"]["input"];
|
|
9099
9239
|
fileId: Scalars["String"]["input"];
|
|
9100
9240
|
previewsStatusAttribute: Scalars["ID"]["input"];
|
|
@@ -9135,7 +9275,7 @@ export declare function useRecordFormQuery(baseOptions: Apollo.QueryHookOptions<
|
|
|
9135
9275
|
skip?: boolean;
|
|
9136
9276
|
} | {
|
|
9137
9277
|
skip: boolean;
|
|
9138
|
-
})): Apollo.
|
|
9278
|
+
})): Apollo.InteropQueryResult<RecordFormQuery, Exact<{
|
|
9139
9279
|
libraryId: Scalars["String"]["input"];
|
|
9140
9280
|
formId: Scalars["String"]["input"];
|
|
9141
9281
|
recordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -9170,9 +9310,15 @@ export declare const RecordUpdateDocument: Apollo.DocumentNode;
|
|
|
9170
9310
|
* },
|
|
9171
9311
|
* });
|
|
9172
9312
|
*/
|
|
9173
|
-
export declare function useRecordUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<RecordUpdateSubscription, RecordUpdateSubscriptionVariables>):
|
|
9174
|
-
|
|
9175
|
-
|
|
9313
|
+
export declare function useRecordUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<RecordUpdateSubscription, RecordUpdateSubscriptionVariables>): {
|
|
9314
|
+
restart: () => void;
|
|
9315
|
+
loading: boolean;
|
|
9316
|
+
data?: RecordUpdateSubscription;
|
|
9317
|
+
error?: Apollo.ApolloError;
|
|
9318
|
+
variables?: Exact<{
|
|
9319
|
+
filters?: InputMaybe<RecordUpdateFilterInput>;
|
|
9320
|
+
}>;
|
|
9321
|
+
};
|
|
9176
9322
|
export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
|
|
9177
9323
|
export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
|
|
9178
9324
|
export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
|
|
@@ -9199,7 +9345,7 @@ export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryH
|
|
|
9199
9345
|
skip?: boolean;
|
|
9200
9346
|
} | {
|
|
9201
9347
|
skip: boolean;
|
|
9202
|
-
})): Apollo.
|
|
9348
|
+
})): Apollo.InteropQueryResult<GetRecordsFromLibraryQuery, Exact<{
|
|
9203
9349
|
libraryId: Scalars["ID"]["input"];
|
|
9204
9350
|
pagination?: InputMaybe<RecordsPagination>;
|
|
9205
9351
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
@@ -9311,7 +9457,7 @@ export declare const CheckTreeExistenceDocument: Apollo.DocumentNode;
|
|
|
9311
9457
|
* },
|
|
9312
9458
|
* });
|
|
9313
9459
|
*/
|
|
9314
|
-
export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.
|
|
9460
|
+
export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.InteropQueryResult<CheckTreeExistenceQuery, Exact<{
|
|
9315
9461
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9316
9462
|
}>>;
|
|
9317
9463
|
export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
|
|
@@ -9365,7 +9511,7 @@ export declare const GetTreeByIdDocument: Apollo.DocumentNode;
|
|
|
9365
9511
|
* },
|
|
9366
9512
|
* });
|
|
9367
9513
|
*/
|
|
9368
|
-
export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.
|
|
9514
|
+
export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.InteropQueryResult<GetTreeByIdQuery, Exact<{
|
|
9369
9515
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9370
9516
|
}>>;
|
|
9371
9517
|
export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
|
|
@@ -9395,7 +9541,7 @@ export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
|
|
|
9395
9541
|
* },
|
|
9396
9542
|
* });
|
|
9397
9543
|
*/
|
|
9398
|
-
export declare function useGetTreeLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.
|
|
9544
|
+
export declare function useGetTreeLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.InteropQueryResult<GetTreeLibrariesQuery, Exact<{
|
|
9399
9545
|
treeId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9400
9546
|
library?: InputMaybe<Scalars["String"]["input"]>;
|
|
9401
9547
|
}>>;
|
|
@@ -9425,7 +9571,7 @@ export declare const GetTreesDocument: Apollo.DocumentNode;
|
|
|
9425
9571
|
* },
|
|
9426
9572
|
* });
|
|
9427
9573
|
*/
|
|
9428
|
-
export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.
|
|
9574
|
+
export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.InteropQueryResult<GetTreesQuery, Exact<{
|
|
9429
9575
|
[key: string]: never;
|
|
9430
9576
|
}>>;
|
|
9431
9577
|
export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
|
|
@@ -9488,7 +9634,7 @@ export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOp
|
|
|
9488
9634
|
skip?: boolean;
|
|
9489
9635
|
} | {
|
|
9490
9636
|
skip: boolean;
|
|
9491
|
-
})): Apollo.
|
|
9637
|
+
})): Apollo.InteropQueryResult<TreeNodeChildrenQuery, Exact<{
|
|
9492
9638
|
treeId: Scalars["ID"]["input"];
|
|
9493
9639
|
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9494
9640
|
pagination?: InputMaybe<Pagination>;
|
|
@@ -9508,6 +9654,55 @@ export type TreeNodeChildrenQueryHookResult = ReturnType<typeof useTreeNodeChild
|
|
|
9508
9654
|
export type TreeNodeChildrenLazyQueryHookResult = ReturnType<typeof useTreeNodeChildrenLazyQuery>;
|
|
9509
9655
|
export type TreeNodeChildrenSuspenseQueryHookResult = ReturnType<typeof useTreeNodeChildrenSuspenseQuery>;
|
|
9510
9656
|
export type TreeNodeChildrenQueryResult = Apollo.QueryResult<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>;
|
|
9657
|
+
export declare const GetTreeNodeChildrenWithAccessByDefaultPermissionQueryDocument: Apollo.DocumentNode;
|
|
9658
|
+
/**
|
|
9659
|
+
* __useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery__
|
|
9660
|
+
*
|
|
9661
|
+
* To run a query within a React component, call `useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery` and pass it any options that fit your needs.
|
|
9662
|
+
* When your component renders, `useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
9663
|
+
* you can use to render your UI.
|
|
9664
|
+
*
|
|
9665
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
9666
|
+
*
|
|
9667
|
+
* @example
|
|
9668
|
+
* const { data, loading, error } = useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery({
|
|
9669
|
+
* variables: {
|
|
9670
|
+
* treeId: // value for 'treeId'
|
|
9671
|
+
* node: // value for 'node'
|
|
9672
|
+
* pagination: // value for 'pagination'
|
|
9673
|
+
* childrenAsRecordValuePermissionFilter: // value for 'childrenAsRecordValuePermissionFilter'
|
|
9674
|
+
* dependentValuesPermissionFilter: // value for 'dependentValuesPermissionFilter'
|
|
9675
|
+
* accessRecordByDefaultPermission: // value for 'accessRecordByDefaultPermission'
|
|
9676
|
+
* },
|
|
9677
|
+
* });
|
|
9678
|
+
*/
|
|
9679
|
+
export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery(baseOptions: Apollo.QueryHookOptions<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables> & ({
|
|
9680
|
+
variables: GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables;
|
|
9681
|
+
skip?: boolean;
|
|
9682
|
+
} | {
|
|
9683
|
+
skip: boolean;
|
|
9684
|
+
})): Apollo.InteropQueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, Exact<{
|
|
9685
|
+
treeId: Scalars["ID"]["input"];
|
|
9686
|
+
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9687
|
+
pagination?: InputMaybe<Pagination>;
|
|
9688
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
9689
|
+
dependentValuesPermissionFilter?: InputMaybe<DependentValuesPermissionFilterInput>;
|
|
9690
|
+
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
9691
|
+
}>>;
|
|
9692
|
+
export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, Exact<{
|
|
9693
|
+
treeId: Scalars["ID"]["input"];
|
|
9694
|
+
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9695
|
+
pagination?: InputMaybe<Pagination>;
|
|
9696
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
9697
|
+
dependentValuesPermissionFilter?: InputMaybe<DependentValuesPermissionFilterInput>;
|
|
9698
|
+
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
9699
|
+
}>>;
|
|
9700
|
+
export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>;
|
|
9701
|
+
export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQuerySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery | undefined, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>;
|
|
9702
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryHookResult = ReturnType<typeof useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery>;
|
|
9703
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryLazyQueryHookResult = ReturnType<typeof useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryLazyQuery>;
|
|
9704
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQuerySuspenseQueryHookResult = ReturnType<typeof useGetTreeNodeChildrenWithAccessByDefaultPermissionQuerySuspenseQuery>;
|
|
9705
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryResult = Apollo.QueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>;
|
|
9511
9706
|
export declare const GetUserDataDocument: Apollo.DocumentNode;
|
|
9512
9707
|
/**
|
|
9513
9708
|
* __useGetUserDataQuery__
|
|
@@ -9531,7 +9726,7 @@ export declare function useGetUserDataQuery(baseOptions: Apollo.QueryHookOptions
|
|
|
9531
9726
|
skip?: boolean;
|
|
9532
9727
|
} | {
|
|
9533
9728
|
skip: boolean;
|
|
9534
|
-
})): Apollo.
|
|
9729
|
+
})): Apollo.InteropQueryResult<GetUserDataQuery, Exact<{
|
|
9535
9730
|
keys: Array<Scalars["String"]["input"]> | Scalars["String"]["input"];
|
|
9536
9731
|
global?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
9537
9732
|
}>>;
|
|
@@ -9716,7 +9911,7 @@ export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<Get
|
|
|
9716
9911
|
skip?: boolean;
|
|
9717
9912
|
} | {
|
|
9718
9913
|
skip: boolean;
|
|
9719
|
-
})): Apollo.
|
|
9914
|
+
})): Apollo.InteropQueryResult<GetViewQuery, Exact<{
|
|
9720
9915
|
viewId: Scalars["String"]["input"];
|
|
9721
9916
|
}>>;
|
|
9722
9917
|
export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
|
|
@@ -9750,7 +9945,7 @@ export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOption
|
|
|
9750
9945
|
skip?: boolean;
|
|
9751
9946
|
} | {
|
|
9752
9947
|
skip: boolean;
|
|
9753
|
-
})): Apollo.
|
|
9948
|
+
})): Apollo.InteropQueryResult<GetViewsListQuery, Exact<{
|
|
9754
9949
|
libraryId: Scalars["String"]["input"];
|
|
9755
9950
|
}>>;
|
|
9756
9951
|
export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
|
|
@@ -9787,43 +9982,6 @@ export declare function useSaveViewMutation(baseOptions?: Apollo.MutationHookOpt
|
|
|
9787
9982
|
export type SaveViewMutationHookResult = ReturnType<typeof useSaveViewMutation>;
|
|
9788
9983
|
export type SaveViewMutationResult = Apollo.MutationResult<SaveViewMutation>;
|
|
9789
9984
|
export type SaveViewMutationOptions = Apollo.BaseMutationOptions<SaveViewMutation, SaveViewMutationVariables>;
|
|
9790
|
-
export declare const TreeFilterByDefaultValuesDocument: Apollo.DocumentNode;
|
|
9791
|
-
/**
|
|
9792
|
-
* __useTreeFilterByDefaultValuesQuery__
|
|
9793
|
-
*
|
|
9794
|
-
* To run a query within a React component, call `useTreeFilterByDefaultValuesQuery` and pass it any options that fit your needs.
|
|
9795
|
-
* When your component renders, `useTreeFilterByDefaultValuesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
9796
|
-
* you can use to render your UI.
|
|
9797
|
-
*
|
|
9798
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
9799
|
-
*
|
|
9800
|
-
* @example
|
|
9801
|
-
* const { data, loading, error } = useTreeFilterByDefaultValuesQuery({
|
|
9802
|
-
* variables: {
|
|
9803
|
-
* treeId: // value for 'treeId'
|
|
9804
|
-
* accessRecordByDefaultPermission: // value for 'accessRecordByDefaultPermission'
|
|
9805
|
-
* },
|
|
9806
|
-
* });
|
|
9807
|
-
*/
|
|
9808
|
-
export declare function useTreeFilterByDefaultValuesQuery(baseOptions: Apollo.QueryHookOptions<TreeFilterByDefaultValuesQuery, TreeFilterByDefaultValuesQueryVariables> & ({
|
|
9809
|
-
variables: TreeFilterByDefaultValuesQueryVariables;
|
|
9810
|
-
skip?: boolean;
|
|
9811
|
-
} | {
|
|
9812
|
-
skip: boolean;
|
|
9813
|
-
})): Apollo.QueryResult<TreeFilterByDefaultValuesQuery, Exact<{
|
|
9814
|
-
treeId: Scalars["ID"]["input"];
|
|
9815
|
-
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
9816
|
-
}>>;
|
|
9817
|
-
export declare function useTreeFilterByDefaultValuesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeFilterByDefaultValuesQuery, TreeFilterByDefaultValuesQueryVariables>): Apollo.LazyQueryResultTuple<TreeFilterByDefaultValuesQuery, Exact<{
|
|
9818
|
-
treeId: Scalars["ID"]["input"];
|
|
9819
|
-
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
9820
|
-
}>>;
|
|
9821
|
-
export declare function useTreeFilterByDefaultValuesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeFilterByDefaultValuesQuery, TreeFilterByDefaultValuesQueryVariables>): Apollo.UseSuspenseQueryResult<TreeFilterByDefaultValuesQuery, TreeFilterByDefaultValuesQueryVariables>;
|
|
9822
|
-
export declare function useTreeFilterByDefaultValuesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<TreeFilterByDefaultValuesQuery, TreeFilterByDefaultValuesQueryVariables>): Apollo.UseSuspenseQueryResult<TreeFilterByDefaultValuesQuery | undefined, TreeFilterByDefaultValuesQueryVariables>;
|
|
9823
|
-
export type TreeFilterByDefaultValuesQueryHookResult = ReturnType<typeof useTreeFilterByDefaultValuesQuery>;
|
|
9824
|
-
export type TreeFilterByDefaultValuesLazyQueryHookResult = ReturnType<typeof useTreeFilterByDefaultValuesLazyQuery>;
|
|
9825
|
-
export type TreeFilterByDefaultValuesSuspenseQueryHookResult = ReturnType<typeof useTreeFilterByDefaultValuesSuspenseQuery>;
|
|
9826
|
-
export type TreeFilterByDefaultValuesQueryResult = Apollo.QueryResult<TreeFilterByDefaultValuesQuery, TreeFilterByDefaultValuesQueryVariables>;
|
|
9827
9985
|
export declare const AttributeWithValuesForMassEditionDocument: Apollo.DocumentNode;
|
|
9828
9986
|
/**
|
|
9829
9987
|
* __useAttributeWithValuesForMassEditionQuery__
|
|
@@ -9846,7 +10004,7 @@ export declare function useAttributeWithValuesForMassEditionQuery(baseOptions: A
|
|
|
9846
10004
|
skip?: boolean;
|
|
9847
10005
|
} | {
|
|
9848
10006
|
skip: boolean;
|
|
9849
|
-
})): Apollo.
|
|
10007
|
+
})): Apollo.InteropQueryResult<AttributeWithValuesForMassEditionQuery, Exact<{
|
|
9850
10008
|
attributeId: Scalars["ID"]["input"];
|
|
9851
10009
|
}>>;
|
|
9852
10010
|
export declare function useAttributeWithValuesForMassEditionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AttributeWithValuesForMassEditionQuery, AttributeWithValuesForMassEditionQueryVariables>): Apollo.LazyQueryResultTuple<AttributeWithValuesForMassEditionQuery, Exact<{
|
|
@@ -9880,7 +10038,7 @@ export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: A
|
|
|
9880
10038
|
skip?: boolean;
|
|
9881
10039
|
} | {
|
|
9882
10040
|
skip: boolean;
|
|
9883
|
-
})): Apollo.
|
|
10041
|
+
})): Apollo.InteropQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
9884
10042
|
library: Scalars["String"]["input"];
|
|
9885
10043
|
}>>;
|
|
9886
10044
|
export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
@@ -9909,7 +10067,7 @@ export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
|
|
|
9909
10067
|
* },
|
|
9910
10068
|
* });
|
|
9911
10069
|
*/
|
|
9912
|
-
export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.
|
|
10070
|
+
export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.InteropQueryResult<ExplorerAttributesQuery, Exact<{
|
|
9913
10071
|
ids?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9914
10072
|
}>>;
|
|
9915
10073
|
export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
|
|
@@ -9943,7 +10101,7 @@ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryH
|
|
|
9943
10101
|
skip?: boolean;
|
|
9944
10102
|
} | {
|
|
9945
10103
|
skip: boolean;
|
|
9946
|
-
})): Apollo.
|
|
10104
|
+
})): Apollo.InteropQueryResult<ExplorerLinkAttributeQuery, Exact<{
|
|
9947
10105
|
id: Scalars["ID"]["input"];
|
|
9948
10106
|
}>>;
|
|
9949
10107
|
export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
|
|
@@ -9979,7 +10137,7 @@ export declare function useCountValuesOccurrencesQuery(baseOptions: Apollo.Query
|
|
|
9979
10137
|
skip?: boolean;
|
|
9980
10138
|
} | {
|
|
9981
10139
|
skip: boolean;
|
|
9982
|
-
})): Apollo.
|
|
10140
|
+
})): Apollo.InteropQueryResult<CountValuesOccurrencesQuery, Exact<{
|
|
9983
10141
|
library: Scalars["ID"]["input"];
|
|
9984
10142
|
attribute: Scalars["ID"]["input"];
|
|
9985
10143
|
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
@@ -10022,7 +10180,7 @@ export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHoo
|
|
|
10022
10180
|
skip?: boolean;
|
|
10023
10181
|
} | {
|
|
10024
10182
|
skip: boolean;
|
|
10025
|
-
})): Apollo.
|
|
10183
|
+
})): Apollo.InteropQueryResult<ExplorerLibraryDataQuery, Exact<{
|
|
10026
10184
|
libraryId: Scalars["ID"]["input"];
|
|
10027
10185
|
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
10028
10186
|
pagination?: InputMaybe<RecordsPagination>;
|
|
@@ -10069,7 +10227,7 @@ export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOp
|
|
|
10069
10227
|
skip?: boolean;
|
|
10070
10228
|
} | {
|
|
10071
10229
|
skip: boolean;
|
|
10072
|
-
})): Apollo.
|
|
10230
|
+
})): Apollo.InteropQueryResult<ExplorerLinkDataQuery, Exact<{
|
|
10073
10231
|
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
10074
10232
|
parentLibraryId: Scalars["ID"]["input"];
|
|
10075
10233
|
parentRecordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -10109,7 +10267,7 @@ export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHo
|
|
|
10109
10267
|
skip?: boolean;
|
|
10110
10268
|
} | {
|
|
10111
10269
|
skip: boolean;
|
|
10112
|
-
})): Apollo.
|
|
10270
|
+
})): Apollo.InteropQueryResult<GetLibraryAttributesQuery, Exact<{
|
|
10113
10271
|
libraryId: Scalars["ID"]["input"];
|
|
10114
10272
|
}>>;
|
|
10115
10273
|
export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
|
|
@@ -10143,7 +10301,7 @@ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.Query
|
|
|
10143
10301
|
skip?: boolean;
|
|
10144
10302
|
} | {
|
|
10145
10303
|
skip: boolean;
|
|
10146
|
-
})): Apollo.
|
|
10304
|
+
})): Apollo.InteropQueryResult<ExplorerLibraryDetailsQuery, Exact<{
|
|
10147
10305
|
libraryId: Scalars["ID"]["input"];
|
|
10148
10306
|
}>>;
|
|
10149
10307
|
export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
|
|
@@ -10172,7 +10330,7 @@ export declare const LibraryExportProfilesDocument: Apollo.DocumentNode;
|
|
|
10172
10330
|
* },
|
|
10173
10331
|
* });
|
|
10174
10332
|
*/
|
|
10175
|
-
export declare function useLibraryExportProfilesQuery(baseOptions?: Apollo.QueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.
|
|
10333
|
+
export declare function useLibraryExportProfilesQuery(baseOptions?: Apollo.QueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.InteropQueryResult<LibraryExportProfilesQuery, Exact<{
|
|
10176
10334
|
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
10177
10335
|
}>>;
|
|
10178
10336
|
export declare function useLibraryExportProfilesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.LazyQueryResultTuple<LibraryExportProfilesQuery, Exact<{
|
|
@@ -10207,7 +10365,7 @@ export declare function useExplorerSelectionIdsQuery(baseOptions: Apollo.QueryHo
|
|
|
10207
10365
|
skip?: boolean;
|
|
10208
10366
|
} | {
|
|
10209
10367
|
skip: boolean;
|
|
10210
|
-
})): Apollo.
|
|
10368
|
+
})): Apollo.InteropQueryResult<ExplorerSelectionIdsQuery, Exact<{
|
|
10211
10369
|
libraryId: Scalars["ID"]["input"];
|
|
10212
10370
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
10213
10371
|
}>>;
|
|
@@ -10237,7 +10395,7 @@ export declare const MeDocument: Apollo.DocumentNode;
|
|
|
10237
10395
|
* },
|
|
10238
10396
|
* });
|
|
10239
10397
|
*/
|
|
10240
|
-
export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>): Apollo.
|
|
10398
|
+
export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>): Apollo.InteropQueryResult<MeQuery, Exact<{
|
|
10241
10399
|
[key: string]: never;
|
|
10242
10400
|
}>>;
|
|
10243
10401
|
export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
|
|
@@ -10274,6 +10432,46 @@ export declare function useUpdateViewMutation(baseOptions?: Apollo.MutationHookO
|
|
|
10274
10432
|
export type UpdateViewMutationHookResult = ReturnType<typeof useUpdateViewMutation>;
|
|
10275
10433
|
export type UpdateViewMutationResult = Apollo.MutationResult<UpdateViewMutation>;
|
|
10276
10434
|
export type UpdateViewMutationOptions = Apollo.BaseMutationOptions<UpdateViewMutation, UpdateViewMutationVariables>;
|
|
10435
|
+
export declare const SmartFilterListValuesDocument: Apollo.DocumentNode;
|
|
10436
|
+
/**
|
|
10437
|
+
* __useSmartFilterListValuesQuery__
|
|
10438
|
+
*
|
|
10439
|
+
* To run a query within a React component, call `useSmartFilterListValuesQuery` and pass it any options that fit your needs.
|
|
10440
|
+
* When your component renders, `useSmartFilterListValuesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
10441
|
+
* you can use to render your UI.
|
|
10442
|
+
*
|
|
10443
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
10444
|
+
*
|
|
10445
|
+
* @example
|
|
10446
|
+
* const { data, loading, error } = useSmartFilterListValuesQuery({
|
|
10447
|
+
* variables: {
|
|
10448
|
+
* library: // value for 'library'
|
|
10449
|
+
* attribute: // value for 'attribute'
|
|
10450
|
+
* recordFilters: // value for 'recordFilters'
|
|
10451
|
+
* },
|
|
10452
|
+
* });
|
|
10453
|
+
*/
|
|
10454
|
+
export declare function useSmartFilterListValuesQuery(baseOptions: Apollo.QueryHookOptions<SmartFilterListValuesQuery, SmartFilterListValuesQueryVariables> & ({
|
|
10455
|
+
variables: SmartFilterListValuesQueryVariables;
|
|
10456
|
+
skip?: boolean;
|
|
10457
|
+
} | {
|
|
10458
|
+
skip: boolean;
|
|
10459
|
+
})): Apollo.InteropQueryResult<SmartFilterListValuesQuery, Exact<{
|
|
10460
|
+
library: Scalars["ID"]["input"];
|
|
10461
|
+
attribute: Scalars["ID"]["input"];
|
|
10462
|
+
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
10463
|
+
}>>;
|
|
10464
|
+
export declare function useSmartFilterListValuesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<SmartFilterListValuesQuery, SmartFilterListValuesQueryVariables>): Apollo.LazyQueryResultTuple<SmartFilterListValuesQuery, Exact<{
|
|
10465
|
+
library: Scalars["ID"]["input"];
|
|
10466
|
+
attribute: Scalars["ID"]["input"];
|
|
10467
|
+
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
10468
|
+
}>>;
|
|
10469
|
+
export declare function useSmartFilterListValuesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<SmartFilterListValuesQuery, SmartFilterListValuesQueryVariables>): Apollo.UseSuspenseQueryResult<SmartFilterListValuesQuery, SmartFilterListValuesQueryVariables>;
|
|
10470
|
+
export declare function useSmartFilterListValuesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<SmartFilterListValuesQuery, SmartFilterListValuesQueryVariables>): Apollo.UseSuspenseQueryResult<SmartFilterListValuesQuery | undefined, SmartFilterListValuesQueryVariables>;
|
|
10471
|
+
export type SmartFilterListValuesQueryHookResult = ReturnType<typeof useSmartFilterListValuesQuery>;
|
|
10472
|
+
export type SmartFilterListValuesLazyQueryHookResult = ReturnType<typeof useSmartFilterListValuesLazyQuery>;
|
|
10473
|
+
export type SmartFilterListValuesSuspenseQueryHookResult = ReturnType<typeof useSmartFilterListValuesSuspenseQuery>;
|
|
10474
|
+
export type SmartFilterListValuesQueryResult = Apollo.QueryResult<SmartFilterListValuesQuery, SmartFilterListValuesQueryVariables>;
|
|
10277
10475
|
export declare const NotificationDocument: Apollo.DocumentNode;
|
|
10278
10476
|
/**
|
|
10279
10477
|
* __useNotificationSubscription__
|
|
@@ -10290,9 +10488,15 @@ export declare const NotificationDocument: Apollo.DocumentNode;
|
|
|
10290
10488
|
* },
|
|
10291
10489
|
* });
|
|
10292
10490
|
*/
|
|
10293
|
-
export declare function useNotificationSubscription(baseOptions?: Apollo.SubscriptionHookOptions<NotificationSubscription, NotificationSubscriptionVariables>):
|
|
10294
|
-
|
|
10295
|
-
|
|
10491
|
+
export declare function useNotificationSubscription(baseOptions?: Apollo.SubscriptionHookOptions<NotificationSubscription, NotificationSubscriptionVariables>): {
|
|
10492
|
+
restart: () => void;
|
|
10493
|
+
loading: boolean;
|
|
10494
|
+
data?: NotificationSubscription;
|
|
10495
|
+
error?: Apollo.ApolloError;
|
|
10496
|
+
variables?: Exact<{
|
|
10497
|
+
[key: string]: never;
|
|
10498
|
+
}>;
|
|
10499
|
+
};
|
|
10296
10500
|
export type NotificationSubscriptionHookResult = ReturnType<typeof useNotificationSubscription>;
|
|
10297
10501
|
export type NotificationSubscriptionResult = Apollo.SubscriptionResult<NotificationSubscription>;
|
|
10298
10502
|
export declare const GetRecordHistoryDocument: Apollo.DocumentNode;
|
|
@@ -10320,7 +10524,7 @@ export declare function useGetRecordHistoryQuery(baseOptions: Apollo.QueryHookOp
|
|
|
10320
10524
|
skip?: boolean;
|
|
10321
10525
|
} | {
|
|
10322
10526
|
skip: boolean;
|
|
10323
|
-
})): Apollo.
|
|
10527
|
+
})): Apollo.InteropQueryResult<GetRecordHistoryQuery, Exact<{
|
|
10324
10528
|
record: LogTopicRecordFilterInput;
|
|
10325
10529
|
attributeId?: InputMaybe<Scalars["String"]["input"]>;
|
|
10326
10530
|
actions?: InputMaybe<Array<LogAction> | LogAction>;
|
|
@@ -10360,7 +10564,7 @@ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptio
|
|
|
10360
10564
|
skip?: boolean;
|
|
10361
10565
|
} | {
|
|
10362
10566
|
skip: boolean;
|
|
10363
|
-
})): Apollo.
|
|
10567
|
+
})): Apollo.InteropQueryResult<TreeDataQueryQuery, Exact<{
|
|
10364
10568
|
treeId: Scalars["ID"]["input"];
|
|
10365
10569
|
}>>;
|
|
10366
10570
|
export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
|