@leav/ui 0.4.0-2b240f6 → 0.4.0-2b6a719a
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/README.md +1 -0
- package/dist/_gqlTypes/index.d.ts +1177 -41
- package/dist/_gqlTypes/index.js +311 -5
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/records/activateRecordsMutation.d.ts +1 -0
- package/dist/_queries/records/activateRecordsMutation.js +15 -0
- package/dist/_queries/records/activateRecordsMutation.js.map +1 -0
- package/dist/_queries/records/getRecordFormQuery.js +9 -0
- package/dist/_queries/records/getRecordFormQuery.js.map +1 -1
- package/dist/_queries/trees/treeNodeChildrenQuery.js +12 -2
- package/dist/_queries/trees/treeNodeChildrenQuery.js.map +1 -1
- package/dist/components/Explorer/DataView.d.ts +2 -1
- package/dist/components/Explorer/DataView.js +13 -10
- package/dist/components/Explorer/DataView.js.map +1 -1
- package/dist/components/Explorer/Explorer.d.ts +7 -5
- package/dist/components/Explorer/Explorer.js +8 -6
- package/dist/components/Explorer/Explorer.js.map +1 -1
- package/dist/components/Explorer/ExplorerToolbar.d.ts +2 -1
- package/dist/components/Explorer/ExplorerToolbar.js +5 -4
- package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
- package/dist/components/Explorer/_queries/useExplorerData.js +7 -3
- package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
- package/dist/components/Explorer/_types.d.ts +7 -2
- package/dist/components/Explorer/_types.js.map +1 -1
- package/dist/components/Explorer/actions-item/{useRemoveItemAction.d.ts → useEditStatusItemAction.d.ts} +2 -2
- package/dist/components/Explorer/actions-item/{useRemoveItemAction.js → useEditStatusItemAction.js} +71 -24
- package/dist/components/Explorer/actions-item/useEditStatusItemAction.js.map +1 -0
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.d.ts +3 -1
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js +14 -6
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +4 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -1
- package/dist/components/Explorer/useViewSettingsReducer.js +6 -2
- package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +2 -2
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
- package/dist/components/LinkSelect/LinkSelect.d.ts +7 -4
- package/dist/components/LinkSelect/LinkSelect.js +60 -16
- package/dist/components/LinkSelect/LinkSelect.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +6 -4
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.d.ts +3 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js +235 -48
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.d.ts +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +17 -15
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.d.ts +2 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/{useDisplayTreeNode.d.ts → TreeNodeList.d.ts} +4 -4
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js +5 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +16 -4
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +12 -13
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +3 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +46 -55
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +2 -2
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
- package/dist/components/RecordEdition/index.d.ts +1 -0
- package/dist/components/RecordEdition/index.js +1 -0
- package/dist/components/RecordEdition/index.js.map +1 -1
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +2 -1
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +2 -2
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +5 -3
- package/dist/components/SelectTreeNode/SelectTreeNode.js +2 -3
- package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +3 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +18 -23
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
- package/dist/components/SelectTreeNode/_types.d.ts +17 -0
- package/dist/components/SelectTreeNode/_types.js +2 -0
- package/dist/components/SelectTreeNode/_types.js.map +1 -0
- package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.d.ts → SelectTreeNodeModalOld/SelectTreeNodeModalOld.d.ts} +1 -1
- package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.js → SelectTreeNodeModalOld/SelectTreeNodeModalOld.js} +4 -2
- package/dist/components/SelectTreeNodeModalOld/SelectTreeNodeModalOld.js.map +1 -0
- package/dist/components/SelectTreeNodeModalOld/index.d.ts +1 -0
- package/dist/components/{SelectTreeNodeModal → SelectTreeNodeModalOld}/index.js +1 -1
- package/dist/components/SelectTreeNodeModalOld/index.js.map +1 -0
- package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
- package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
- package/dist/components/index.d.ts +1 -2
- package/dist/components/index.js +1 -2
- package/dist/components/index.js.map +1 -1
- package/dist/contexts/LangContext/LangContext.d.ts +1 -2
- package/dist/contexts/LangContext/LangContext.js +2 -2
- package/dist/contexts/LangContext/LangContext.js.map +1 -1
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/index.js +2 -0
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/useGetRecordForm/useGetRecordForm.js +1 -1
- package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/messageHandlers.d.ts +4 -2
- package/dist/hooks/useIFrameMessenger/messageHandlers.js +15 -5
- package/dist/hooks/useIFrameMessenger/messageHandlers.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/schema.d.ts +21 -0
- package/dist/hooks/useIFrameMessenger/schema.js +76 -0
- package/dist/hooks/useIFrameMessenger/schema.js.map +1 -0
- package/dist/hooks/useIFrameMessenger/types.d.ts +50 -10
- package/dist/hooks/useIFrameMessenger/types.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +11 -1
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +62 -11
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -1
- package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.d.ts +4 -0
- package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js +15 -0
- package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js.map +1 -0
- package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.d.ts +13 -0
- package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js +6 -0
- package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js.map +1 -0
- package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.d.ts +13 -0
- package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js +13 -0
- package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js.map +1 -0
- package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js +1 -1
- package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js.map +1 -1
- package/dist/locales/en/shared.json +4 -0
- package/dist/locales/fr/shared.json +4 -0
- package/dist/types/attributes.d.ts +2 -1
- package/package.json +22 -6
- package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js +0 -8
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js.map +0 -1
- package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +0 -1
- package/dist/components/SelectTreeNodeModal/index.d.ts +0 -1
- package/dist/components/SelectTreeNodeModal/index.js.map +0 -1
|
@@ -183,6 +183,11 @@ export declare enum AvailableLanguage {
|
|
|
183
183
|
en = "en",
|
|
184
184
|
fr = "fr"
|
|
185
185
|
}
|
|
186
|
+
export type ChildrenAsRecordValuePermissionFilterInput = {
|
|
187
|
+
action: RecordPermissionsActions;
|
|
188
|
+
attributeId: Scalars['ID'];
|
|
189
|
+
libraryId: Scalars['ID'];
|
|
190
|
+
};
|
|
186
191
|
export type CreateRecordDataInput = {
|
|
187
192
|
values?: InputMaybe<Array<ValueBatchInput>>;
|
|
188
193
|
version?: InputMaybe<Array<ValueVersionInput>>;
|
|
@@ -310,12 +315,12 @@ export type LibraryIconInput = {
|
|
|
310
315
|
export type LibraryInput = {
|
|
311
316
|
attributes?: InputMaybe<Array<Scalars['ID']>>;
|
|
312
317
|
behavior?: InputMaybe<LibraryBehavior>;
|
|
313
|
-
mandatoryAttribute?: InputMaybe<Scalars['ID']>;
|
|
314
318
|
defaultView?: InputMaybe<Scalars['ID']>;
|
|
315
319
|
fullTextAttributes?: InputMaybe<Array<Scalars['ID']>>;
|
|
316
320
|
icon?: InputMaybe<LibraryIconInput>;
|
|
317
321
|
id: Scalars['ID'];
|
|
318
322
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
323
|
+
mandatoryAttribute?: InputMaybe<Scalars['ID']>;
|
|
319
324
|
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
320
325
|
previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
|
|
321
326
|
recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
|
|
@@ -346,7 +351,6 @@ export declare enum LogAction {
|
|
|
346
351
|
PERMISSION_SAVE = "PERMISSION_SAVE",
|
|
347
352
|
RECORD_DELETE = "RECORD_DELETE",
|
|
348
353
|
RECORD_SAVE = "RECORD_SAVE",
|
|
349
|
-
SDO_LOG_EXPORT_RECORD = "SDO_LOG_EXPORT_RECORD",
|
|
350
354
|
TASKS_DELETE = "TASKS_DELETE",
|
|
351
355
|
TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
|
|
352
356
|
TREE_DELETE = "TREE_DELETE",
|
|
@@ -554,6 +558,12 @@ export type RecordInput = {
|
|
|
554
558
|
id: Scalars['ID'];
|
|
555
559
|
library: Scalars['String'];
|
|
556
560
|
};
|
|
561
|
+
export declare enum RecordPermissionsActions {
|
|
562
|
+
access_record = "access_record",
|
|
563
|
+
create_record = "create_record",
|
|
564
|
+
delete_record = "delete_record",
|
|
565
|
+
edit_record = "edit_record"
|
|
566
|
+
}
|
|
557
567
|
export type RecordSortInput = {
|
|
558
568
|
field: Scalars['String'];
|
|
559
569
|
order: SortOrder;
|
|
@@ -1773,6 +1783,261 @@ export type RecordFormElementFragment = {
|
|
|
1773
1783
|
key: string;
|
|
1774
1784
|
value: any;
|
|
1775
1785
|
}>;
|
|
1786
|
+
joinLibraryContext?: {
|
|
1787
|
+
mandatoryAttribute: {
|
|
1788
|
+
id: string;
|
|
1789
|
+
label?: any | null;
|
|
1790
|
+
description?: any | null;
|
|
1791
|
+
type: AttributeType;
|
|
1792
|
+
format?: AttributeFormat | null;
|
|
1793
|
+
system: boolean;
|
|
1794
|
+
readonly: boolean;
|
|
1795
|
+
required: boolean;
|
|
1796
|
+
multiple_values: boolean;
|
|
1797
|
+
compute: boolean;
|
|
1798
|
+
linked_library?: {
|
|
1799
|
+
id: string;
|
|
1800
|
+
label?: any | null;
|
|
1801
|
+
behavior: LibraryBehavior;
|
|
1802
|
+
permissions?: {
|
|
1803
|
+
create_record: boolean;
|
|
1804
|
+
} | null;
|
|
1805
|
+
} | null;
|
|
1806
|
+
linkValuesList?: {
|
|
1807
|
+
enable: boolean;
|
|
1808
|
+
allowFreeEntry?: boolean | null;
|
|
1809
|
+
allowListUpdate?: boolean | null;
|
|
1810
|
+
values?: Array<{
|
|
1811
|
+
id: string;
|
|
1812
|
+
whoAmI: {
|
|
1813
|
+
id: string;
|
|
1814
|
+
label?: string | null;
|
|
1815
|
+
subLabel?: string | null;
|
|
1816
|
+
color?: string | null;
|
|
1817
|
+
preview?: IPreviewScalar | null;
|
|
1818
|
+
library: {
|
|
1819
|
+
id: string;
|
|
1820
|
+
label?: any | null;
|
|
1821
|
+
};
|
|
1822
|
+
};
|
|
1823
|
+
}> | null;
|
|
1824
|
+
} | null;
|
|
1825
|
+
permissions: {
|
|
1826
|
+
access_attribute: boolean;
|
|
1827
|
+
edit_value: boolean;
|
|
1828
|
+
};
|
|
1829
|
+
versions_conf?: {
|
|
1830
|
+
versionable: boolean;
|
|
1831
|
+
profile?: {
|
|
1832
|
+
id: string;
|
|
1833
|
+
trees: Array<{
|
|
1834
|
+
id: string;
|
|
1835
|
+
label?: any | null;
|
|
1836
|
+
}>;
|
|
1837
|
+
} | null;
|
|
1838
|
+
} | null;
|
|
1839
|
+
metadata_fields?: Array<{
|
|
1840
|
+
id: string;
|
|
1841
|
+
label?: any | null;
|
|
1842
|
+
description?: any | null;
|
|
1843
|
+
type: AttributeType;
|
|
1844
|
+
format?: AttributeFormat | null;
|
|
1845
|
+
system: boolean;
|
|
1846
|
+
readonly: boolean;
|
|
1847
|
+
multiple_values: boolean;
|
|
1848
|
+
permissions: {
|
|
1849
|
+
access_attribute: boolean;
|
|
1850
|
+
edit_value: boolean;
|
|
1851
|
+
};
|
|
1852
|
+
values_list?: {
|
|
1853
|
+
enable: boolean;
|
|
1854
|
+
allowFreeEntry?: boolean | null;
|
|
1855
|
+
allowListUpdate?: boolean | null;
|
|
1856
|
+
dateRangeValues?: Array<{
|
|
1857
|
+
from?: string | null;
|
|
1858
|
+
to?: string | null;
|
|
1859
|
+
}> | null;
|
|
1860
|
+
} | {
|
|
1861
|
+
enable: boolean;
|
|
1862
|
+
allowFreeEntry?: boolean | null;
|
|
1863
|
+
allowListUpdate?: boolean | null;
|
|
1864
|
+
values?: Array<string> | null;
|
|
1865
|
+
} | null;
|
|
1866
|
+
metadata_fields?: Array<{
|
|
1867
|
+
id: string;
|
|
1868
|
+
}> | null;
|
|
1869
|
+
}> | null;
|
|
1870
|
+
} | {
|
|
1871
|
+
character_limit?: number | null;
|
|
1872
|
+
id: string;
|
|
1873
|
+
label?: any | null;
|
|
1874
|
+
description?: any | null;
|
|
1875
|
+
type: AttributeType;
|
|
1876
|
+
format?: AttributeFormat | null;
|
|
1877
|
+
system: boolean;
|
|
1878
|
+
readonly: boolean;
|
|
1879
|
+
required: boolean;
|
|
1880
|
+
multiple_values: boolean;
|
|
1881
|
+
compute: boolean;
|
|
1882
|
+
values_list?: {
|
|
1883
|
+
enable: boolean;
|
|
1884
|
+
allowFreeEntry?: boolean | null;
|
|
1885
|
+
allowListUpdate?: boolean | null;
|
|
1886
|
+
dateRangeValues?: Array<{
|
|
1887
|
+
from?: string | null;
|
|
1888
|
+
to?: string | null;
|
|
1889
|
+
}> | null;
|
|
1890
|
+
} | {
|
|
1891
|
+
enable: boolean;
|
|
1892
|
+
allowFreeEntry?: boolean | null;
|
|
1893
|
+
allowListUpdate?: boolean | null;
|
|
1894
|
+
values?: Array<string> | null;
|
|
1895
|
+
} | null;
|
|
1896
|
+
permissions: {
|
|
1897
|
+
access_attribute: boolean;
|
|
1898
|
+
edit_value: boolean;
|
|
1899
|
+
};
|
|
1900
|
+
versions_conf?: {
|
|
1901
|
+
versionable: boolean;
|
|
1902
|
+
profile?: {
|
|
1903
|
+
id: string;
|
|
1904
|
+
trees: Array<{
|
|
1905
|
+
id: string;
|
|
1906
|
+
label?: any | null;
|
|
1907
|
+
}>;
|
|
1908
|
+
} | null;
|
|
1909
|
+
} | null;
|
|
1910
|
+
metadata_fields?: Array<{
|
|
1911
|
+
id: string;
|
|
1912
|
+
label?: any | null;
|
|
1913
|
+
description?: any | null;
|
|
1914
|
+
type: AttributeType;
|
|
1915
|
+
format?: AttributeFormat | null;
|
|
1916
|
+
system: boolean;
|
|
1917
|
+
readonly: boolean;
|
|
1918
|
+
multiple_values: boolean;
|
|
1919
|
+
permissions: {
|
|
1920
|
+
access_attribute: boolean;
|
|
1921
|
+
edit_value: boolean;
|
|
1922
|
+
};
|
|
1923
|
+
values_list?: {
|
|
1924
|
+
enable: boolean;
|
|
1925
|
+
allowFreeEntry?: boolean | null;
|
|
1926
|
+
allowListUpdate?: boolean | null;
|
|
1927
|
+
dateRangeValues?: Array<{
|
|
1928
|
+
from?: string | null;
|
|
1929
|
+
to?: string | null;
|
|
1930
|
+
}> | null;
|
|
1931
|
+
} | {
|
|
1932
|
+
enable: boolean;
|
|
1933
|
+
allowFreeEntry?: boolean | null;
|
|
1934
|
+
allowListUpdate?: boolean | null;
|
|
1935
|
+
values?: Array<string> | null;
|
|
1936
|
+
} | null;
|
|
1937
|
+
metadata_fields?: Array<{
|
|
1938
|
+
id: string;
|
|
1939
|
+
}> | null;
|
|
1940
|
+
}> | null;
|
|
1941
|
+
} | {
|
|
1942
|
+
id: string;
|
|
1943
|
+
label?: any | null;
|
|
1944
|
+
description?: any | null;
|
|
1945
|
+
type: AttributeType;
|
|
1946
|
+
format?: AttributeFormat | null;
|
|
1947
|
+
system: boolean;
|
|
1948
|
+
readonly: boolean;
|
|
1949
|
+
required: boolean;
|
|
1950
|
+
multiple_values: boolean;
|
|
1951
|
+
compute: boolean;
|
|
1952
|
+
linked_tree?: {
|
|
1953
|
+
id: string;
|
|
1954
|
+
label?: any | null;
|
|
1955
|
+
} | null;
|
|
1956
|
+
treeValuesList?: {
|
|
1957
|
+
enable: boolean;
|
|
1958
|
+
allowFreeEntry?: boolean | null;
|
|
1959
|
+
allowListUpdate?: boolean | null;
|
|
1960
|
+
values?: Array<{
|
|
1961
|
+
id: string;
|
|
1962
|
+
record: {
|
|
1963
|
+
id: string;
|
|
1964
|
+
whoAmI: {
|
|
1965
|
+
id: string;
|
|
1966
|
+
label?: string | null;
|
|
1967
|
+
subLabel?: string | null;
|
|
1968
|
+
color?: string | null;
|
|
1969
|
+
preview?: IPreviewScalar | null;
|
|
1970
|
+
library: {
|
|
1971
|
+
id: string;
|
|
1972
|
+
label?: any | null;
|
|
1973
|
+
};
|
|
1974
|
+
};
|
|
1975
|
+
};
|
|
1976
|
+
ancestors?: Array<{
|
|
1977
|
+
record: {
|
|
1978
|
+
id: string;
|
|
1979
|
+
whoAmI: {
|
|
1980
|
+
id: string;
|
|
1981
|
+
label?: string | null;
|
|
1982
|
+
subLabel?: string | null;
|
|
1983
|
+
color?: string | null;
|
|
1984
|
+
preview?: IPreviewScalar | null;
|
|
1985
|
+
library: {
|
|
1986
|
+
id: string;
|
|
1987
|
+
label?: any | null;
|
|
1988
|
+
};
|
|
1989
|
+
};
|
|
1990
|
+
};
|
|
1991
|
+
}> | null;
|
|
1992
|
+
}> | null;
|
|
1993
|
+
} | null;
|
|
1994
|
+
permissions: {
|
|
1995
|
+
access_attribute: boolean;
|
|
1996
|
+
edit_value: boolean;
|
|
1997
|
+
};
|
|
1998
|
+
versions_conf?: {
|
|
1999
|
+
versionable: boolean;
|
|
2000
|
+
profile?: {
|
|
2001
|
+
id: string;
|
|
2002
|
+
trees: Array<{
|
|
2003
|
+
id: string;
|
|
2004
|
+
label?: any | null;
|
|
2005
|
+
}>;
|
|
2006
|
+
} | null;
|
|
2007
|
+
} | null;
|
|
2008
|
+
metadata_fields?: Array<{
|
|
2009
|
+
id: string;
|
|
2010
|
+
label?: any | null;
|
|
2011
|
+
description?: any | null;
|
|
2012
|
+
type: AttributeType;
|
|
2013
|
+
format?: AttributeFormat | null;
|
|
2014
|
+
system: boolean;
|
|
2015
|
+
readonly: boolean;
|
|
2016
|
+
multiple_values: boolean;
|
|
2017
|
+
permissions: {
|
|
2018
|
+
access_attribute: boolean;
|
|
2019
|
+
edit_value: boolean;
|
|
2020
|
+
};
|
|
2021
|
+
values_list?: {
|
|
2022
|
+
enable: boolean;
|
|
2023
|
+
allowFreeEntry?: boolean | null;
|
|
2024
|
+
allowListUpdate?: boolean | null;
|
|
2025
|
+
dateRangeValues?: Array<{
|
|
2026
|
+
from?: string | null;
|
|
2027
|
+
to?: string | null;
|
|
2028
|
+
}> | null;
|
|
2029
|
+
} | {
|
|
2030
|
+
enable: boolean;
|
|
2031
|
+
allowFreeEntry?: boolean | null;
|
|
2032
|
+
allowListUpdate?: boolean | null;
|
|
2033
|
+
values?: Array<string> | null;
|
|
2034
|
+
} | null;
|
|
2035
|
+
metadata_fields?: Array<{
|
|
2036
|
+
id: string;
|
|
2037
|
+
}> | null;
|
|
2038
|
+
}> | null;
|
|
2039
|
+
};
|
|
2040
|
+
} | null;
|
|
1776
2041
|
};
|
|
1777
2042
|
export type ValueDetailsLinkValueFragment = {
|
|
1778
2043
|
id_value?: string | null;
|
|
@@ -2447,14 +2712,269 @@ export type StandardValuesListFragmentStandardStringValuesListConfFragment = {
|
|
|
2447
2712
|
values?: Array<string> | null;
|
|
2448
2713
|
};
|
|
2449
2714
|
export type StandardValuesListFragmentFragment = StandardValuesListFragmentStandardDateRangeValuesListConfFragment | StandardValuesListFragmentStandardStringValuesListConfFragment;
|
|
2450
|
-
export type
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2715
|
+
export type JoinLibraryContextFragment = {
|
|
2716
|
+
mandatoryAttribute: {
|
|
2717
|
+
id: string;
|
|
2718
|
+
label?: any | null;
|
|
2719
|
+
description?: any | null;
|
|
2720
|
+
type: AttributeType;
|
|
2721
|
+
format?: AttributeFormat | null;
|
|
2722
|
+
system: boolean;
|
|
2723
|
+
readonly: boolean;
|
|
2724
|
+
required: boolean;
|
|
2725
|
+
multiple_values: boolean;
|
|
2726
|
+
compute: boolean;
|
|
2727
|
+
linked_library?: {
|
|
2728
|
+
id: string;
|
|
2729
|
+
label?: any | null;
|
|
2730
|
+
behavior: LibraryBehavior;
|
|
2731
|
+
permissions?: {
|
|
2732
|
+
create_record: boolean;
|
|
2733
|
+
} | null;
|
|
2734
|
+
} | null;
|
|
2735
|
+
linkValuesList?: {
|
|
2736
|
+
enable: boolean;
|
|
2737
|
+
allowFreeEntry?: boolean | null;
|
|
2738
|
+
allowListUpdate?: boolean | null;
|
|
2739
|
+
values?: Array<{
|
|
2740
|
+
id: string;
|
|
2741
|
+
whoAmI: {
|
|
2742
|
+
id: string;
|
|
2743
|
+
label?: string | null;
|
|
2744
|
+
subLabel?: string | null;
|
|
2745
|
+
color?: string | null;
|
|
2746
|
+
preview?: IPreviewScalar | null;
|
|
2747
|
+
library: {
|
|
2748
|
+
id: string;
|
|
2749
|
+
label?: any | null;
|
|
2750
|
+
};
|
|
2751
|
+
};
|
|
2752
|
+
}> | null;
|
|
2753
|
+
} | null;
|
|
2754
|
+
permissions: {
|
|
2755
|
+
access_attribute: boolean;
|
|
2756
|
+
edit_value: boolean;
|
|
2757
|
+
};
|
|
2758
|
+
versions_conf?: {
|
|
2759
|
+
versionable: boolean;
|
|
2760
|
+
profile?: {
|
|
2761
|
+
id: string;
|
|
2762
|
+
trees: Array<{
|
|
2763
|
+
id: string;
|
|
2764
|
+
label?: any | null;
|
|
2765
|
+
}>;
|
|
2766
|
+
} | null;
|
|
2767
|
+
} | null;
|
|
2768
|
+
metadata_fields?: Array<{
|
|
2769
|
+
id: string;
|
|
2770
|
+
label?: any | null;
|
|
2771
|
+
description?: any | null;
|
|
2772
|
+
type: AttributeType;
|
|
2773
|
+
format?: AttributeFormat | null;
|
|
2774
|
+
system: boolean;
|
|
2775
|
+
readonly: boolean;
|
|
2776
|
+
multiple_values: boolean;
|
|
2777
|
+
permissions: {
|
|
2778
|
+
access_attribute: boolean;
|
|
2779
|
+
edit_value: boolean;
|
|
2780
|
+
};
|
|
2781
|
+
values_list?: {
|
|
2782
|
+
enable: boolean;
|
|
2783
|
+
allowFreeEntry?: boolean | null;
|
|
2784
|
+
allowListUpdate?: boolean | null;
|
|
2785
|
+
dateRangeValues?: Array<{
|
|
2786
|
+
from?: string | null;
|
|
2787
|
+
to?: string | null;
|
|
2788
|
+
}> | null;
|
|
2789
|
+
} | {
|
|
2790
|
+
enable: boolean;
|
|
2791
|
+
allowFreeEntry?: boolean | null;
|
|
2792
|
+
allowListUpdate?: boolean | null;
|
|
2793
|
+
values?: Array<string> | null;
|
|
2794
|
+
} | null;
|
|
2795
|
+
metadata_fields?: Array<{
|
|
2796
|
+
id: string;
|
|
2797
|
+
}> | null;
|
|
2798
|
+
}> | null;
|
|
2799
|
+
} | {
|
|
2800
|
+
character_limit?: number | null;
|
|
2801
|
+
id: string;
|
|
2802
|
+
label?: any | null;
|
|
2803
|
+
description?: any | null;
|
|
2804
|
+
type: AttributeType;
|
|
2805
|
+
format?: AttributeFormat | null;
|
|
2806
|
+
system: boolean;
|
|
2807
|
+
readonly: boolean;
|
|
2808
|
+
required: boolean;
|
|
2809
|
+
multiple_values: boolean;
|
|
2810
|
+
compute: boolean;
|
|
2811
|
+
values_list?: {
|
|
2812
|
+
enable: boolean;
|
|
2813
|
+
allowFreeEntry?: boolean | null;
|
|
2814
|
+
allowListUpdate?: boolean | null;
|
|
2815
|
+
dateRangeValues?: Array<{
|
|
2816
|
+
from?: string | null;
|
|
2817
|
+
to?: string | null;
|
|
2818
|
+
}> | null;
|
|
2819
|
+
} | {
|
|
2820
|
+
enable: boolean;
|
|
2821
|
+
allowFreeEntry?: boolean | null;
|
|
2822
|
+
allowListUpdate?: boolean | null;
|
|
2823
|
+
values?: Array<string> | null;
|
|
2824
|
+
} | null;
|
|
2825
|
+
permissions: {
|
|
2826
|
+
access_attribute: boolean;
|
|
2827
|
+
edit_value: boolean;
|
|
2828
|
+
};
|
|
2829
|
+
versions_conf?: {
|
|
2830
|
+
versionable: boolean;
|
|
2831
|
+
profile?: {
|
|
2832
|
+
id: string;
|
|
2833
|
+
trees: Array<{
|
|
2834
|
+
id: string;
|
|
2835
|
+
label?: any | null;
|
|
2836
|
+
}>;
|
|
2837
|
+
} | null;
|
|
2838
|
+
} | null;
|
|
2839
|
+
metadata_fields?: Array<{
|
|
2840
|
+
id: string;
|
|
2841
|
+
label?: any | null;
|
|
2842
|
+
description?: any | null;
|
|
2843
|
+
type: AttributeType;
|
|
2844
|
+
format?: AttributeFormat | null;
|
|
2845
|
+
system: boolean;
|
|
2846
|
+
readonly: boolean;
|
|
2847
|
+
multiple_values: boolean;
|
|
2848
|
+
permissions: {
|
|
2849
|
+
access_attribute: boolean;
|
|
2850
|
+
edit_value: boolean;
|
|
2851
|
+
};
|
|
2852
|
+
values_list?: {
|
|
2853
|
+
enable: boolean;
|
|
2854
|
+
allowFreeEntry?: boolean | null;
|
|
2855
|
+
allowListUpdate?: boolean | null;
|
|
2856
|
+
dateRangeValues?: Array<{
|
|
2857
|
+
from?: string | null;
|
|
2858
|
+
to?: string | null;
|
|
2859
|
+
}> | null;
|
|
2860
|
+
} | {
|
|
2861
|
+
enable: boolean;
|
|
2862
|
+
allowFreeEntry?: boolean | null;
|
|
2863
|
+
allowListUpdate?: boolean | null;
|
|
2864
|
+
values?: Array<string> | null;
|
|
2865
|
+
} | null;
|
|
2866
|
+
metadata_fields?: Array<{
|
|
2867
|
+
id: string;
|
|
2868
|
+
}> | null;
|
|
2869
|
+
}> | null;
|
|
2870
|
+
} | {
|
|
2871
|
+
id: string;
|
|
2872
|
+
label?: any | null;
|
|
2873
|
+
description?: any | null;
|
|
2874
|
+
type: AttributeType;
|
|
2875
|
+
format?: AttributeFormat | null;
|
|
2876
|
+
system: boolean;
|
|
2877
|
+
readonly: boolean;
|
|
2878
|
+
required: boolean;
|
|
2879
|
+
multiple_values: boolean;
|
|
2880
|
+
compute: boolean;
|
|
2881
|
+
linked_tree?: {
|
|
2882
|
+
id: string;
|
|
2883
|
+
label?: any | null;
|
|
2884
|
+
} | null;
|
|
2885
|
+
treeValuesList?: {
|
|
2886
|
+
enable: boolean;
|
|
2887
|
+
allowFreeEntry?: boolean | null;
|
|
2888
|
+
allowListUpdate?: boolean | null;
|
|
2889
|
+
values?: Array<{
|
|
2890
|
+
id: string;
|
|
2891
|
+
record: {
|
|
2892
|
+
id: string;
|
|
2893
|
+
whoAmI: {
|
|
2894
|
+
id: string;
|
|
2895
|
+
label?: string | null;
|
|
2896
|
+
subLabel?: string | null;
|
|
2897
|
+
color?: string | null;
|
|
2898
|
+
preview?: IPreviewScalar | null;
|
|
2899
|
+
library: {
|
|
2900
|
+
id: string;
|
|
2901
|
+
label?: any | null;
|
|
2902
|
+
};
|
|
2903
|
+
};
|
|
2904
|
+
};
|
|
2905
|
+
ancestors?: Array<{
|
|
2906
|
+
record: {
|
|
2907
|
+
id: string;
|
|
2908
|
+
whoAmI: {
|
|
2909
|
+
id: string;
|
|
2910
|
+
label?: string | null;
|
|
2911
|
+
subLabel?: string | null;
|
|
2912
|
+
color?: string | null;
|
|
2913
|
+
preview?: IPreviewScalar | null;
|
|
2914
|
+
library: {
|
|
2915
|
+
id: string;
|
|
2916
|
+
label?: any | null;
|
|
2917
|
+
};
|
|
2918
|
+
};
|
|
2919
|
+
};
|
|
2920
|
+
}> | null;
|
|
2921
|
+
}> | null;
|
|
2922
|
+
} | null;
|
|
2923
|
+
permissions: {
|
|
2924
|
+
access_attribute: boolean;
|
|
2925
|
+
edit_value: boolean;
|
|
2926
|
+
};
|
|
2927
|
+
versions_conf?: {
|
|
2928
|
+
versionable: boolean;
|
|
2929
|
+
profile?: {
|
|
2930
|
+
id: string;
|
|
2931
|
+
trees: Array<{
|
|
2932
|
+
id: string;
|
|
2933
|
+
label?: any | null;
|
|
2934
|
+
}>;
|
|
2935
|
+
} | null;
|
|
2936
|
+
} | null;
|
|
2937
|
+
metadata_fields?: Array<{
|
|
2938
|
+
id: string;
|
|
2939
|
+
label?: any | null;
|
|
2940
|
+
description?: any | null;
|
|
2941
|
+
type: AttributeType;
|
|
2942
|
+
format?: AttributeFormat | null;
|
|
2943
|
+
system: boolean;
|
|
2944
|
+
readonly: boolean;
|
|
2945
|
+
multiple_values: boolean;
|
|
2946
|
+
permissions: {
|
|
2947
|
+
access_attribute: boolean;
|
|
2948
|
+
edit_value: boolean;
|
|
2949
|
+
};
|
|
2950
|
+
values_list?: {
|
|
2951
|
+
enable: boolean;
|
|
2952
|
+
allowFreeEntry?: boolean | null;
|
|
2953
|
+
allowListUpdate?: boolean | null;
|
|
2954
|
+
dateRangeValues?: Array<{
|
|
2955
|
+
from?: string | null;
|
|
2956
|
+
to?: string | null;
|
|
2957
|
+
}> | null;
|
|
2958
|
+
} | {
|
|
2959
|
+
enable: boolean;
|
|
2960
|
+
allowFreeEntry?: boolean | null;
|
|
2961
|
+
allowListUpdate?: boolean | null;
|
|
2962
|
+
values?: Array<string> | null;
|
|
2963
|
+
} | null;
|
|
2964
|
+
metadata_fields?: Array<{
|
|
2965
|
+
id: string;
|
|
2966
|
+
}> | null;
|
|
2967
|
+
}> | null;
|
|
2968
|
+
};
|
|
2969
|
+
};
|
|
2970
|
+
export type TreeDetailsFragment = {
|
|
2971
|
+
id: string;
|
|
2972
|
+
label?: any | null;
|
|
2973
|
+
behavior: TreeBehavior;
|
|
2974
|
+
system: boolean;
|
|
2975
|
+
libraries: Array<{
|
|
2976
|
+
library: {
|
|
2977
|
+
id: string;
|
|
2458
2978
|
label?: any | null;
|
|
2459
2979
|
};
|
|
2460
2980
|
settings: {
|
|
@@ -3669,6 +4189,27 @@ export type IsAllowedQuery = {
|
|
|
3669
4189
|
allowed?: boolean | null;
|
|
3670
4190
|
}> | null;
|
|
3671
4191
|
};
|
|
4192
|
+
export type ActivateRecordsMutationVariables = Exact<{
|
|
4193
|
+
libraryId: Scalars['String'];
|
|
4194
|
+
recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
4195
|
+
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
4196
|
+
}>;
|
|
4197
|
+
export type ActivateRecordsMutation = {
|
|
4198
|
+
activateRecords: Array<{
|
|
4199
|
+
id: string;
|
|
4200
|
+
whoAmI: {
|
|
4201
|
+
id: string;
|
|
4202
|
+
label?: string | null;
|
|
4203
|
+
subLabel?: string | null;
|
|
4204
|
+
color?: string | null;
|
|
4205
|
+
preview?: IPreviewScalar | null;
|
|
4206
|
+
library: {
|
|
4207
|
+
id: string;
|
|
4208
|
+
label?: any | null;
|
|
4209
|
+
};
|
|
4210
|
+
};
|
|
4211
|
+
}>;
|
|
4212
|
+
};
|
|
3672
4213
|
export type CreateRecordMutationVariables = Exact<{
|
|
3673
4214
|
library: Scalars['ID'];
|
|
3674
4215
|
data?: InputMaybe<CreateRecordDataInput>;
|
|
@@ -4423,47 +4964,302 @@ export type RecordFormQuery = {
|
|
|
4423
4964
|
label?: any | null;
|
|
4424
4965
|
}>;
|
|
4425
4966
|
} | null;
|
|
4426
|
-
} | null;
|
|
4427
|
-
metadata_fields?: Array<{
|
|
4428
|
-
id: string;
|
|
4429
|
-
label?: any | null;
|
|
4430
|
-
description?: any | null;
|
|
4431
|
-
type: AttributeType;
|
|
4432
|
-
format?: AttributeFormat | null;
|
|
4433
|
-
system: boolean;
|
|
4434
|
-
readonly: boolean;
|
|
4435
|
-
multiple_values: boolean;
|
|
4967
|
+
} | null;
|
|
4968
|
+
metadata_fields?: Array<{
|
|
4969
|
+
id: string;
|
|
4970
|
+
label?: any | null;
|
|
4971
|
+
description?: any | null;
|
|
4972
|
+
type: AttributeType;
|
|
4973
|
+
format?: AttributeFormat | null;
|
|
4974
|
+
system: boolean;
|
|
4975
|
+
readonly: boolean;
|
|
4976
|
+
multiple_values: boolean;
|
|
4977
|
+
permissions: {
|
|
4978
|
+
access_attribute: boolean;
|
|
4979
|
+
edit_value: boolean;
|
|
4980
|
+
};
|
|
4981
|
+
values_list?: {
|
|
4982
|
+
enable: boolean;
|
|
4983
|
+
allowFreeEntry?: boolean | null;
|
|
4984
|
+
allowListUpdate?: boolean | null;
|
|
4985
|
+
dateRangeValues?: Array<{
|
|
4986
|
+
from?: string | null;
|
|
4987
|
+
to?: string | null;
|
|
4988
|
+
}> | null;
|
|
4989
|
+
} | {
|
|
4990
|
+
enable: boolean;
|
|
4991
|
+
allowFreeEntry?: boolean | null;
|
|
4992
|
+
allowListUpdate?: boolean | null;
|
|
4993
|
+
values?: Array<string> | null;
|
|
4994
|
+
} | null;
|
|
4995
|
+
metadata_fields?: Array<{
|
|
4996
|
+
id: string;
|
|
4997
|
+
}> | null;
|
|
4998
|
+
}> | null;
|
|
4999
|
+
} | null;
|
|
5000
|
+
settings: Array<{
|
|
5001
|
+
key: string;
|
|
5002
|
+
value: any;
|
|
5003
|
+
}>;
|
|
5004
|
+
joinLibraryContext?: {
|
|
5005
|
+
mandatoryAttribute: {
|
|
5006
|
+
id: string;
|
|
5007
|
+
label?: any | null;
|
|
5008
|
+
description?: any | null;
|
|
5009
|
+
type: AttributeType;
|
|
5010
|
+
format?: AttributeFormat | null;
|
|
5011
|
+
system: boolean;
|
|
5012
|
+
readonly: boolean;
|
|
5013
|
+
required: boolean;
|
|
5014
|
+
multiple_values: boolean;
|
|
5015
|
+
compute: boolean;
|
|
5016
|
+
linked_library?: {
|
|
5017
|
+
id: string;
|
|
5018
|
+
label?: any | null;
|
|
5019
|
+
behavior: LibraryBehavior;
|
|
5020
|
+
permissions?: {
|
|
5021
|
+
create_record: boolean;
|
|
5022
|
+
} | null;
|
|
5023
|
+
} | null;
|
|
5024
|
+
linkValuesList?: {
|
|
5025
|
+
enable: boolean;
|
|
5026
|
+
allowFreeEntry?: boolean | null;
|
|
5027
|
+
allowListUpdate?: boolean | null;
|
|
5028
|
+
values?: Array<{
|
|
5029
|
+
id: string;
|
|
5030
|
+
whoAmI: {
|
|
5031
|
+
id: string;
|
|
5032
|
+
label?: string | null;
|
|
5033
|
+
subLabel?: string | null;
|
|
5034
|
+
color?: string | null;
|
|
5035
|
+
preview?: IPreviewScalar | null;
|
|
5036
|
+
library: {
|
|
5037
|
+
id: string;
|
|
5038
|
+
label?: any | null;
|
|
5039
|
+
};
|
|
5040
|
+
};
|
|
5041
|
+
}> | null;
|
|
5042
|
+
} | null;
|
|
5043
|
+
permissions: {
|
|
5044
|
+
access_attribute: boolean;
|
|
5045
|
+
edit_value: boolean;
|
|
5046
|
+
};
|
|
5047
|
+
versions_conf?: {
|
|
5048
|
+
versionable: boolean;
|
|
5049
|
+
profile?: {
|
|
5050
|
+
id: string;
|
|
5051
|
+
trees: Array<{
|
|
5052
|
+
id: string;
|
|
5053
|
+
label?: any | null;
|
|
5054
|
+
}>;
|
|
5055
|
+
} | null;
|
|
5056
|
+
} | null;
|
|
5057
|
+
metadata_fields?: Array<{
|
|
5058
|
+
id: string;
|
|
5059
|
+
label?: any | null;
|
|
5060
|
+
description?: any | null;
|
|
5061
|
+
type: AttributeType;
|
|
5062
|
+
format?: AttributeFormat | null;
|
|
5063
|
+
system: boolean;
|
|
5064
|
+
readonly: boolean;
|
|
5065
|
+
multiple_values: boolean;
|
|
5066
|
+
permissions: {
|
|
5067
|
+
access_attribute: boolean;
|
|
5068
|
+
edit_value: boolean;
|
|
5069
|
+
};
|
|
5070
|
+
values_list?: {
|
|
5071
|
+
enable: boolean;
|
|
5072
|
+
allowFreeEntry?: boolean | null;
|
|
5073
|
+
allowListUpdate?: boolean | null;
|
|
5074
|
+
dateRangeValues?: Array<{
|
|
5075
|
+
from?: string | null;
|
|
5076
|
+
to?: string | null;
|
|
5077
|
+
}> | null;
|
|
5078
|
+
} | {
|
|
5079
|
+
enable: boolean;
|
|
5080
|
+
allowFreeEntry?: boolean | null;
|
|
5081
|
+
allowListUpdate?: boolean | null;
|
|
5082
|
+
values?: Array<string> | null;
|
|
5083
|
+
} | null;
|
|
5084
|
+
metadata_fields?: Array<{
|
|
5085
|
+
id: string;
|
|
5086
|
+
}> | null;
|
|
5087
|
+
}> | null;
|
|
5088
|
+
} | {
|
|
5089
|
+
character_limit?: number | null;
|
|
5090
|
+
id: string;
|
|
5091
|
+
label?: any | null;
|
|
5092
|
+
description?: any | null;
|
|
5093
|
+
type: AttributeType;
|
|
5094
|
+
format?: AttributeFormat | null;
|
|
5095
|
+
system: boolean;
|
|
5096
|
+
readonly: boolean;
|
|
5097
|
+
required: boolean;
|
|
5098
|
+
multiple_values: boolean;
|
|
5099
|
+
compute: boolean;
|
|
5100
|
+
values_list?: {
|
|
5101
|
+
enable: boolean;
|
|
5102
|
+
allowFreeEntry?: boolean | null;
|
|
5103
|
+
allowListUpdate?: boolean | null;
|
|
5104
|
+
dateRangeValues?: Array<{
|
|
5105
|
+
from?: string | null;
|
|
5106
|
+
to?: string | null;
|
|
5107
|
+
}> | null;
|
|
5108
|
+
} | {
|
|
5109
|
+
enable: boolean;
|
|
5110
|
+
allowFreeEntry?: boolean | null;
|
|
5111
|
+
allowListUpdate?: boolean | null;
|
|
5112
|
+
values?: Array<string> | null;
|
|
5113
|
+
} | null;
|
|
5114
|
+
permissions: {
|
|
5115
|
+
access_attribute: boolean;
|
|
5116
|
+
edit_value: boolean;
|
|
5117
|
+
};
|
|
5118
|
+
versions_conf?: {
|
|
5119
|
+
versionable: boolean;
|
|
5120
|
+
profile?: {
|
|
5121
|
+
id: string;
|
|
5122
|
+
trees: Array<{
|
|
5123
|
+
id: string;
|
|
5124
|
+
label?: any | null;
|
|
5125
|
+
}>;
|
|
5126
|
+
} | null;
|
|
5127
|
+
} | null;
|
|
5128
|
+
metadata_fields?: Array<{
|
|
5129
|
+
id: string;
|
|
5130
|
+
label?: any | null;
|
|
5131
|
+
description?: any | null;
|
|
5132
|
+
type: AttributeType;
|
|
5133
|
+
format?: AttributeFormat | null;
|
|
5134
|
+
system: boolean;
|
|
5135
|
+
readonly: boolean;
|
|
5136
|
+
multiple_values: boolean;
|
|
5137
|
+
permissions: {
|
|
5138
|
+
access_attribute: boolean;
|
|
5139
|
+
edit_value: boolean;
|
|
5140
|
+
};
|
|
5141
|
+
values_list?: {
|
|
5142
|
+
enable: boolean;
|
|
5143
|
+
allowFreeEntry?: boolean | null;
|
|
5144
|
+
allowListUpdate?: boolean | null;
|
|
5145
|
+
dateRangeValues?: Array<{
|
|
5146
|
+
from?: string | null;
|
|
5147
|
+
to?: string | null;
|
|
5148
|
+
}> | null;
|
|
5149
|
+
} | {
|
|
5150
|
+
enable: boolean;
|
|
5151
|
+
allowFreeEntry?: boolean | null;
|
|
5152
|
+
allowListUpdate?: boolean | null;
|
|
5153
|
+
values?: Array<string> | null;
|
|
5154
|
+
} | null;
|
|
5155
|
+
metadata_fields?: Array<{
|
|
5156
|
+
id: string;
|
|
5157
|
+
}> | null;
|
|
5158
|
+
}> | null;
|
|
5159
|
+
} | {
|
|
5160
|
+
id: string;
|
|
5161
|
+
label?: any | null;
|
|
5162
|
+
description?: any | null;
|
|
5163
|
+
type: AttributeType;
|
|
5164
|
+
format?: AttributeFormat | null;
|
|
5165
|
+
system: boolean;
|
|
5166
|
+
readonly: boolean;
|
|
5167
|
+
required: boolean;
|
|
5168
|
+
multiple_values: boolean;
|
|
5169
|
+
compute: boolean;
|
|
5170
|
+
linked_tree?: {
|
|
5171
|
+
id: string;
|
|
5172
|
+
label?: any | null;
|
|
5173
|
+
} | null;
|
|
5174
|
+
treeValuesList?: {
|
|
5175
|
+
enable: boolean;
|
|
5176
|
+
allowFreeEntry?: boolean | null;
|
|
5177
|
+
allowListUpdate?: boolean | null;
|
|
5178
|
+
values?: Array<{
|
|
5179
|
+
id: string;
|
|
5180
|
+
record: {
|
|
5181
|
+
id: string;
|
|
5182
|
+
whoAmI: {
|
|
5183
|
+
id: string;
|
|
5184
|
+
label?: string | null;
|
|
5185
|
+
subLabel?: string | null;
|
|
5186
|
+
color?: string | null;
|
|
5187
|
+
preview?: IPreviewScalar | null;
|
|
5188
|
+
library: {
|
|
5189
|
+
id: string;
|
|
5190
|
+
label?: any | null;
|
|
5191
|
+
};
|
|
5192
|
+
};
|
|
5193
|
+
};
|
|
5194
|
+
ancestors?: Array<{
|
|
5195
|
+
record: {
|
|
5196
|
+
id: string;
|
|
5197
|
+
whoAmI: {
|
|
5198
|
+
id: string;
|
|
5199
|
+
label?: string | null;
|
|
5200
|
+
subLabel?: string | null;
|
|
5201
|
+
color?: string | null;
|
|
5202
|
+
preview?: IPreviewScalar | null;
|
|
5203
|
+
library: {
|
|
5204
|
+
id: string;
|
|
5205
|
+
label?: any | null;
|
|
5206
|
+
};
|
|
5207
|
+
};
|
|
5208
|
+
};
|
|
5209
|
+
}> | null;
|
|
5210
|
+
}> | null;
|
|
5211
|
+
} | null;
|
|
4436
5212
|
permissions: {
|
|
4437
5213
|
access_attribute: boolean;
|
|
4438
5214
|
edit_value: boolean;
|
|
4439
5215
|
};
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
enable: boolean;
|
|
4450
|
-
allowFreeEntry?: boolean | null;
|
|
4451
|
-
allowListUpdate?: boolean | null;
|
|
4452
|
-
values?: Array<string> | null;
|
|
5216
|
+
versions_conf?: {
|
|
5217
|
+
versionable: boolean;
|
|
5218
|
+
profile?: {
|
|
5219
|
+
id: string;
|
|
5220
|
+
trees: Array<{
|
|
5221
|
+
id: string;
|
|
5222
|
+
label?: any | null;
|
|
5223
|
+
}>;
|
|
5224
|
+
} | null;
|
|
4453
5225
|
} | null;
|
|
4454
5226
|
metadata_fields?: Array<{
|
|
4455
5227
|
id: string;
|
|
5228
|
+
label?: any | null;
|
|
5229
|
+
description?: any | null;
|
|
5230
|
+
type: AttributeType;
|
|
5231
|
+
format?: AttributeFormat | null;
|
|
5232
|
+
system: boolean;
|
|
5233
|
+
readonly: boolean;
|
|
5234
|
+
multiple_values: boolean;
|
|
5235
|
+
permissions: {
|
|
5236
|
+
access_attribute: boolean;
|
|
5237
|
+
edit_value: boolean;
|
|
5238
|
+
};
|
|
5239
|
+
values_list?: {
|
|
5240
|
+
enable: boolean;
|
|
5241
|
+
allowFreeEntry?: boolean | null;
|
|
5242
|
+
allowListUpdate?: boolean | null;
|
|
5243
|
+
dateRangeValues?: Array<{
|
|
5244
|
+
from?: string | null;
|
|
5245
|
+
to?: string | null;
|
|
5246
|
+
}> | null;
|
|
5247
|
+
} | {
|
|
5248
|
+
enable: boolean;
|
|
5249
|
+
allowFreeEntry?: boolean | null;
|
|
5250
|
+
allowListUpdate?: boolean | null;
|
|
5251
|
+
values?: Array<string> | null;
|
|
5252
|
+
} | null;
|
|
5253
|
+
metadata_fields?: Array<{
|
|
5254
|
+
id: string;
|
|
5255
|
+
}> | null;
|
|
4456
5256
|
}> | null;
|
|
4457
|
-
}
|
|
5257
|
+
};
|
|
4458
5258
|
} | null;
|
|
4459
|
-
settings: Array<{
|
|
4460
|
-
key: string;
|
|
4461
|
-
value: any;
|
|
4462
|
-
}>;
|
|
4463
5259
|
}>;
|
|
4464
5260
|
sidePanel?: {
|
|
4465
5261
|
enable: boolean;
|
|
4466
|
-
isOpenByDefault
|
|
5262
|
+
isOpenByDefault?: boolean | null;
|
|
4467
5263
|
} | null;
|
|
4468
5264
|
} | null;
|
|
4469
5265
|
};
|
|
@@ -4889,6 +5685,30 @@ export type RecordUpdateSubscription = {
|
|
|
4889
5685
|
}>;
|
|
4890
5686
|
};
|
|
4891
5687
|
};
|
|
5688
|
+
export type GetRecordsFromLibraryQueryVariables = Exact<{
|
|
5689
|
+
libraryId: Scalars['ID'];
|
|
5690
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
5691
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
5692
|
+
}>;
|
|
5693
|
+
export type GetRecordsFromLibraryQuery = {
|
|
5694
|
+
records: {
|
|
5695
|
+
totalCount?: number | null;
|
|
5696
|
+
list: Array<{
|
|
5697
|
+
id: string;
|
|
5698
|
+
whoAmI: {
|
|
5699
|
+
id: string;
|
|
5700
|
+
label?: string | null;
|
|
5701
|
+
subLabel?: string | null;
|
|
5702
|
+
color?: string | null;
|
|
5703
|
+
preview?: IPreviewScalar | null;
|
|
5704
|
+
library: {
|
|
5705
|
+
id: string;
|
|
5706
|
+
label?: any | null;
|
|
5707
|
+
};
|
|
5708
|
+
};
|
|
5709
|
+
}>;
|
|
5710
|
+
};
|
|
5711
|
+
};
|
|
4892
5712
|
export type IndexRecordsMutationVariables = Exact<{
|
|
4893
5713
|
libraryId: Scalars['String'];
|
|
4894
5714
|
records?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
@@ -5006,6 +5826,7 @@ export type TreeNodeChildrenQueryVariables = Exact<{
|
|
|
5006
5826
|
treeId: Scalars['ID'];
|
|
5007
5827
|
node?: InputMaybe<Scalars['ID']>;
|
|
5008
5828
|
pagination?: InputMaybe<Pagination>;
|
|
5829
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
5009
5830
|
}>;
|
|
5010
5831
|
export type TreeNodeChildrenQuery = {
|
|
5011
5832
|
treeNodeChildren: {
|
|
@@ -6289,7 +7110,6 @@ export type ExplorerLinkAttributeQuery = {
|
|
|
6289
7110
|
label?: any | null;
|
|
6290
7111
|
id: string;
|
|
6291
7112
|
multiple_values: boolean;
|
|
6292
|
-
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
6293
7113
|
linked_library?: {
|
|
6294
7114
|
id: string;
|
|
6295
7115
|
label?: any | null;
|
|
@@ -6301,7 +7121,6 @@ export type ExplorerLinkAttributeQuery = {
|
|
|
6301
7121
|
} | {
|
|
6302
7122
|
id: string;
|
|
6303
7123
|
multiple_values: boolean;
|
|
6304
|
-
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
6305
7124
|
permissions: {
|
|
6306
7125
|
access_attribute: boolean;
|
|
6307
7126
|
edit_value: boolean;
|
|
@@ -6322,6 +7141,7 @@ export type ExplorerLibraryDataQuery = {
|
|
|
6322
7141
|
totalCount?: number | null;
|
|
6323
7142
|
list: Array<{
|
|
6324
7143
|
id: string;
|
|
7144
|
+
active: boolean;
|
|
6325
7145
|
whoAmI: {
|
|
6326
7146
|
id: string;
|
|
6327
7147
|
label?: string | null;
|
|
@@ -6334,6 +7154,7 @@ export type ExplorerLibraryDataQuery = {
|
|
|
6334
7154
|
};
|
|
6335
7155
|
};
|
|
6336
7156
|
permissions: {
|
|
7157
|
+
create_record: boolean;
|
|
6337
7158
|
delete_record: boolean;
|
|
6338
7159
|
};
|
|
6339
7160
|
properties: Array<{
|
|
@@ -6614,6 +7435,23 @@ export type UpdateViewMutation = {
|
|
|
6614
7435
|
}> | null;
|
|
6615
7436
|
};
|
|
6616
7437
|
};
|
|
7438
|
+
export type GetJoinLibraryMandatoryAttributeValuesQueryVariables = Exact<{
|
|
7439
|
+
joinLibraryId: Scalars['ID'];
|
|
7440
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7441
|
+
mandatoryAttributeId: Scalars['ID'];
|
|
7442
|
+
}>;
|
|
7443
|
+
export type GetJoinLibraryMandatoryAttributeValuesQuery = {
|
|
7444
|
+
records: {
|
|
7445
|
+
list: Array<{
|
|
7446
|
+
id: string;
|
|
7447
|
+
property: Array<{
|
|
7448
|
+
payload?: {
|
|
7449
|
+
id: string;
|
|
7450
|
+
} | null;
|
|
7451
|
+
}>;
|
|
7452
|
+
}>;
|
|
7453
|
+
};
|
|
7454
|
+
};
|
|
6617
7455
|
export type TreeDataQueryQueryVariables = Exact<{
|
|
6618
7456
|
treeId: Scalars['ID'];
|
|
6619
7457
|
}>;
|
|
@@ -6639,6 +7477,7 @@ export declare const ValuesVersionDetailsFragmentDoc: Apollo.DocumentNode;
|
|
|
6639
7477
|
export declare const ValueDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6640
7478
|
export declare const StandardValuesListFragmentFragmentDoc: Apollo.DocumentNode;
|
|
6641
7479
|
export declare const RecordFormAttributeFragmentDoc: Apollo.DocumentNode;
|
|
7480
|
+
export declare const JoinLibraryContextFragmentDoc: Apollo.DocumentNode;
|
|
6642
7481
|
export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
|
|
6643
7482
|
export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
|
|
6644
7483
|
export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
@@ -6679,8 +7518,13 @@ export declare function useCheckApplicationExistenceLazyQuery(baseOptions?: Apol
|
|
|
6679
7518
|
id?: InputMaybe<Scalars["ID"]>;
|
|
6680
7519
|
endpoint?: InputMaybe<Scalars["String"]>;
|
|
6681
7520
|
}>>;
|
|
7521
|
+
export declare function useCheckApplicationExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckApplicationExistenceQuery, Exact<{
|
|
7522
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
7523
|
+
endpoint?: InputMaybe<Scalars["String"]>;
|
|
7524
|
+
}>>;
|
|
6682
7525
|
export type CheckApplicationExistenceQueryHookResult = ReturnType<typeof useCheckApplicationExistenceQuery>;
|
|
6683
7526
|
export type CheckApplicationExistenceLazyQueryHookResult = ReturnType<typeof useCheckApplicationExistenceLazyQuery>;
|
|
7527
|
+
export type CheckApplicationExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckApplicationExistenceSuspenseQuery>;
|
|
6684
7528
|
export type CheckApplicationExistenceQueryResult = Apollo.QueryResult<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>;
|
|
6685
7529
|
export declare const GetApplicationByIdDocument: Apollo.DocumentNode;
|
|
6686
7530
|
/**
|
|
@@ -6705,8 +7549,12 @@ export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHook
|
|
|
6705
7549
|
export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
|
|
6706
7550
|
id: Scalars["ID"];
|
|
6707
7551
|
}>>;
|
|
7552
|
+
export declare function useGetApplicationByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationByIdQuery, Exact<{
|
|
7553
|
+
id: Scalars["ID"];
|
|
7554
|
+
}>>;
|
|
6708
7555
|
export type GetApplicationByIdQueryHookResult = ReturnType<typeof useGetApplicationByIdQuery>;
|
|
6709
7556
|
export type GetApplicationByIdLazyQueryHookResult = ReturnType<typeof useGetApplicationByIdLazyQuery>;
|
|
7557
|
+
export type GetApplicationByIdSuspenseQueryHookResult = ReturnType<typeof useGetApplicationByIdSuspenseQuery>;
|
|
6710
7558
|
export type GetApplicationByIdQueryResult = Apollo.QueryResult<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>;
|
|
6711
7559
|
export declare const GetApplicationModulesDocument: Apollo.DocumentNode;
|
|
6712
7560
|
/**
|
|
@@ -6730,8 +7578,12 @@ export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.Query
|
|
|
6730
7578
|
export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
|
|
6731
7579
|
[key: string]: never;
|
|
6732
7580
|
}>>;
|
|
7581
|
+
export declare function useGetApplicationModulesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationModulesQuery, Exact<{
|
|
7582
|
+
[key: string]: never;
|
|
7583
|
+
}>>;
|
|
6733
7584
|
export type GetApplicationModulesQueryHookResult = ReturnType<typeof useGetApplicationModulesQuery>;
|
|
6734
7585
|
export type GetApplicationModulesLazyQueryHookResult = ReturnType<typeof useGetApplicationModulesLazyQuery>;
|
|
7586
|
+
export type GetApplicationModulesSuspenseQueryHookResult = ReturnType<typeof useGetApplicationModulesSuspenseQuery>;
|
|
6735
7587
|
export type GetApplicationModulesQueryResult = Apollo.QueryResult<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>;
|
|
6736
7588
|
export declare const SaveApplicationDocument: Apollo.DocumentNode;
|
|
6737
7589
|
export type SaveApplicationMutationFn = Apollo.MutationFunction<SaveApplicationMutation, SaveApplicationMutationVariables>;
|
|
@@ -6781,8 +7633,12 @@ export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.Quer
|
|
|
6781
7633
|
export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
|
|
6782
7634
|
id: Scalars["ID"];
|
|
6783
7635
|
}>>;
|
|
7636
|
+
export declare function useCheckAttributeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckAttributeExistenceQuery, Exact<{
|
|
7637
|
+
id: Scalars["ID"];
|
|
7638
|
+
}>>;
|
|
6784
7639
|
export type CheckAttributeExistenceQueryHookResult = ReturnType<typeof useCheckAttributeExistenceQuery>;
|
|
6785
7640
|
export type CheckAttributeExistenceLazyQueryHookResult = ReturnType<typeof useCheckAttributeExistenceLazyQuery>;
|
|
7641
|
+
export type CheckAttributeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckAttributeExistenceSuspenseQuery>;
|
|
6786
7642
|
export type CheckAttributeExistenceQueryResult = Apollo.QueryResult<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>;
|
|
6787
7643
|
export declare const DeleteAttributeDocument: Apollo.DocumentNode;
|
|
6788
7644
|
export type DeleteAttributeMutationFn = Apollo.MutationFunction<DeleteAttributeMutation, DeleteAttributeMutationVariables>;
|
|
@@ -6832,8 +7688,12 @@ export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookO
|
|
|
6832
7688
|
export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
|
|
6833
7689
|
id?: InputMaybe<Scalars["ID"]>;
|
|
6834
7690
|
}>>;
|
|
7691
|
+
export declare function useGetAttributeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributeByIdQuery, Exact<{
|
|
7692
|
+
id?: InputMaybe<Scalars["ID"]>;
|
|
7693
|
+
}>>;
|
|
6835
7694
|
export type GetAttributeByIdQueryHookResult = ReturnType<typeof useGetAttributeByIdQuery>;
|
|
6836
7695
|
export type GetAttributeByIdLazyQueryHookResult = ReturnType<typeof useGetAttributeByIdLazyQuery>;
|
|
7696
|
+
export type GetAttributeByIdSuspenseQueryHookResult = ReturnType<typeof useGetAttributeByIdSuspenseQuery>;
|
|
6837
7697
|
export type GetAttributeByIdQueryResult = Apollo.QueryResult<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>;
|
|
6838
7698
|
export declare const GetAttributesByLibDocument: Apollo.DocumentNode;
|
|
6839
7699
|
/**
|
|
@@ -6858,8 +7718,12 @@ export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHook
|
|
|
6858
7718
|
export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
|
|
6859
7719
|
library: Scalars["String"];
|
|
6860
7720
|
}>>;
|
|
7721
|
+
export declare function useGetAttributesByLibSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibQuery, Exact<{
|
|
7722
|
+
library: Scalars["String"];
|
|
7723
|
+
}>>;
|
|
6861
7724
|
export type GetAttributesByLibQueryHookResult = ReturnType<typeof useGetAttributesByLibQuery>;
|
|
6862
7725
|
export type GetAttributesByLibLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibLazyQuery>;
|
|
7726
|
+
export type GetAttributesByLibSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibSuspenseQuery>;
|
|
6863
7727
|
export type GetAttributesByLibQueryResult = Apollo.QueryResult<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>;
|
|
6864
7728
|
export declare const GetAttributesDocument: Apollo.DocumentNode;
|
|
6865
7729
|
/**
|
|
@@ -6890,8 +7754,14 @@ export declare function useGetAttributesLazyQuery(baseOptions?: Apollo.LazyQuery
|
|
|
6890
7754
|
sort?: InputMaybe<SortAttributes>;
|
|
6891
7755
|
filters?: InputMaybe<AttributesFiltersInput>;
|
|
6892
7756
|
}>>;
|
|
7757
|
+
export declare function useGetAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesQuery, Exact<{
|
|
7758
|
+
pagination?: InputMaybe<Pagination>;
|
|
7759
|
+
sort?: InputMaybe<SortAttributes>;
|
|
7760
|
+
filters?: InputMaybe<AttributesFiltersInput>;
|
|
7761
|
+
}>>;
|
|
6893
7762
|
export type GetAttributesQueryHookResult = ReturnType<typeof useGetAttributesQuery>;
|
|
6894
7763
|
export type GetAttributesLazyQueryHookResult = ReturnType<typeof useGetAttributesLazyQuery>;
|
|
7764
|
+
export type GetAttributesSuspenseQueryHookResult = ReturnType<typeof useGetAttributesSuspenseQuery>;
|
|
6895
7765
|
export type GetAttributesQueryResult = Apollo.QueryResult<GetAttributesQuery, GetAttributesQueryVariables>;
|
|
6896
7766
|
export declare const GetVersionProfilesDocument: Apollo.DocumentNode;
|
|
6897
7767
|
/**
|
|
@@ -6919,8 +7789,13 @@ export declare function useGetVersionProfilesLazyQuery(baseOptions?: Apollo.Lazy
|
|
|
6919
7789
|
filters?: InputMaybe<VersionProfilesFiltersInput>;
|
|
6920
7790
|
sort?: InputMaybe<SortVersionProfilesInput>;
|
|
6921
7791
|
}>>;
|
|
7792
|
+
export declare function useGetVersionProfilesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionProfilesQuery, Exact<{
|
|
7793
|
+
filters?: InputMaybe<VersionProfilesFiltersInput>;
|
|
7794
|
+
sort?: InputMaybe<SortVersionProfilesInput>;
|
|
7795
|
+
}>>;
|
|
6922
7796
|
export type GetVersionProfilesQueryHookResult = ReturnType<typeof useGetVersionProfilesQuery>;
|
|
6923
7797
|
export type GetVersionProfilesLazyQueryHookResult = ReturnType<typeof useGetVersionProfilesLazyQuery>;
|
|
7798
|
+
export type GetVersionProfilesSuspenseQueryHookResult = ReturnType<typeof useGetVersionProfilesSuspenseQuery>;
|
|
6924
7799
|
export type GetVersionProfilesQueryResult = Apollo.QueryResult<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>;
|
|
6925
7800
|
export declare const GetVersionableAttributesByLibraryDocument: Apollo.DocumentNode;
|
|
6926
7801
|
/**
|
|
@@ -6945,8 +7820,12 @@ export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: A
|
|
|
6945
7820
|
export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
6946
7821
|
libraryId: Scalars["String"];
|
|
6947
7822
|
}>>;
|
|
7823
|
+
export declare function useGetVersionableAttributesByLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
7824
|
+
libraryId: Scalars["String"];
|
|
7825
|
+
}>>;
|
|
6948
7826
|
export type GetVersionableAttributesByLibraryQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryQuery>;
|
|
6949
7827
|
export type GetVersionableAttributesByLibraryLazyQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryLazyQuery>;
|
|
7828
|
+
export type GetVersionableAttributesByLibrarySuspenseQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibrarySuspenseQuery>;
|
|
6950
7829
|
export type GetVersionableAttributesByLibraryQueryResult = Apollo.QueryResult<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>;
|
|
6951
7830
|
export declare const SaveAttributeDocument: Apollo.DocumentNode;
|
|
6952
7831
|
export type SaveAttributeMutationFn = Apollo.MutationFunction<SaveAttributeMutation, SaveAttributeMutationVariables>;
|
|
@@ -7002,8 +7881,14 @@ export declare function useExportLazyQuery(baseOptions?: Apollo.LazyQueryHookOpt
|
|
|
7002
7881
|
attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7003
7882
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
7004
7883
|
}>>;
|
|
7884
|
+
export declare function useExportSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.UseSuspenseQueryResult<ExportQuery, Exact<{
|
|
7885
|
+
library: Scalars["ID"];
|
|
7886
|
+
attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7887
|
+
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
7888
|
+
}>>;
|
|
7005
7889
|
export type ExportQueryHookResult = ReturnType<typeof useExportQuery>;
|
|
7006
7890
|
export type ExportLazyQueryHookResult = ReturnType<typeof useExportLazyQuery>;
|
|
7891
|
+
export type ExportSuspenseQueryHookResult = ReturnType<typeof useExportSuspenseQuery>;
|
|
7007
7892
|
export type ExportQueryResult = Apollo.QueryResult<ExportQuery, ExportQueryVariables>;
|
|
7008
7893
|
export declare const CreateDirectoryDocument: Apollo.DocumentNode;
|
|
7009
7894
|
export type CreateDirectoryMutationFn = Apollo.MutationFunction<CreateDirectoryMutation, CreateDirectoryMutationVariables>;
|
|
@@ -7093,8 +7978,13 @@ export declare function useGetDirectoryDataLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
7093
7978
|
library: Scalars["ID"];
|
|
7094
7979
|
directoryId: Scalars["String"];
|
|
7095
7980
|
}>>;
|
|
7981
|
+
export declare function useGetDirectoryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetDirectoryDataQuery, Exact<{
|
|
7982
|
+
library: Scalars["ID"];
|
|
7983
|
+
directoryId: Scalars["String"];
|
|
7984
|
+
}>>;
|
|
7096
7985
|
export type GetDirectoryDataQueryHookResult = ReturnType<typeof useGetDirectoryDataQuery>;
|
|
7097
7986
|
export type GetDirectoryDataLazyQueryHookResult = ReturnType<typeof useGetDirectoryDataLazyQuery>;
|
|
7987
|
+
export type GetDirectoryDataSuspenseQueryHookResult = ReturnType<typeof useGetDirectoryDataSuspenseQuery>;
|
|
7098
7988
|
export type GetDirectoryDataQueryResult = Apollo.QueryResult<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>;
|
|
7099
7989
|
export declare const UploadUpdateDocument: Apollo.DocumentNode;
|
|
7100
7990
|
/**
|
|
@@ -7199,8 +8089,12 @@ export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.Query
|
|
|
7199
8089
|
export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
|
|
7200
8090
|
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7201
8091
|
}>>;
|
|
8092
|
+
export declare function useCheckLibraryExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckLibraryExistenceQuery, Exact<{
|
|
8093
|
+
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8094
|
+
}>>;
|
|
7202
8095
|
export type CheckLibraryExistenceQueryHookResult = ReturnType<typeof useCheckLibraryExistenceQuery>;
|
|
7203
8096
|
export type CheckLibraryExistenceLazyQueryHookResult = ReturnType<typeof useCheckLibraryExistenceLazyQuery>;
|
|
8097
|
+
export type CheckLibraryExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckLibraryExistenceSuspenseQuery>;
|
|
7204
8098
|
export type CheckLibraryExistenceQueryResult = Apollo.QueryResult<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>;
|
|
7205
8099
|
export declare const DeleteLibraryDocument: Apollo.DocumentNode;
|
|
7206
8100
|
export type DeleteLibraryMutationFn = Apollo.MutationFunction<DeleteLibraryMutation, DeleteLibraryMutationVariables>;
|
|
@@ -7249,8 +8143,12 @@ export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptio
|
|
|
7249
8143
|
export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
|
|
7250
8144
|
[key: string]: never;
|
|
7251
8145
|
}>>;
|
|
8146
|
+
export declare function useGetLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibrariesQuery, Exact<{
|
|
8147
|
+
[key: string]: never;
|
|
8148
|
+
}>>;
|
|
7252
8149
|
export type GetLibrariesQueryHookResult = ReturnType<typeof useGetLibrariesQuery>;
|
|
7253
8150
|
export type GetLibrariesLazyQueryHookResult = ReturnType<typeof useGetLibrariesLazyQuery>;
|
|
8151
|
+
export type GetLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetLibrariesSuspenseQuery>;
|
|
7254
8152
|
export type GetLibrariesQueryResult = Apollo.QueryResult<GetLibrariesQuery, GetLibrariesQueryVariables>;
|
|
7255
8153
|
export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
|
|
7256
8154
|
/**
|
|
@@ -7275,8 +8173,12 @@ export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOpt
|
|
|
7275
8173
|
export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
|
|
7276
8174
|
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7277
8175
|
}>>;
|
|
8176
|
+
export declare function useGetLibraryByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryByIdQuery, Exact<{
|
|
8177
|
+
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8178
|
+
}>>;
|
|
7278
8179
|
export type GetLibraryByIdQueryHookResult = ReturnType<typeof useGetLibraryByIdQuery>;
|
|
7279
8180
|
export type GetLibraryByIdLazyQueryHookResult = ReturnType<typeof useGetLibraryByIdLazyQuery>;
|
|
8181
|
+
export type GetLibraryByIdSuspenseQueryHookResult = ReturnType<typeof useGetLibraryByIdSuspenseQuery>;
|
|
7280
8182
|
export type GetLibraryByIdQueryResult = Apollo.QueryResult<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>;
|
|
7281
8183
|
export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
|
|
7282
8184
|
/**
|
|
@@ -7301,8 +8203,12 @@ export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.Query
|
|
|
7301
8203
|
export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
|
|
7302
8204
|
libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7303
8205
|
}>>;
|
|
8206
|
+
export declare function useGetLibraryPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPermissionsQuery, Exact<{
|
|
8207
|
+
libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8208
|
+
}>>;
|
|
7304
8209
|
export type GetLibraryPermissionsQueryHookResult = ReturnType<typeof useGetLibraryPermissionsQuery>;
|
|
7305
8210
|
export type GetLibraryPermissionsLazyQueryHookResult = ReturnType<typeof useGetLibraryPermissionsLazyQuery>;
|
|
8211
|
+
export type GetLibraryPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPermissionsSuspenseQuery>;
|
|
7306
8212
|
export type GetLibraryPermissionsQueryResult = Apollo.QueryResult<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>;
|
|
7307
8213
|
export declare const GetLibraryPreviewsSettingsDocument: Apollo.DocumentNode;
|
|
7308
8214
|
/**
|
|
@@ -7327,8 +8233,12 @@ export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.Q
|
|
|
7327
8233
|
export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
7328
8234
|
id: Scalars["ID"];
|
|
7329
8235
|
}>>;
|
|
8236
|
+
export declare function useGetLibraryPreviewsSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
8237
|
+
id: Scalars["ID"];
|
|
8238
|
+
}>>;
|
|
7330
8239
|
export type GetLibraryPreviewsSettingsQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsQuery>;
|
|
7331
8240
|
export type GetLibraryPreviewsSettingsLazyQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsLazyQuery>;
|
|
8241
|
+
export type GetLibraryPreviewsSettingsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsSuspenseQuery>;
|
|
7332
8242
|
export type GetLibraryPreviewsSettingsQueryResult = Apollo.QueryResult<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>;
|
|
7333
8243
|
export declare const SaveLibraryDocument: Apollo.DocumentNode;
|
|
7334
8244
|
export type SaveLibraryMutationFn = Apollo.MutationFunction<SaveLibraryMutation, SaveLibraryMutationVariables>;
|
|
@@ -7387,9 +8297,45 @@ export declare function useIsAllowedLazyQuery(baseOptions?: Apollo.LazyQueryHook
|
|
|
7387
8297
|
applyTo?: InputMaybe<Scalars["ID"]>;
|
|
7388
8298
|
target?: InputMaybe<PermissionTarget>;
|
|
7389
8299
|
}>>;
|
|
8300
|
+
export declare function useIsAllowedSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.UseSuspenseQueryResult<IsAllowedQuery, Exact<{
|
|
8301
|
+
type: PermissionTypes;
|
|
8302
|
+
actions: Array<PermissionsActions> | PermissionsActions;
|
|
8303
|
+
applyTo?: InputMaybe<Scalars["ID"]>;
|
|
8304
|
+
target?: InputMaybe<PermissionTarget>;
|
|
8305
|
+
}>>;
|
|
7390
8306
|
export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
|
|
7391
8307
|
export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
|
|
8308
|
+
export type IsAllowedSuspenseQueryHookResult = ReturnType<typeof useIsAllowedSuspenseQuery>;
|
|
7392
8309
|
export type IsAllowedQueryResult = Apollo.QueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
|
|
8310
|
+
export declare const ActivateRecordsDocument: Apollo.DocumentNode;
|
|
8311
|
+
export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
|
|
8312
|
+
/**
|
|
8313
|
+
* __useActivateRecordsMutation__
|
|
8314
|
+
*
|
|
8315
|
+
* To run a mutation, you first call `useActivateRecordsMutation` within a React component and pass it any options that fit your needs.
|
|
8316
|
+
* When your component renders, `useActivateRecordsMutation` returns a tuple that includes:
|
|
8317
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
8318
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
8319
|
+
*
|
|
8320
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
8321
|
+
*
|
|
8322
|
+
* @example
|
|
8323
|
+
* const [activateRecordsMutation, { data, loading, error }] = useActivateRecordsMutation({
|
|
8324
|
+
* variables: {
|
|
8325
|
+
* libraryId: // value for 'libraryId'
|
|
8326
|
+
* recordsIds: // value for 'recordsIds'
|
|
8327
|
+
* filters: // value for 'filters'
|
|
8328
|
+
* },
|
|
8329
|
+
* });
|
|
8330
|
+
*/
|
|
8331
|
+
export declare function useActivateRecordsMutation(baseOptions?: Apollo.MutationHookOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>): Apollo.MutationTuple<ActivateRecordsMutation, Exact<{
|
|
8332
|
+
libraryId: Scalars["String"];
|
|
8333
|
+
recordsIds?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
|
|
8334
|
+
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8335
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8336
|
+
export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
|
|
8337
|
+
export type ActivateRecordsMutationResult = Apollo.MutationResult<ActivateRecordsMutation>;
|
|
8338
|
+
export type ActivateRecordsMutationOptions = Apollo.BaseMutationOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
|
|
7393
8339
|
export declare const CreateRecordDocument: Apollo.DocumentNode;
|
|
7394
8340
|
export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutation, CreateRecordMutationVariables>;
|
|
7395
8341
|
/**
|
|
@@ -7475,8 +8421,14 @@ export declare function useDoesFileExistAsChildLazyQuery(baseOptions?: Apollo.La
|
|
|
7475
8421
|
treeId: Scalars["ID"];
|
|
7476
8422
|
filename: Scalars["String"];
|
|
7477
8423
|
}>>;
|
|
8424
|
+
export declare function useDoesFileExistAsChildSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.UseSuspenseQueryResult<DoesFileExistAsChildQuery, Exact<{
|
|
8425
|
+
parentNode?: InputMaybe<Scalars["ID"]>;
|
|
8426
|
+
treeId: Scalars["ID"];
|
|
8427
|
+
filename: Scalars["String"];
|
|
8428
|
+
}>>;
|
|
7478
8429
|
export type DoesFileExistAsChildQueryHookResult = ReturnType<typeof useDoesFileExistAsChildQuery>;
|
|
7479
8430
|
export type DoesFileExistAsChildLazyQueryHookResult = ReturnType<typeof useDoesFileExistAsChildLazyQuery>;
|
|
8431
|
+
export type DoesFileExistAsChildSuspenseQueryHookResult = ReturnType<typeof useDoesFileExistAsChildSuspenseQuery>;
|
|
7480
8432
|
export type DoesFileExistAsChildQueryResult = Apollo.QueryResult<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>;
|
|
7481
8433
|
export declare const GetFileDataDocument: Apollo.DocumentNode;
|
|
7482
8434
|
/**
|
|
@@ -7507,8 +8459,14 @@ export declare function useGetFileDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
|
|
|
7507
8459
|
fileId: Scalars["String"];
|
|
7508
8460
|
previewsStatusAttribute: Scalars["ID"];
|
|
7509
8461
|
}>>;
|
|
8462
|
+
export declare function useGetFileDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetFileDataQuery, Exact<{
|
|
8463
|
+
library: Scalars["ID"];
|
|
8464
|
+
fileId: Scalars["String"];
|
|
8465
|
+
previewsStatusAttribute: Scalars["ID"];
|
|
8466
|
+
}>>;
|
|
7510
8467
|
export type GetFileDataQueryHookResult = ReturnType<typeof useGetFileDataQuery>;
|
|
7511
8468
|
export type GetFileDataLazyQueryHookResult = ReturnType<typeof useGetFileDataLazyQuery>;
|
|
8469
|
+
export type GetFileDataSuspenseQueryHookResult = ReturnType<typeof useGetFileDataSuspenseQuery>;
|
|
7512
8470
|
export type GetFileDataQueryResult = Apollo.QueryResult<GetFileDataQuery, GetFileDataQueryVariables>;
|
|
7513
8471
|
export declare const RecordFormDocument: Apollo.DocumentNode;
|
|
7514
8472
|
/**
|
|
@@ -7542,8 +8500,15 @@ export declare function useRecordFormLazyQuery(baseOptions?: Apollo.LazyQueryHoo
|
|
|
7542
8500
|
recordId?: InputMaybe<Scalars["String"]>;
|
|
7543
8501
|
version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
|
|
7544
8502
|
}>>;
|
|
8503
|
+
export declare function useRecordFormSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.UseSuspenseQueryResult<RecordFormQuery, Exact<{
|
|
8504
|
+
libraryId: Scalars["String"];
|
|
8505
|
+
formId: Scalars["String"];
|
|
8506
|
+
recordId?: InputMaybe<Scalars["String"]>;
|
|
8507
|
+
version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
|
|
8508
|
+
}>>;
|
|
7545
8509
|
export type RecordFormQueryHookResult = ReturnType<typeof useRecordFormQuery>;
|
|
7546
8510
|
export type RecordFormLazyQueryHookResult = ReturnType<typeof useRecordFormLazyQuery>;
|
|
8511
|
+
export type RecordFormSuspenseQueryHookResult = ReturnType<typeof useRecordFormSuspenseQuery>;
|
|
7547
8512
|
export type RecordFormQueryResult = Apollo.QueryResult<RecordFormQuery, RecordFormQueryVariables>;
|
|
7548
8513
|
export declare const RecordUpdateDocument: Apollo.DocumentNode;
|
|
7549
8514
|
/**
|
|
@@ -7567,6 +8532,44 @@ export declare function useRecordUpdateSubscription(baseOptions?: Apollo.Subscri
|
|
|
7567
8532
|
}>>;
|
|
7568
8533
|
export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
|
|
7569
8534
|
export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
|
|
8535
|
+
export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
|
|
8536
|
+
/**
|
|
8537
|
+
* __useGetRecordsFromLibraryQuery__
|
|
8538
|
+
*
|
|
8539
|
+
* To run a query within a React component, call `useGetRecordsFromLibraryQuery` and pass it any options that fit your needs.
|
|
8540
|
+
* When your component renders, `useGetRecordsFromLibraryQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
8541
|
+
* you can use to render your UI.
|
|
8542
|
+
*
|
|
8543
|
+
* @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;
|
|
8544
|
+
*
|
|
8545
|
+
* @example
|
|
8546
|
+
* const { data, loading, error } = useGetRecordsFromLibraryQuery({
|
|
8547
|
+
* variables: {
|
|
8548
|
+
* libraryId: // value for 'libraryId'
|
|
8549
|
+
* pagination: // value for 'pagination'
|
|
8550
|
+
* filters: // value for 'filters'
|
|
8551
|
+
* },
|
|
8552
|
+
* });
|
|
8553
|
+
*/
|
|
8554
|
+
export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.QueryResult<GetRecordsFromLibraryQuery, Exact<{
|
|
8555
|
+
libraryId: Scalars["ID"];
|
|
8556
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
8557
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8558
|
+
}>>;
|
|
8559
|
+
export declare function useGetRecordsFromLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordsFromLibraryQuery, Exact<{
|
|
8560
|
+
libraryId: Scalars["ID"];
|
|
8561
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
8562
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8563
|
+
}>>;
|
|
8564
|
+
export declare function useGetRecordsFromLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordsFromLibraryQuery, Exact<{
|
|
8565
|
+
libraryId: Scalars["ID"];
|
|
8566
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
8567
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8568
|
+
}>>;
|
|
8569
|
+
export type GetRecordsFromLibraryQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryQuery>;
|
|
8570
|
+
export type GetRecordsFromLibraryLazyQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryLazyQuery>;
|
|
8571
|
+
export type GetRecordsFromLibrarySuspenseQueryHookResult = ReturnType<typeof useGetRecordsFromLibrarySuspenseQuery>;
|
|
8572
|
+
export type GetRecordsFromLibraryQueryResult = Apollo.QueryResult<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>;
|
|
7570
8573
|
export declare const IndexRecordsDocument: Apollo.DocumentNode;
|
|
7571
8574
|
export type IndexRecordsMutationFn = Apollo.MutationFunction<IndexRecordsMutation, IndexRecordsMutationVariables>;
|
|
7572
8575
|
/**
|
|
@@ -7642,8 +8645,12 @@ export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHoo
|
|
|
7642
8645
|
export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
|
|
7643
8646
|
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7644
8647
|
}>>;
|
|
8648
|
+
export declare function useCheckTreeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckTreeExistenceQuery, Exact<{
|
|
8649
|
+
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8650
|
+
}>>;
|
|
7645
8651
|
export type CheckTreeExistenceQueryHookResult = ReturnType<typeof useCheckTreeExistenceQuery>;
|
|
7646
8652
|
export type CheckTreeExistenceLazyQueryHookResult = ReturnType<typeof useCheckTreeExistenceLazyQuery>;
|
|
8653
|
+
export type CheckTreeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckTreeExistenceSuspenseQuery>;
|
|
7647
8654
|
export type CheckTreeExistenceQueryResult = Apollo.QueryResult<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>;
|
|
7648
8655
|
export declare const DeleteTreeDocument: Apollo.DocumentNode;
|
|
7649
8656
|
export type DeleteTreeMutationFn = Apollo.MutationFunction<DeleteTreeMutation, DeleteTreeMutationVariables>;
|
|
@@ -7693,8 +8700,12 @@ export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOption
|
|
|
7693
8700
|
export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
|
|
7694
8701
|
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7695
8702
|
}>>;
|
|
8703
|
+
export declare function useGetTreeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeByIdQuery, Exact<{
|
|
8704
|
+
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8705
|
+
}>>;
|
|
7696
8706
|
export type GetTreeByIdQueryHookResult = ReturnType<typeof useGetTreeByIdQuery>;
|
|
7697
8707
|
export type GetTreeByIdLazyQueryHookResult = ReturnType<typeof useGetTreeByIdLazyQuery>;
|
|
8708
|
+
export type GetTreeByIdSuspenseQueryHookResult = ReturnType<typeof useGetTreeByIdSuspenseQuery>;
|
|
7698
8709
|
export type GetTreeByIdQueryResult = Apollo.QueryResult<GetTreeByIdQuery, GetTreeByIdQueryVariables>;
|
|
7699
8710
|
export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
|
|
7700
8711
|
/**
|
|
@@ -7722,8 +8733,13 @@ export declare function useGetTreeLibrariesLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
7722
8733
|
treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7723
8734
|
library?: InputMaybe<Scalars["String"]>;
|
|
7724
8735
|
}>>;
|
|
8736
|
+
export declare function useGetTreeLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeLibrariesQuery, Exact<{
|
|
8737
|
+
treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8738
|
+
library?: InputMaybe<Scalars["String"]>;
|
|
8739
|
+
}>>;
|
|
7725
8740
|
export type GetTreeLibrariesQueryHookResult = ReturnType<typeof useGetTreeLibrariesQuery>;
|
|
7726
8741
|
export type GetTreeLibrariesLazyQueryHookResult = ReturnType<typeof useGetTreeLibrariesLazyQuery>;
|
|
8742
|
+
export type GetTreeLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetTreeLibrariesSuspenseQuery>;
|
|
7727
8743
|
export type GetTreeLibrariesQueryResult = Apollo.QueryResult<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>;
|
|
7728
8744
|
export declare const GetTreesDocument: Apollo.DocumentNode;
|
|
7729
8745
|
/**
|
|
@@ -7747,8 +8763,12 @@ export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<G
|
|
|
7747
8763
|
export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
|
|
7748
8764
|
[key: string]: never;
|
|
7749
8765
|
}>>;
|
|
8766
|
+
export declare function useGetTreesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreesQuery, Exact<{
|
|
8767
|
+
[key: string]: never;
|
|
8768
|
+
}>>;
|
|
7750
8769
|
export type GetTreesQueryHookResult = ReturnType<typeof useGetTreesQuery>;
|
|
7751
8770
|
export type GetTreesLazyQueryHookResult = ReturnType<typeof useGetTreesLazyQuery>;
|
|
8771
|
+
export type GetTreesSuspenseQueryHookResult = ReturnType<typeof useGetTreesSuspenseQuery>;
|
|
7752
8772
|
export type GetTreesQueryResult = Apollo.QueryResult<GetTreesQuery, GetTreesQueryVariables>;
|
|
7753
8773
|
export declare const SaveTreeDocument: Apollo.DocumentNode;
|
|
7754
8774
|
export type SaveTreeMutationFn = Apollo.MutationFunction<SaveTreeMutation, SaveTreeMutationVariables>;
|
|
@@ -7791,6 +8811,7 @@ export declare const TreeNodeChildrenDocument: Apollo.DocumentNode;
|
|
|
7791
8811
|
* treeId: // value for 'treeId'
|
|
7792
8812
|
* node: // value for 'node'
|
|
7793
8813
|
* pagination: // value for 'pagination'
|
|
8814
|
+
* childrenAsRecordValuePermissionFilter: // value for 'childrenAsRecordValuePermissionFilter'
|
|
7794
8815
|
* },
|
|
7795
8816
|
* });
|
|
7796
8817
|
*/
|
|
@@ -7798,14 +8819,23 @@ export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOp
|
|
|
7798
8819
|
treeId: Scalars["ID"];
|
|
7799
8820
|
node?: InputMaybe<Scalars["ID"]>;
|
|
7800
8821
|
pagination?: InputMaybe<Pagination>;
|
|
8822
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
7801
8823
|
}>>;
|
|
7802
8824
|
export declare function useTreeNodeChildrenLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.LazyQueryResultTuple<TreeNodeChildrenQuery, Exact<{
|
|
7803
8825
|
treeId: Scalars["ID"];
|
|
7804
8826
|
node?: InputMaybe<Scalars["ID"]>;
|
|
7805
8827
|
pagination?: InputMaybe<Pagination>;
|
|
8828
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
8829
|
+
}>>;
|
|
8830
|
+
export declare function useTreeNodeChildrenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.UseSuspenseQueryResult<TreeNodeChildrenQuery, Exact<{
|
|
8831
|
+
treeId: Scalars["ID"];
|
|
8832
|
+
node?: InputMaybe<Scalars["ID"]>;
|
|
8833
|
+
pagination?: InputMaybe<Pagination>;
|
|
8834
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
7806
8835
|
}>>;
|
|
7807
8836
|
export type TreeNodeChildrenQueryHookResult = ReturnType<typeof useTreeNodeChildrenQuery>;
|
|
7808
8837
|
export type TreeNodeChildrenLazyQueryHookResult = ReturnType<typeof useTreeNodeChildrenLazyQuery>;
|
|
8838
|
+
export type TreeNodeChildrenSuspenseQueryHookResult = ReturnType<typeof useTreeNodeChildrenSuspenseQuery>;
|
|
7809
8839
|
export type TreeNodeChildrenQueryResult = Apollo.QueryResult<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>;
|
|
7810
8840
|
export declare const GetUserDataDocument: Apollo.DocumentNode;
|
|
7811
8841
|
/**
|
|
@@ -7833,8 +8863,13 @@ export declare function useGetUserDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
|
|
|
7833
8863
|
keys: Array<Scalars["String"]> | Scalars["String"];
|
|
7834
8864
|
global?: InputMaybe<Scalars["Boolean"]>;
|
|
7835
8865
|
}>>;
|
|
8866
|
+
export declare function useGetUserDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetUserDataQuery, Exact<{
|
|
8867
|
+
keys: Array<Scalars["String"]> | Scalars["String"];
|
|
8868
|
+
global?: InputMaybe<Scalars["Boolean"]>;
|
|
8869
|
+
}>>;
|
|
7836
8870
|
export type GetUserDataQueryHookResult = ReturnType<typeof useGetUserDataQuery>;
|
|
7837
8871
|
export type GetUserDataLazyQueryHookResult = ReturnType<typeof useGetUserDataLazyQuery>;
|
|
8872
|
+
export type GetUserDataSuspenseQueryHookResult = ReturnType<typeof useGetUserDataSuspenseQuery>;
|
|
7838
8873
|
export type GetUserDataQueryResult = Apollo.QueryResult<GetUserDataQuery, GetUserDataQueryVariables>;
|
|
7839
8874
|
export declare const SaveUserDataDocument: Apollo.DocumentNode;
|
|
7840
8875
|
export type SaveUserDataMutationFn = Apollo.MutationFunction<SaveUserDataMutation, SaveUserDataMutationVariables>;
|
|
@@ -7925,8 +8960,14 @@ export declare function useRunActionsListAndFormatOnValueLazyQuery(baseOptions?:
|
|
|
7925
8960
|
value?: InputMaybe<ValueBatchInput>;
|
|
7926
8961
|
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
|
|
7927
8962
|
}>>;
|
|
8963
|
+
export declare function useRunActionsListAndFormatOnValueSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.UseSuspenseQueryResult<RunActionsListAndFormatOnValueQuery, Exact<{
|
|
8964
|
+
library: Scalars["ID"];
|
|
8965
|
+
value?: InputMaybe<ValueBatchInput>;
|
|
8966
|
+
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
|
|
8967
|
+
}>>;
|
|
7928
8968
|
export type RunActionsListAndFormatOnValueQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueQuery>;
|
|
7929
8969
|
export type RunActionsListAndFormatOnValueLazyQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueLazyQuery>;
|
|
8970
|
+
export type RunActionsListAndFormatOnValueSuspenseQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueSuspenseQuery>;
|
|
7930
8971
|
export type RunActionsListAndFormatOnValueQueryResult = Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>;
|
|
7931
8972
|
export declare const SaveValueBatchDocument: Apollo.DocumentNode;
|
|
7932
8973
|
export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMutation, SaveValueBatchMutationVariables>;
|
|
@@ -8009,8 +9050,12 @@ export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<Get
|
|
|
8009
9050
|
export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
|
|
8010
9051
|
viewId: Scalars["String"];
|
|
8011
9052
|
}>>;
|
|
9053
|
+
export declare function useGetViewSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewQuery, Exact<{
|
|
9054
|
+
viewId: Scalars["String"];
|
|
9055
|
+
}>>;
|
|
8012
9056
|
export type GetViewQueryHookResult = ReturnType<typeof useGetViewQuery>;
|
|
8013
9057
|
export type GetViewLazyQueryHookResult = ReturnType<typeof useGetViewLazyQuery>;
|
|
9058
|
+
export type GetViewSuspenseQueryHookResult = ReturnType<typeof useGetViewSuspenseQuery>;
|
|
8014
9059
|
export type GetViewQueryResult = Apollo.QueryResult<GetViewQuery, GetViewQueryVariables>;
|
|
8015
9060
|
export declare const GetViewsListDocument: Apollo.DocumentNode;
|
|
8016
9061
|
/**
|
|
@@ -8035,8 +9080,12 @@ export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOption
|
|
|
8035
9080
|
export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
|
|
8036
9081
|
libraryId: Scalars["String"];
|
|
8037
9082
|
}>>;
|
|
9083
|
+
export declare function useGetViewsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewsListQuery, Exact<{
|
|
9084
|
+
libraryId: Scalars["String"];
|
|
9085
|
+
}>>;
|
|
8038
9086
|
export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
|
|
8039
9087
|
export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
|
|
9088
|
+
export type GetViewsListSuspenseQueryHookResult = ReturnType<typeof useGetViewsListSuspenseQuery>;
|
|
8040
9089
|
export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
|
|
8041
9090
|
export declare const SaveViewDocument: Apollo.DocumentNode;
|
|
8042
9091
|
export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
|
|
@@ -8086,8 +9135,12 @@ export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: A
|
|
|
8086
9135
|
export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
8087
9136
|
library: Scalars["String"];
|
|
8088
9137
|
}>>;
|
|
9138
|
+
export declare function useGetAttributesByLibWithPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
9139
|
+
library: Scalars["String"];
|
|
9140
|
+
}>>;
|
|
8089
9141
|
export type GetAttributesByLibWithPermissionsQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsQuery>;
|
|
8090
9142
|
export type GetAttributesByLibWithPermissionsLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsLazyQuery>;
|
|
9143
|
+
export type GetAttributesByLibWithPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsSuspenseQuery>;
|
|
8091
9144
|
export type GetAttributesByLibWithPermissionsQueryResult = Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>;
|
|
8092
9145
|
export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
|
|
8093
9146
|
/**
|
|
@@ -8112,8 +9165,12 @@ export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHoo
|
|
|
8112
9165
|
export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
|
|
8113
9166
|
ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8114
9167
|
}>>;
|
|
9168
|
+
export declare function useExplorerAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerAttributesQuery, Exact<{
|
|
9169
|
+
ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9170
|
+
}>>;
|
|
8115
9171
|
export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
|
|
8116
9172
|
export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
|
|
9173
|
+
export type ExplorerAttributesSuspenseQueryHookResult = ReturnType<typeof useExplorerAttributesSuspenseQuery>;
|
|
8117
9174
|
export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
|
|
8118
9175
|
export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
|
|
8119
9176
|
/**
|
|
@@ -8138,8 +9195,12 @@ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryH
|
|
|
8138
9195
|
export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
|
|
8139
9196
|
id: Scalars["ID"];
|
|
8140
9197
|
}>>;
|
|
9198
|
+
export declare function useExplorerLinkAttributeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkAttributeQuery, Exact<{
|
|
9199
|
+
id: Scalars["ID"];
|
|
9200
|
+
}>>;
|
|
8141
9201
|
export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
|
|
8142
9202
|
export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
|
|
9203
|
+
export type ExplorerLinkAttributeSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkAttributeSuspenseQuery>;
|
|
8143
9204
|
export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
|
|
8144
9205
|
export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
|
|
8145
9206
|
/**
|
|
@@ -8179,8 +9240,17 @@ export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.Laz
|
|
|
8179
9240
|
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
8180
9241
|
searchQuery?: InputMaybe<Scalars["String"]>;
|
|
8181
9242
|
}>>;
|
|
9243
|
+
export declare function useExplorerLibraryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDataQuery, Exact<{
|
|
9244
|
+
libraryId: Scalars["ID"];
|
|
9245
|
+
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
9246
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
9247
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9248
|
+
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
9249
|
+
searchQuery?: InputMaybe<Scalars["String"]>;
|
|
9250
|
+
}>>;
|
|
8182
9251
|
export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
|
|
8183
9252
|
export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
|
|
9253
|
+
export type ExplorerLibraryDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDataSuspenseQuery>;
|
|
8184
9254
|
export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
|
|
8185
9255
|
export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
|
|
8186
9256
|
/**
|
|
@@ -8214,8 +9284,15 @@ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
8214
9284
|
parentRecordId?: InputMaybe<Scalars["String"]>;
|
|
8215
9285
|
linkAttributeId: Scalars["ID"];
|
|
8216
9286
|
}>>;
|
|
9287
|
+
export declare function useExplorerLinkDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkDataQuery, Exact<{
|
|
9288
|
+
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
9289
|
+
parentLibraryId: Scalars["ID"];
|
|
9290
|
+
parentRecordId?: InputMaybe<Scalars["String"]>;
|
|
9291
|
+
linkAttributeId: Scalars["ID"];
|
|
9292
|
+
}>>;
|
|
8217
9293
|
export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
|
|
8218
9294
|
export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
|
|
9295
|
+
export type ExplorerLinkDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkDataSuspenseQuery>;
|
|
8219
9296
|
export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
|
|
8220
9297
|
export declare const GetLibraryAttributesDocument: Apollo.DocumentNode;
|
|
8221
9298
|
/**
|
|
@@ -8240,8 +9317,12 @@ export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHo
|
|
|
8240
9317
|
export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
|
|
8241
9318
|
libraryId: Scalars["ID"];
|
|
8242
9319
|
}>>;
|
|
9320
|
+
export declare function useGetLibraryAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryAttributesQuery, Exact<{
|
|
9321
|
+
libraryId: Scalars["ID"];
|
|
9322
|
+
}>>;
|
|
8243
9323
|
export type GetLibraryAttributesQueryHookResult = ReturnType<typeof useGetLibraryAttributesQuery>;
|
|
8244
9324
|
export type GetLibraryAttributesLazyQueryHookResult = ReturnType<typeof useGetLibraryAttributesLazyQuery>;
|
|
9325
|
+
export type GetLibraryAttributesSuspenseQueryHookResult = ReturnType<typeof useGetLibraryAttributesSuspenseQuery>;
|
|
8245
9326
|
export type GetLibraryAttributesQueryResult = Apollo.QueryResult<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>;
|
|
8246
9327
|
export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
|
|
8247
9328
|
/**
|
|
@@ -8266,8 +9347,12 @@ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.Query
|
|
|
8266
9347
|
export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
|
|
8267
9348
|
libraryId: Scalars["ID"];
|
|
8268
9349
|
}>>;
|
|
9350
|
+
export declare function useExplorerLibraryDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDetailsQuery, Exact<{
|
|
9351
|
+
libraryId: Scalars["ID"];
|
|
9352
|
+
}>>;
|
|
8269
9353
|
export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
|
|
8270
9354
|
export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
|
|
9355
|
+
export type ExplorerLibraryDetailsSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsSuspenseQuery>;
|
|
8271
9356
|
export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
|
|
8272
9357
|
export declare const ExplorerSelectionIdsDocument: Apollo.DocumentNode;
|
|
8273
9358
|
/**
|
|
@@ -8295,8 +9380,13 @@ export declare function useExplorerSelectionIdsLazyQuery(baseOptions?: Apollo.La
|
|
|
8295
9380
|
libraryId: Scalars["ID"];
|
|
8296
9381
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8297
9382
|
}>>;
|
|
9383
|
+
export declare function useExplorerSelectionIdsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerSelectionIdsQuery, Exact<{
|
|
9384
|
+
libraryId: Scalars["ID"];
|
|
9385
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9386
|
+
}>>;
|
|
8298
9387
|
export type ExplorerSelectionIdsQueryHookResult = ReturnType<typeof useExplorerSelectionIdsQuery>;
|
|
8299
9388
|
export type ExplorerSelectionIdsLazyQueryHookResult = ReturnType<typeof useExplorerSelectionIdsLazyQuery>;
|
|
9389
|
+
export type ExplorerSelectionIdsSuspenseQueryHookResult = ReturnType<typeof useExplorerSelectionIdsSuspenseQuery>;
|
|
8300
9390
|
export type ExplorerSelectionIdsQueryResult = Apollo.QueryResult<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>;
|
|
8301
9391
|
export declare const MeDocument: Apollo.DocumentNode;
|
|
8302
9392
|
/**
|
|
@@ -8320,8 +9410,12 @@ export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery
|
|
|
8320
9410
|
export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
|
|
8321
9411
|
[key: string]: never;
|
|
8322
9412
|
}>>;
|
|
9413
|
+
export declare function useMeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.UseSuspenseQueryResult<MeQuery, Exact<{
|
|
9414
|
+
[key: string]: never;
|
|
9415
|
+
}>>;
|
|
8323
9416
|
export type MeQueryHookResult = ReturnType<typeof useMeQuery>;
|
|
8324
9417
|
export type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;
|
|
9418
|
+
export type MeSuspenseQueryHookResult = ReturnType<typeof useMeSuspenseQuery>;
|
|
8325
9419
|
export type MeQueryResult = Apollo.QueryResult<MeQuery, MeQueryVariables>;
|
|
8326
9420
|
export declare const UpdateViewDocument: Apollo.DocumentNode;
|
|
8327
9421
|
export type UpdateViewMutationFn = Apollo.MutationFunction<UpdateViewMutation, UpdateViewMutationVariables>;
|
|
@@ -8348,6 +9442,44 @@ export declare function useUpdateViewMutation(baseOptions?: Apollo.MutationHookO
|
|
|
8348
9442
|
export type UpdateViewMutationHookResult = ReturnType<typeof useUpdateViewMutation>;
|
|
8349
9443
|
export type UpdateViewMutationResult = Apollo.MutationResult<UpdateViewMutation>;
|
|
8350
9444
|
export type UpdateViewMutationOptions = Apollo.BaseMutationOptions<UpdateViewMutation, UpdateViewMutationVariables>;
|
|
9445
|
+
export declare const GetJoinLibraryMandatoryAttributeValuesDocument: Apollo.DocumentNode;
|
|
9446
|
+
/**
|
|
9447
|
+
* __useGetJoinLibraryMandatoryAttributeValuesQuery__
|
|
9448
|
+
*
|
|
9449
|
+
* To run a query within a React component, call `useGetJoinLibraryMandatoryAttributeValuesQuery` and pass it any options that fit your needs.
|
|
9450
|
+
* When your component renders, `useGetJoinLibraryMandatoryAttributeValuesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
9451
|
+
* you can use to render your UI.
|
|
9452
|
+
*
|
|
9453
|
+
* @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;
|
|
9454
|
+
*
|
|
9455
|
+
* @example
|
|
9456
|
+
* const { data, loading, error } = useGetJoinLibraryMandatoryAttributeValuesQuery({
|
|
9457
|
+
* variables: {
|
|
9458
|
+
* joinLibraryId: // value for 'joinLibraryId'
|
|
9459
|
+
* filters: // value for 'filters'
|
|
9460
|
+
* mandatoryAttributeId: // value for 'mandatoryAttributeId'
|
|
9461
|
+
* },
|
|
9462
|
+
* });
|
|
9463
|
+
*/
|
|
9464
|
+
export declare function useGetJoinLibraryMandatoryAttributeValuesQuery(baseOptions: Apollo.QueryHookOptions<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>): Apollo.QueryResult<GetJoinLibraryMandatoryAttributeValuesQuery, Exact<{
|
|
9465
|
+
joinLibraryId: Scalars["ID"];
|
|
9466
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9467
|
+
mandatoryAttributeId: Scalars["ID"];
|
|
9468
|
+
}>>;
|
|
9469
|
+
export declare function useGetJoinLibraryMandatoryAttributeValuesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>): Apollo.LazyQueryResultTuple<GetJoinLibraryMandatoryAttributeValuesQuery, Exact<{
|
|
9470
|
+
joinLibraryId: Scalars["ID"];
|
|
9471
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9472
|
+
mandatoryAttributeId: Scalars["ID"];
|
|
9473
|
+
}>>;
|
|
9474
|
+
export declare function useGetJoinLibraryMandatoryAttributeValuesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>): Apollo.UseSuspenseQueryResult<GetJoinLibraryMandatoryAttributeValuesQuery, Exact<{
|
|
9475
|
+
joinLibraryId: Scalars["ID"];
|
|
9476
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9477
|
+
mandatoryAttributeId: Scalars["ID"];
|
|
9478
|
+
}>>;
|
|
9479
|
+
export type GetJoinLibraryMandatoryAttributeValuesQueryHookResult = ReturnType<typeof useGetJoinLibraryMandatoryAttributeValuesQuery>;
|
|
9480
|
+
export type GetJoinLibraryMandatoryAttributeValuesLazyQueryHookResult = ReturnType<typeof useGetJoinLibraryMandatoryAttributeValuesLazyQuery>;
|
|
9481
|
+
export type GetJoinLibraryMandatoryAttributeValuesSuspenseQueryHookResult = ReturnType<typeof useGetJoinLibraryMandatoryAttributeValuesSuspenseQuery>;
|
|
9482
|
+
export type GetJoinLibraryMandatoryAttributeValuesQueryResult = Apollo.QueryResult<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>;
|
|
8351
9483
|
export declare const TreeDataQueryDocument: Apollo.DocumentNode;
|
|
8352
9484
|
/**
|
|
8353
9485
|
* __useTreeDataQueryQuery__
|
|
@@ -8371,6 +9503,10 @@ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptio
|
|
|
8371
9503
|
export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
|
|
8372
9504
|
treeId: Scalars["ID"];
|
|
8373
9505
|
}>>;
|
|
9506
|
+
export declare function useTreeDataQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.UseSuspenseQueryResult<TreeDataQueryQuery, Exact<{
|
|
9507
|
+
treeId: Scalars["ID"];
|
|
9508
|
+
}>>;
|
|
8374
9509
|
export type TreeDataQueryQueryHookResult = ReturnType<typeof useTreeDataQueryQuery>;
|
|
8375
9510
|
export type TreeDataQueryLazyQueryHookResult = ReturnType<typeof useTreeDataQueryLazyQuery>;
|
|
9511
|
+
export type TreeDataQuerySuspenseQueryHookResult = ReturnType<typeof useTreeDataQuerySuspenseQuery>;
|
|
8376
9512
|
export type TreeDataQueryQueryResult = Apollo.QueryResult<TreeDataQueryQuery, TreeDataQueryQueryVariables>;
|