@leav/ui 1.8.0 → 1.9.0-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_gqlTypes/index.d.ts +162 -53
- package/dist/_gqlTypes/index.js +55 -0
- 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 +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.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/filter-items/CommonFilterItem.js +2 -2
- 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 +5 -1
- package/dist/components/Filters/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/FilterValueListDropDown.js +3 -3
- 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/tree/TreeAttributeDropDown.js +5 -4
- package/dist/components/Filters/filter-items/filter-type/tree/TreeAttributeDropDown.js.map +1 -1
- 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/{SelectAllCheckbox.js → shared/SelectAllCheckbox.js} +1 -1
- 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/Notifications/hooks/useNotificationSubscription.d.ts +9 -3
- package/dist/components/RecordEdition/EditRecord/EditRecord.js +1 -1
- package/dist/components/RecordEdition/EditRecord/EditRecord.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/package.json +6 -6
- 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/SelectAllCheckbox.js.map +0 -1
- /package/dist/components/Filters/filter-items/{SelectAllCheckbox.d.ts → shared/SelectAllCheckbox.d.ts} +0 -0
|
@@ -986,6 +986,9 @@ export type AttributeDetailsLinkAttributeFragment = {
|
|
|
986
986
|
id: string;
|
|
987
987
|
label?: any | null;
|
|
988
988
|
} | null;
|
|
989
|
+
smart_filter?: {
|
|
990
|
+
enable: boolean;
|
|
991
|
+
} | null;
|
|
989
992
|
metadata_fields?: Array<{
|
|
990
993
|
id: string;
|
|
991
994
|
label?: any | null;
|
|
@@ -3321,6 +3324,9 @@ export type AttributesByLibAttributeWithPermissionsLinkAttributeFragment = {
|
|
|
3321
3324
|
linked_library?: {
|
|
3322
3325
|
id: string;
|
|
3323
3326
|
} | null;
|
|
3327
|
+
smart_filter?: {
|
|
3328
|
+
enable: boolean;
|
|
3329
|
+
} | null;
|
|
3324
3330
|
};
|
|
3325
3331
|
export type AttributesByLibAttributeWithPermissionsStandardAttributeFragment = {
|
|
3326
3332
|
id: string;
|
|
@@ -3407,6 +3413,9 @@ export type AttributesByLibLinkAttributeWithPermissionsFragment = {
|
|
|
3407
3413
|
linked_library?: {
|
|
3408
3414
|
id: string;
|
|
3409
3415
|
} | null;
|
|
3416
|
+
smart_filter?: {
|
|
3417
|
+
enable: boolean;
|
|
3418
|
+
} | null;
|
|
3410
3419
|
};
|
|
3411
3420
|
export type StandardAttributeDetailsFragment = {
|
|
3412
3421
|
id: string;
|
|
@@ -3444,6 +3453,9 @@ export type LinkAttributeDetailsFragment = {
|
|
|
3444
3453
|
};
|
|
3445
3454
|
}> | null;
|
|
3446
3455
|
} | null;
|
|
3456
|
+
smart_filter?: {
|
|
3457
|
+
enable: boolean;
|
|
3458
|
+
} | null;
|
|
3447
3459
|
};
|
|
3448
3460
|
export type TreeAttributeDetailsFragment = {
|
|
3449
3461
|
id: string;
|
|
@@ -3808,6 +3820,9 @@ export type GetAttributeByIdQuery = {
|
|
|
3808
3820
|
id: string;
|
|
3809
3821
|
label?: any | null;
|
|
3810
3822
|
} | null;
|
|
3823
|
+
smart_filter?: {
|
|
3824
|
+
enable: boolean;
|
|
3825
|
+
} | null;
|
|
3811
3826
|
metadata_fields?: Array<{
|
|
3812
3827
|
id: string;
|
|
3813
3828
|
label?: any | null;
|
|
@@ -4031,6 +4046,9 @@ export type SaveAttributeMutation = {
|
|
|
4031
4046
|
id: string;
|
|
4032
4047
|
label?: any | null;
|
|
4033
4048
|
} | null;
|
|
4049
|
+
smart_filter?: {
|
|
4050
|
+
enable: boolean;
|
|
4051
|
+
} | null;
|
|
4034
4052
|
metadata_fields?: Array<{
|
|
4035
4053
|
id: string;
|
|
4036
4054
|
label?: any | null;
|
|
@@ -7488,6 +7506,9 @@ export type GetAttributesByLibWithPermissionsQuery = {
|
|
|
7488
7506
|
linked_library?: {
|
|
7489
7507
|
id: string;
|
|
7490
7508
|
} | null;
|
|
7509
|
+
smart_filter?: {
|
|
7510
|
+
enable: boolean;
|
|
7511
|
+
} | null;
|
|
7491
7512
|
permissions: {
|
|
7492
7513
|
access_attribute: boolean;
|
|
7493
7514
|
};
|
|
@@ -7582,6 +7603,9 @@ export type ExplorerAttributesQuery = {
|
|
|
7582
7603
|
};
|
|
7583
7604
|
}> | null;
|
|
7584
7605
|
} | null;
|
|
7606
|
+
smart_filter?: {
|
|
7607
|
+
enable: boolean;
|
|
7608
|
+
} | null;
|
|
7585
7609
|
permissions: {
|
|
7586
7610
|
access_attribute: boolean;
|
|
7587
7611
|
};
|
|
@@ -7647,6 +7671,9 @@ export type ExplorerLinkAttributeQuery = {
|
|
|
7647
7671
|
};
|
|
7648
7672
|
}> | null;
|
|
7649
7673
|
} | null;
|
|
7674
|
+
smart_filter?: {
|
|
7675
|
+
enable: boolean;
|
|
7676
|
+
} | null;
|
|
7650
7677
|
permissions: {
|
|
7651
7678
|
access_attribute: boolean;
|
|
7652
7679
|
edit_value: boolean;
|
|
@@ -8025,6 +8052,30 @@ export type UpdateViewMutation = {
|
|
|
8025
8052
|
}> | null;
|
|
8026
8053
|
};
|
|
8027
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
|
+
};
|
|
8028
8079
|
export type NotificationSubscriptionVariables = Exact<{
|
|
8029
8080
|
[key: string]: never;
|
|
8030
8081
|
}>;
|
|
@@ -8164,7 +8215,7 @@ export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
|
|
|
8164
8215
|
* },
|
|
8165
8216
|
* });
|
|
8166
8217
|
*/
|
|
8167
|
-
export declare function useCheckApplicationExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.
|
|
8218
|
+
export declare function useCheckApplicationExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.InteropQueryResult<CheckApplicationExistenceQuery, Exact<{
|
|
8168
8219
|
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8169
8220
|
endpoint?: InputMaybe<Scalars["String"]["input"]>;
|
|
8170
8221
|
}>>;
|
|
@@ -8200,7 +8251,7 @@ export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHook
|
|
|
8200
8251
|
skip?: boolean;
|
|
8201
8252
|
} | {
|
|
8202
8253
|
skip: boolean;
|
|
8203
|
-
})): Apollo.
|
|
8254
|
+
})): Apollo.InteropQueryResult<GetApplicationByIdQuery, Exact<{
|
|
8204
8255
|
id: Scalars["ID"]["input"];
|
|
8205
8256
|
}>>;
|
|
8206
8257
|
export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
|
|
@@ -8228,7 +8279,7 @@ export declare const GetApplicationModulesDocument: Apollo.DocumentNode;
|
|
|
8228
8279
|
* },
|
|
8229
8280
|
* });
|
|
8230
8281
|
*/
|
|
8231
|
-
export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.QueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.
|
|
8282
|
+
export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.QueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.InteropQueryResult<GetApplicationModulesQuery, Exact<{
|
|
8232
8283
|
[key: string]: never;
|
|
8233
8284
|
}>>;
|
|
8234
8285
|
export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
|
|
@@ -8287,7 +8338,7 @@ export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.Quer
|
|
|
8287
8338
|
skip?: boolean;
|
|
8288
8339
|
} | {
|
|
8289
8340
|
skip: boolean;
|
|
8290
|
-
})): Apollo.
|
|
8341
|
+
})): Apollo.InteropQueryResult<CheckAttributeExistenceQuery, Exact<{
|
|
8291
8342
|
id: Scalars["ID"]["input"];
|
|
8292
8343
|
}>>;
|
|
8293
8344
|
export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
|
|
@@ -8341,7 +8392,7 @@ export declare const GetAttributeByIdDocument: Apollo.DocumentNode;
|
|
|
8341
8392
|
* },
|
|
8342
8393
|
* });
|
|
8343
8394
|
*/
|
|
8344
|
-
export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.
|
|
8395
|
+
export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.InteropQueryResult<GetAttributeByIdQuery, Exact<{
|
|
8345
8396
|
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8346
8397
|
}>>;
|
|
8347
8398
|
export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
|
|
@@ -8375,7 +8426,7 @@ export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHook
|
|
|
8375
8426
|
skip?: boolean;
|
|
8376
8427
|
} | {
|
|
8377
8428
|
skip: boolean;
|
|
8378
|
-
})): Apollo.
|
|
8429
|
+
})): Apollo.InteropQueryResult<GetAttributesByLibQuery, Exact<{
|
|
8379
8430
|
library: Scalars["String"]["input"];
|
|
8380
8431
|
}>>;
|
|
8381
8432
|
export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
|
|
@@ -8406,7 +8457,7 @@ export declare const GetAttributesDocument: Apollo.DocumentNode;
|
|
|
8406
8457
|
* },
|
|
8407
8458
|
* });
|
|
8408
8459
|
*/
|
|
8409
|
-
export declare function useGetAttributesQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.
|
|
8460
|
+
export declare function useGetAttributesQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.InteropQueryResult<GetAttributesQuery, Exact<{
|
|
8410
8461
|
pagination?: InputMaybe<Pagination>;
|
|
8411
8462
|
sort?: InputMaybe<SortAttributes>;
|
|
8412
8463
|
filters?: InputMaybe<AttributesFiltersInput>;
|
|
@@ -8440,7 +8491,7 @@ export declare const GetVersionProfilesDocument: Apollo.DocumentNode;
|
|
|
8440
8491
|
* },
|
|
8441
8492
|
* });
|
|
8442
8493
|
*/
|
|
8443
|
-
export declare function useGetVersionProfilesQuery(baseOptions?: Apollo.QueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.
|
|
8494
|
+
export declare function useGetVersionProfilesQuery(baseOptions?: Apollo.QueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.InteropQueryResult<GetVersionProfilesQuery, Exact<{
|
|
8444
8495
|
filters?: InputMaybe<VersionProfilesFiltersInput>;
|
|
8445
8496
|
sort?: InputMaybe<SortVersionProfilesInput>;
|
|
8446
8497
|
}>>;
|
|
@@ -8476,7 +8527,7 @@ export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: A
|
|
|
8476
8527
|
skip?: boolean;
|
|
8477
8528
|
} | {
|
|
8478
8529
|
skip: boolean;
|
|
8479
|
-
})): Apollo.
|
|
8530
|
+
})): Apollo.InteropQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
8480
8531
|
libraryId: Scalars["String"]["input"];
|
|
8481
8532
|
}>>;
|
|
8482
8533
|
export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
@@ -8537,7 +8588,7 @@ export declare function useExportQuery(baseOptions: Apollo.QueryHookOptions<Expo
|
|
|
8537
8588
|
skip?: boolean;
|
|
8538
8589
|
} | {
|
|
8539
8590
|
skip: boolean;
|
|
8540
|
-
})): Apollo.
|
|
8591
|
+
})): Apollo.InteropQueryResult<ExportQuery, Exact<{
|
|
8541
8592
|
library: Scalars["ID"]["input"];
|
|
8542
8593
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8543
8594
|
profile?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -8638,7 +8689,7 @@ export declare function useGetDirectoryDataQuery(baseOptions: Apollo.QueryHookOp
|
|
|
8638
8689
|
skip?: boolean;
|
|
8639
8690
|
} | {
|
|
8640
8691
|
skip: boolean;
|
|
8641
|
-
})): Apollo.
|
|
8692
|
+
})): Apollo.InteropQueryResult<GetDirectoryDataQuery, Exact<{
|
|
8642
8693
|
library: Scalars["ID"]["input"];
|
|
8643
8694
|
directoryId: Scalars["String"]["input"];
|
|
8644
8695
|
}>>;
|
|
@@ -8669,9 +8720,15 @@ export declare const UploadUpdateDocument: Apollo.DocumentNode;
|
|
|
8669
8720
|
* },
|
|
8670
8721
|
* });
|
|
8671
8722
|
*/
|
|
8672
|
-
export declare function useUploadUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<UploadUpdateSubscription, UploadUpdateSubscriptionVariables>):
|
|
8673
|
-
|
|
8674
|
-
|
|
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
|
+
};
|
|
8675
8732
|
export type UploadUpdateSubscriptionHookResult = ReturnType<typeof useUploadUpdateSubscription>;
|
|
8676
8733
|
export type UploadUpdateSubscriptionResult = Apollo.SubscriptionResult<UploadUpdateSubscription>;
|
|
8677
8734
|
export declare const UploadDocument: Apollo.DocumentNode;
|
|
@@ -8749,7 +8806,7 @@ export declare const CheckLibraryExistenceDocument: Apollo.DocumentNode;
|
|
|
8749
8806
|
* },
|
|
8750
8807
|
* });
|
|
8751
8808
|
*/
|
|
8752
|
-
export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.
|
|
8809
|
+
export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.InteropQueryResult<CheckLibraryExistenceQuery, Exact<{
|
|
8753
8810
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8754
8811
|
}>>;
|
|
8755
8812
|
export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
|
|
@@ -8802,7 +8859,7 @@ export declare const GetLibrariesDocument: Apollo.DocumentNode;
|
|
|
8802
8859
|
* },
|
|
8803
8860
|
* });
|
|
8804
8861
|
*/
|
|
8805
|
-
export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.
|
|
8862
|
+
export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.InteropQueryResult<GetLibrariesQuery, Exact<{
|
|
8806
8863
|
[key: string]: never;
|
|
8807
8864
|
}>>;
|
|
8808
8865
|
export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
|
|
@@ -8831,7 +8888,7 @@ export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
|
|
|
8831
8888
|
* },
|
|
8832
8889
|
* });
|
|
8833
8890
|
*/
|
|
8834
|
-
export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.
|
|
8891
|
+
export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.InteropQueryResult<GetLibraryByIdQuery, Exact<{
|
|
8835
8892
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8836
8893
|
}>>;
|
|
8837
8894
|
export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
|
|
@@ -8860,7 +8917,7 @@ export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
|
|
|
8860
8917
|
* },
|
|
8861
8918
|
* });
|
|
8862
8919
|
*/
|
|
8863
|
-
export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.
|
|
8920
|
+
export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.InteropQueryResult<GetLibraryPermissionsQuery, Exact<{
|
|
8864
8921
|
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8865
8922
|
}>>;
|
|
8866
8923
|
export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
|
|
@@ -8894,7 +8951,7 @@ export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.Q
|
|
|
8894
8951
|
skip?: boolean;
|
|
8895
8952
|
} | {
|
|
8896
8953
|
skip: boolean;
|
|
8897
|
-
})): Apollo.
|
|
8954
|
+
})): Apollo.InteropQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
8898
8955
|
id: Scalars["ID"]["input"];
|
|
8899
8956
|
}>>;
|
|
8900
8957
|
export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
@@ -8956,7 +9013,7 @@ export declare function useIsAllowedQuery(baseOptions: Apollo.QueryHookOptions<I
|
|
|
8956
9013
|
skip?: boolean;
|
|
8957
9014
|
} | {
|
|
8958
9015
|
skip: boolean;
|
|
8959
|
-
})): Apollo.
|
|
9016
|
+
})): Apollo.InteropQueryResult<IsAllowedQuery, Exact<{
|
|
8960
9017
|
type: PermissionTypes;
|
|
8961
9018
|
actions: Array<PermissionsActions> | PermissionsActions;
|
|
8962
9019
|
applyTo?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -9137,7 +9194,7 @@ export declare function useDoesFileExistAsChildQuery(baseOptions: Apollo.QueryHo
|
|
|
9137
9194
|
skip?: boolean;
|
|
9138
9195
|
} | {
|
|
9139
9196
|
skip: boolean;
|
|
9140
|
-
})): Apollo.
|
|
9197
|
+
})): Apollo.InteropQueryResult<DoesFileExistAsChildQuery, Exact<{
|
|
9141
9198
|
parentNode?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9142
9199
|
treeId: Scalars["ID"]["input"];
|
|
9143
9200
|
filename: Scalars["String"]["input"];
|
|
@@ -9177,7 +9234,7 @@ export declare function useGetFileDataQuery(baseOptions: Apollo.QueryHookOptions
|
|
|
9177
9234
|
skip?: boolean;
|
|
9178
9235
|
} | {
|
|
9179
9236
|
skip: boolean;
|
|
9180
|
-
})): Apollo.
|
|
9237
|
+
})): Apollo.InteropQueryResult<GetFileDataQuery, Exact<{
|
|
9181
9238
|
library: Scalars["ID"]["input"];
|
|
9182
9239
|
fileId: Scalars["String"]["input"];
|
|
9183
9240
|
previewsStatusAttribute: Scalars["ID"]["input"];
|
|
@@ -9218,7 +9275,7 @@ export declare function useRecordFormQuery(baseOptions: Apollo.QueryHookOptions<
|
|
|
9218
9275
|
skip?: boolean;
|
|
9219
9276
|
} | {
|
|
9220
9277
|
skip: boolean;
|
|
9221
|
-
})): Apollo.
|
|
9278
|
+
})): Apollo.InteropQueryResult<RecordFormQuery, Exact<{
|
|
9222
9279
|
libraryId: Scalars["String"]["input"];
|
|
9223
9280
|
formId: Scalars["String"]["input"];
|
|
9224
9281
|
recordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -9253,9 +9310,15 @@ export declare const RecordUpdateDocument: Apollo.DocumentNode;
|
|
|
9253
9310
|
* },
|
|
9254
9311
|
* });
|
|
9255
9312
|
*/
|
|
9256
|
-
export declare function useRecordUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<RecordUpdateSubscription, RecordUpdateSubscriptionVariables>):
|
|
9257
|
-
|
|
9258
|
-
|
|
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
|
+
};
|
|
9259
9322
|
export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
|
|
9260
9323
|
export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
|
|
9261
9324
|
export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
|
|
@@ -9282,7 +9345,7 @@ export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryH
|
|
|
9282
9345
|
skip?: boolean;
|
|
9283
9346
|
} | {
|
|
9284
9347
|
skip: boolean;
|
|
9285
|
-
})): Apollo.
|
|
9348
|
+
})): Apollo.InteropQueryResult<GetRecordsFromLibraryQuery, Exact<{
|
|
9286
9349
|
libraryId: Scalars["ID"]["input"];
|
|
9287
9350
|
pagination?: InputMaybe<RecordsPagination>;
|
|
9288
9351
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
@@ -9394,7 +9457,7 @@ export declare const CheckTreeExistenceDocument: Apollo.DocumentNode;
|
|
|
9394
9457
|
* },
|
|
9395
9458
|
* });
|
|
9396
9459
|
*/
|
|
9397
|
-
export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.
|
|
9460
|
+
export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.InteropQueryResult<CheckTreeExistenceQuery, Exact<{
|
|
9398
9461
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9399
9462
|
}>>;
|
|
9400
9463
|
export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
|
|
@@ -9448,7 +9511,7 @@ export declare const GetTreeByIdDocument: Apollo.DocumentNode;
|
|
|
9448
9511
|
* },
|
|
9449
9512
|
* });
|
|
9450
9513
|
*/
|
|
9451
|
-
export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.
|
|
9514
|
+
export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.InteropQueryResult<GetTreeByIdQuery, Exact<{
|
|
9452
9515
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9453
9516
|
}>>;
|
|
9454
9517
|
export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
|
|
@@ -9478,7 +9541,7 @@ export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
|
|
|
9478
9541
|
* },
|
|
9479
9542
|
* });
|
|
9480
9543
|
*/
|
|
9481
|
-
export declare function useGetTreeLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.
|
|
9544
|
+
export declare function useGetTreeLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.InteropQueryResult<GetTreeLibrariesQuery, Exact<{
|
|
9482
9545
|
treeId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9483
9546
|
library?: InputMaybe<Scalars["String"]["input"]>;
|
|
9484
9547
|
}>>;
|
|
@@ -9508,7 +9571,7 @@ export declare const GetTreesDocument: Apollo.DocumentNode;
|
|
|
9508
9571
|
* },
|
|
9509
9572
|
* });
|
|
9510
9573
|
*/
|
|
9511
|
-
export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.
|
|
9574
|
+
export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.InteropQueryResult<GetTreesQuery, Exact<{
|
|
9512
9575
|
[key: string]: never;
|
|
9513
9576
|
}>>;
|
|
9514
9577
|
export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
|
|
@@ -9571,7 +9634,7 @@ export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOp
|
|
|
9571
9634
|
skip?: boolean;
|
|
9572
9635
|
} | {
|
|
9573
9636
|
skip: boolean;
|
|
9574
|
-
})): Apollo.
|
|
9637
|
+
})): Apollo.InteropQueryResult<TreeNodeChildrenQuery, Exact<{
|
|
9575
9638
|
treeId: Scalars["ID"]["input"];
|
|
9576
9639
|
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9577
9640
|
pagination?: InputMaybe<Pagination>;
|
|
@@ -9618,7 +9681,7 @@ export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQuery
|
|
|
9618
9681
|
skip?: boolean;
|
|
9619
9682
|
} | {
|
|
9620
9683
|
skip: boolean;
|
|
9621
|
-
})): Apollo.
|
|
9684
|
+
})): Apollo.InteropQueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, Exact<{
|
|
9622
9685
|
treeId: Scalars["ID"]["input"];
|
|
9623
9686
|
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9624
9687
|
pagination?: InputMaybe<Pagination>;
|
|
@@ -9663,7 +9726,7 @@ export declare function useGetUserDataQuery(baseOptions: Apollo.QueryHookOptions
|
|
|
9663
9726
|
skip?: boolean;
|
|
9664
9727
|
} | {
|
|
9665
9728
|
skip: boolean;
|
|
9666
|
-
})): Apollo.
|
|
9729
|
+
})): Apollo.InteropQueryResult<GetUserDataQuery, Exact<{
|
|
9667
9730
|
keys: Array<Scalars["String"]["input"]> | Scalars["String"]["input"];
|
|
9668
9731
|
global?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
9669
9732
|
}>>;
|
|
@@ -9848,7 +9911,7 @@ export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<Get
|
|
|
9848
9911
|
skip?: boolean;
|
|
9849
9912
|
} | {
|
|
9850
9913
|
skip: boolean;
|
|
9851
|
-
})): Apollo.
|
|
9914
|
+
})): Apollo.InteropQueryResult<GetViewQuery, Exact<{
|
|
9852
9915
|
viewId: Scalars["String"]["input"];
|
|
9853
9916
|
}>>;
|
|
9854
9917
|
export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
|
|
@@ -9882,7 +9945,7 @@ export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOption
|
|
|
9882
9945
|
skip?: boolean;
|
|
9883
9946
|
} | {
|
|
9884
9947
|
skip: boolean;
|
|
9885
|
-
})): Apollo.
|
|
9948
|
+
})): Apollo.InteropQueryResult<GetViewsListQuery, Exact<{
|
|
9886
9949
|
libraryId: Scalars["String"]["input"];
|
|
9887
9950
|
}>>;
|
|
9888
9951
|
export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
|
|
@@ -9941,7 +10004,7 @@ export declare function useAttributeWithValuesForMassEditionQuery(baseOptions: A
|
|
|
9941
10004
|
skip?: boolean;
|
|
9942
10005
|
} | {
|
|
9943
10006
|
skip: boolean;
|
|
9944
|
-
})): Apollo.
|
|
10007
|
+
})): Apollo.InteropQueryResult<AttributeWithValuesForMassEditionQuery, Exact<{
|
|
9945
10008
|
attributeId: Scalars["ID"]["input"];
|
|
9946
10009
|
}>>;
|
|
9947
10010
|
export declare function useAttributeWithValuesForMassEditionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AttributeWithValuesForMassEditionQuery, AttributeWithValuesForMassEditionQueryVariables>): Apollo.LazyQueryResultTuple<AttributeWithValuesForMassEditionQuery, Exact<{
|
|
@@ -9975,7 +10038,7 @@ export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: A
|
|
|
9975
10038
|
skip?: boolean;
|
|
9976
10039
|
} | {
|
|
9977
10040
|
skip: boolean;
|
|
9978
|
-
})): Apollo.
|
|
10041
|
+
})): Apollo.InteropQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
9979
10042
|
library: Scalars["String"]["input"];
|
|
9980
10043
|
}>>;
|
|
9981
10044
|
export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
@@ -10004,7 +10067,7 @@ export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
|
|
|
10004
10067
|
* },
|
|
10005
10068
|
* });
|
|
10006
10069
|
*/
|
|
10007
|
-
export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.
|
|
10070
|
+
export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.InteropQueryResult<ExplorerAttributesQuery, Exact<{
|
|
10008
10071
|
ids?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
10009
10072
|
}>>;
|
|
10010
10073
|
export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
|
|
@@ -10038,7 +10101,7 @@ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryH
|
|
|
10038
10101
|
skip?: boolean;
|
|
10039
10102
|
} | {
|
|
10040
10103
|
skip: boolean;
|
|
10041
|
-
})): Apollo.
|
|
10104
|
+
})): Apollo.InteropQueryResult<ExplorerLinkAttributeQuery, Exact<{
|
|
10042
10105
|
id: Scalars["ID"]["input"];
|
|
10043
10106
|
}>>;
|
|
10044
10107
|
export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
|
|
@@ -10074,7 +10137,7 @@ export declare function useCountValuesOccurrencesQuery(baseOptions: Apollo.Query
|
|
|
10074
10137
|
skip?: boolean;
|
|
10075
10138
|
} | {
|
|
10076
10139
|
skip: boolean;
|
|
10077
|
-
})): Apollo.
|
|
10140
|
+
})): Apollo.InteropQueryResult<CountValuesOccurrencesQuery, Exact<{
|
|
10078
10141
|
library: Scalars["ID"]["input"];
|
|
10079
10142
|
attribute: Scalars["ID"]["input"];
|
|
10080
10143
|
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
@@ -10117,7 +10180,7 @@ export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHoo
|
|
|
10117
10180
|
skip?: boolean;
|
|
10118
10181
|
} | {
|
|
10119
10182
|
skip: boolean;
|
|
10120
|
-
})): Apollo.
|
|
10183
|
+
})): Apollo.InteropQueryResult<ExplorerLibraryDataQuery, Exact<{
|
|
10121
10184
|
libraryId: Scalars["ID"]["input"];
|
|
10122
10185
|
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
10123
10186
|
pagination?: InputMaybe<RecordsPagination>;
|
|
@@ -10164,7 +10227,7 @@ export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOp
|
|
|
10164
10227
|
skip?: boolean;
|
|
10165
10228
|
} | {
|
|
10166
10229
|
skip: boolean;
|
|
10167
|
-
})): Apollo.
|
|
10230
|
+
})): Apollo.InteropQueryResult<ExplorerLinkDataQuery, Exact<{
|
|
10168
10231
|
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
10169
10232
|
parentLibraryId: Scalars["ID"]["input"];
|
|
10170
10233
|
parentRecordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -10204,7 +10267,7 @@ export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHo
|
|
|
10204
10267
|
skip?: boolean;
|
|
10205
10268
|
} | {
|
|
10206
10269
|
skip: boolean;
|
|
10207
|
-
})): Apollo.
|
|
10270
|
+
})): Apollo.InteropQueryResult<GetLibraryAttributesQuery, Exact<{
|
|
10208
10271
|
libraryId: Scalars["ID"]["input"];
|
|
10209
10272
|
}>>;
|
|
10210
10273
|
export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
|
|
@@ -10238,7 +10301,7 @@ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.Query
|
|
|
10238
10301
|
skip?: boolean;
|
|
10239
10302
|
} | {
|
|
10240
10303
|
skip: boolean;
|
|
10241
|
-
})): Apollo.
|
|
10304
|
+
})): Apollo.InteropQueryResult<ExplorerLibraryDetailsQuery, Exact<{
|
|
10242
10305
|
libraryId: Scalars["ID"]["input"];
|
|
10243
10306
|
}>>;
|
|
10244
10307
|
export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
|
|
@@ -10267,7 +10330,7 @@ export declare const LibraryExportProfilesDocument: Apollo.DocumentNode;
|
|
|
10267
10330
|
* },
|
|
10268
10331
|
* });
|
|
10269
10332
|
*/
|
|
10270
|
-
export declare function useLibraryExportProfilesQuery(baseOptions?: Apollo.QueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.
|
|
10333
|
+
export declare function useLibraryExportProfilesQuery(baseOptions?: Apollo.QueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.InteropQueryResult<LibraryExportProfilesQuery, Exact<{
|
|
10271
10334
|
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
10272
10335
|
}>>;
|
|
10273
10336
|
export declare function useLibraryExportProfilesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.LazyQueryResultTuple<LibraryExportProfilesQuery, Exact<{
|
|
@@ -10302,7 +10365,7 @@ export declare function useExplorerSelectionIdsQuery(baseOptions: Apollo.QueryHo
|
|
|
10302
10365
|
skip?: boolean;
|
|
10303
10366
|
} | {
|
|
10304
10367
|
skip: boolean;
|
|
10305
|
-
})): Apollo.
|
|
10368
|
+
})): Apollo.InteropQueryResult<ExplorerSelectionIdsQuery, Exact<{
|
|
10306
10369
|
libraryId: Scalars["ID"]["input"];
|
|
10307
10370
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
10308
10371
|
}>>;
|
|
@@ -10332,7 +10395,7 @@ export declare const MeDocument: Apollo.DocumentNode;
|
|
|
10332
10395
|
* },
|
|
10333
10396
|
* });
|
|
10334
10397
|
*/
|
|
10335
|
-
export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>): Apollo.
|
|
10398
|
+
export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>): Apollo.InteropQueryResult<MeQuery, Exact<{
|
|
10336
10399
|
[key: string]: never;
|
|
10337
10400
|
}>>;
|
|
10338
10401
|
export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
|
|
@@ -10369,6 +10432,46 @@ export declare function useUpdateViewMutation(baseOptions?: Apollo.MutationHookO
|
|
|
10369
10432
|
export type UpdateViewMutationHookResult = ReturnType<typeof useUpdateViewMutation>;
|
|
10370
10433
|
export type UpdateViewMutationResult = Apollo.MutationResult<UpdateViewMutation>;
|
|
10371
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>;
|
|
10372
10475
|
export declare const NotificationDocument: Apollo.DocumentNode;
|
|
10373
10476
|
/**
|
|
10374
10477
|
* __useNotificationSubscription__
|
|
@@ -10385,9 +10488,15 @@ export declare const NotificationDocument: Apollo.DocumentNode;
|
|
|
10385
10488
|
* },
|
|
10386
10489
|
* });
|
|
10387
10490
|
*/
|
|
10388
|
-
export declare function useNotificationSubscription(baseOptions?: Apollo.SubscriptionHookOptions<NotificationSubscription, NotificationSubscriptionVariables>):
|
|
10389
|
-
|
|
10390
|
-
|
|
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
|
+
};
|
|
10391
10500
|
export type NotificationSubscriptionHookResult = ReturnType<typeof useNotificationSubscription>;
|
|
10392
10501
|
export type NotificationSubscriptionResult = Apollo.SubscriptionResult<NotificationSubscription>;
|
|
10393
10502
|
export declare const GetRecordHistoryDocument: Apollo.DocumentNode;
|
|
@@ -10415,7 +10524,7 @@ export declare function useGetRecordHistoryQuery(baseOptions: Apollo.QueryHookOp
|
|
|
10415
10524
|
skip?: boolean;
|
|
10416
10525
|
} | {
|
|
10417
10526
|
skip: boolean;
|
|
10418
|
-
})): Apollo.
|
|
10527
|
+
})): Apollo.InteropQueryResult<GetRecordHistoryQuery, Exact<{
|
|
10419
10528
|
record: LogTopicRecordFilterInput;
|
|
10420
10529
|
attributeId?: InputMaybe<Scalars["String"]["input"]>;
|
|
10421
10530
|
actions?: InputMaybe<Array<LogAction> | LogAction>;
|
|
@@ -10455,7 +10564,7 @@ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptio
|
|
|
10455
10564
|
skip?: boolean;
|
|
10456
10565
|
} | {
|
|
10457
10566
|
skip: boolean;
|
|
10458
|
-
})): Apollo.
|
|
10567
|
+
})): Apollo.InteropQueryResult<TreeDataQueryQuery, Exact<{
|
|
10459
10568
|
treeId: Scalars["ID"]["input"];
|
|
10460
10569
|
}>>;
|
|
10461
10570
|
export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
|