@leav/ui 1.8.0-c4bc6f9a → 1.9.0-22d8ceed
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_gqlTypes/index.d.ts +75 -65
- package/dist/_gqlTypes/index.js +3 -3
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/records/createRecordMutation.js +2 -2
- package/dist/_queries/records/createRecordMutation.js.map +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/_types.d.ts +2 -2
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/_types.js.map +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.d.ts +2 -2
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js.map +1 -1
- package/dist/components/Notifications/hooks/useNotificationSubscription.d.ts +9 -3
- package/dist/components/RecordEdition/EditRecord/EditRecord.js +1 -1
- package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +4 -0
- package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +27 -16
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +28 -16
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordPage/ErrorComponent.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordPage/ErrorComponent.js +11 -0
- package/dist/components/RecordEdition/EditRecordPage/ErrorComponent.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordPage/getInitialRecordValues.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordPage/getInitialRecordValues.js +35 -0
- package/dist/components/RecordEdition/EditRecordPage/getInitialRecordValues.js.map +1 -0
- package/dist/hooks/useGetLibraryDetailExtendedQuery/useGetLibraryDetailExtendedQuery.d.ts +1 -1
- package/dist/hooks/useGetRecordUpdatesSubscription/useGetRecordUpdatesSubscription.d.ts +9 -3
- package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/types.d.ts +5 -0
- package/dist/hooks/useIFrameMessenger/types.js.map +1 -1
- package/package.json +6 -6
|
@@ -246,16 +246,6 @@ export declare enum AvailableLanguage {
|
|
|
246
246
|
en = "en",
|
|
247
247
|
fr = "fr"
|
|
248
248
|
}
|
|
249
|
-
export type CampaignToRenew = {
|
|
250
|
-
endDate: Scalars['String']['input'];
|
|
251
|
-
id: Scalars['String']['input'];
|
|
252
|
-
startDate: Scalars['String']['input'];
|
|
253
|
-
};
|
|
254
|
-
export type CampaignToUpdateDates = {
|
|
255
|
-
endDate: Scalars['String']['input'];
|
|
256
|
-
id: Scalars['String']['input'];
|
|
257
|
-
startDate: Scalars['String']['input'];
|
|
258
|
-
};
|
|
259
249
|
export type ChildrenAsRecordValuePermissionFilterInput = {
|
|
260
250
|
action: RecordPermissionsActions;
|
|
261
251
|
attributeId: Scalars['ID']['input'];
|
|
@@ -761,7 +751,6 @@ export declare enum TaskType {
|
|
|
761
751
|
IMPORT_CONFIG = "IMPORT_CONFIG",
|
|
762
752
|
IMPORT_DATA = "IMPORT_DATA",
|
|
763
753
|
INDEXATION = "INDEXATION",
|
|
764
|
-
RENEW_CAMPAIGNS = "RENEW_CAMPAIGNS",
|
|
765
754
|
SAVE_VALUE_BULK = "SAVE_VALUE_BULK"
|
|
766
755
|
}
|
|
767
756
|
export declare enum TreeBehavior {
|
|
@@ -4669,6 +4658,7 @@ export type CreateEmptyRecordMutation = {
|
|
|
4669
4658
|
};
|
|
4670
4659
|
export type CreateRecordMutationVariables = Exact<{
|
|
4671
4660
|
library: Scalars['ID']['input'];
|
|
4661
|
+
skipActivate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4672
4662
|
data?: InputMaybe<CreateRecordDataInput>;
|
|
4673
4663
|
}>;
|
|
4674
4664
|
export type CreateRecordMutation = {
|
|
@@ -8215,7 +8205,7 @@ export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
|
|
|
8215
8205
|
* },
|
|
8216
8206
|
* });
|
|
8217
8207
|
*/
|
|
8218
|
-
export declare function useCheckApplicationExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.
|
|
8208
|
+
export declare function useCheckApplicationExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.InteropQueryResult<CheckApplicationExistenceQuery, Exact<{
|
|
8219
8209
|
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8220
8210
|
endpoint?: InputMaybe<Scalars["String"]["input"]>;
|
|
8221
8211
|
}>>;
|
|
@@ -8251,7 +8241,7 @@ export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHook
|
|
|
8251
8241
|
skip?: boolean;
|
|
8252
8242
|
} | {
|
|
8253
8243
|
skip: boolean;
|
|
8254
|
-
})): Apollo.
|
|
8244
|
+
})): Apollo.InteropQueryResult<GetApplicationByIdQuery, Exact<{
|
|
8255
8245
|
id: Scalars["ID"]["input"];
|
|
8256
8246
|
}>>;
|
|
8257
8247
|
export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
|
|
@@ -8279,7 +8269,7 @@ export declare const GetApplicationModulesDocument: Apollo.DocumentNode;
|
|
|
8279
8269
|
* },
|
|
8280
8270
|
* });
|
|
8281
8271
|
*/
|
|
8282
|
-
export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.QueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.
|
|
8272
|
+
export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.QueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.InteropQueryResult<GetApplicationModulesQuery, Exact<{
|
|
8283
8273
|
[key: string]: never;
|
|
8284
8274
|
}>>;
|
|
8285
8275
|
export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
|
|
@@ -8338,7 +8328,7 @@ export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.Quer
|
|
|
8338
8328
|
skip?: boolean;
|
|
8339
8329
|
} | {
|
|
8340
8330
|
skip: boolean;
|
|
8341
|
-
})): Apollo.
|
|
8331
|
+
})): Apollo.InteropQueryResult<CheckAttributeExistenceQuery, Exact<{
|
|
8342
8332
|
id: Scalars["ID"]["input"];
|
|
8343
8333
|
}>>;
|
|
8344
8334
|
export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
|
|
@@ -8392,7 +8382,7 @@ export declare const GetAttributeByIdDocument: Apollo.DocumentNode;
|
|
|
8392
8382
|
* },
|
|
8393
8383
|
* });
|
|
8394
8384
|
*/
|
|
8395
|
-
export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.
|
|
8385
|
+
export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.InteropQueryResult<GetAttributeByIdQuery, Exact<{
|
|
8396
8386
|
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8397
8387
|
}>>;
|
|
8398
8388
|
export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
|
|
@@ -8426,7 +8416,7 @@ export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHook
|
|
|
8426
8416
|
skip?: boolean;
|
|
8427
8417
|
} | {
|
|
8428
8418
|
skip: boolean;
|
|
8429
|
-
})): Apollo.
|
|
8419
|
+
})): Apollo.InteropQueryResult<GetAttributesByLibQuery, Exact<{
|
|
8430
8420
|
library: Scalars["String"]["input"];
|
|
8431
8421
|
}>>;
|
|
8432
8422
|
export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
|
|
@@ -8457,7 +8447,7 @@ export declare const GetAttributesDocument: Apollo.DocumentNode;
|
|
|
8457
8447
|
* },
|
|
8458
8448
|
* });
|
|
8459
8449
|
*/
|
|
8460
|
-
export declare function useGetAttributesQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.
|
|
8450
|
+
export declare function useGetAttributesQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.InteropQueryResult<GetAttributesQuery, Exact<{
|
|
8461
8451
|
pagination?: InputMaybe<Pagination>;
|
|
8462
8452
|
sort?: InputMaybe<SortAttributes>;
|
|
8463
8453
|
filters?: InputMaybe<AttributesFiltersInput>;
|
|
@@ -8491,7 +8481,7 @@ export declare const GetVersionProfilesDocument: Apollo.DocumentNode;
|
|
|
8491
8481
|
* },
|
|
8492
8482
|
* });
|
|
8493
8483
|
*/
|
|
8494
|
-
export declare function useGetVersionProfilesQuery(baseOptions?: Apollo.QueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.
|
|
8484
|
+
export declare function useGetVersionProfilesQuery(baseOptions?: Apollo.QueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.InteropQueryResult<GetVersionProfilesQuery, Exact<{
|
|
8495
8485
|
filters?: InputMaybe<VersionProfilesFiltersInput>;
|
|
8496
8486
|
sort?: InputMaybe<SortVersionProfilesInput>;
|
|
8497
8487
|
}>>;
|
|
@@ -8527,7 +8517,7 @@ export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: A
|
|
|
8527
8517
|
skip?: boolean;
|
|
8528
8518
|
} | {
|
|
8529
8519
|
skip: boolean;
|
|
8530
|
-
})): Apollo.
|
|
8520
|
+
})): Apollo.InteropQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
8531
8521
|
libraryId: Scalars["String"]["input"];
|
|
8532
8522
|
}>>;
|
|
8533
8523
|
export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
@@ -8588,7 +8578,7 @@ export declare function useExportQuery(baseOptions: Apollo.QueryHookOptions<Expo
|
|
|
8588
8578
|
skip?: boolean;
|
|
8589
8579
|
} | {
|
|
8590
8580
|
skip: boolean;
|
|
8591
|
-
})): Apollo.
|
|
8581
|
+
})): Apollo.InteropQueryResult<ExportQuery, Exact<{
|
|
8592
8582
|
library: Scalars["ID"]["input"];
|
|
8593
8583
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8594
8584
|
profile?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -8689,7 +8679,7 @@ export declare function useGetDirectoryDataQuery(baseOptions: Apollo.QueryHookOp
|
|
|
8689
8679
|
skip?: boolean;
|
|
8690
8680
|
} | {
|
|
8691
8681
|
skip: boolean;
|
|
8692
|
-
})): Apollo.
|
|
8682
|
+
})): Apollo.InteropQueryResult<GetDirectoryDataQuery, Exact<{
|
|
8693
8683
|
library: Scalars["ID"]["input"];
|
|
8694
8684
|
directoryId: Scalars["String"]["input"];
|
|
8695
8685
|
}>>;
|
|
@@ -8720,9 +8710,15 @@ export declare const UploadUpdateDocument: Apollo.DocumentNode;
|
|
|
8720
8710
|
* },
|
|
8721
8711
|
* });
|
|
8722
8712
|
*/
|
|
8723
|
-
export declare function useUploadUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<UploadUpdateSubscription, UploadUpdateSubscriptionVariables>):
|
|
8724
|
-
|
|
8725
|
-
|
|
8713
|
+
export declare function useUploadUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<UploadUpdateSubscription, UploadUpdateSubscriptionVariables>): {
|
|
8714
|
+
restart: () => void;
|
|
8715
|
+
loading: boolean;
|
|
8716
|
+
data?: UploadUpdateSubscription;
|
|
8717
|
+
error?: Apollo.ApolloError;
|
|
8718
|
+
variables?: Exact<{
|
|
8719
|
+
filters?: InputMaybe<UploadFiltersInput>;
|
|
8720
|
+
}>;
|
|
8721
|
+
};
|
|
8726
8722
|
export type UploadUpdateSubscriptionHookResult = ReturnType<typeof useUploadUpdateSubscription>;
|
|
8727
8723
|
export type UploadUpdateSubscriptionResult = Apollo.SubscriptionResult<UploadUpdateSubscription>;
|
|
8728
8724
|
export declare const UploadDocument: Apollo.DocumentNode;
|
|
@@ -8800,7 +8796,7 @@ export declare const CheckLibraryExistenceDocument: Apollo.DocumentNode;
|
|
|
8800
8796
|
* },
|
|
8801
8797
|
* });
|
|
8802
8798
|
*/
|
|
8803
|
-
export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.
|
|
8799
|
+
export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.InteropQueryResult<CheckLibraryExistenceQuery, Exact<{
|
|
8804
8800
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8805
8801
|
}>>;
|
|
8806
8802
|
export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
|
|
@@ -8853,7 +8849,7 @@ export declare const GetLibrariesDocument: Apollo.DocumentNode;
|
|
|
8853
8849
|
* },
|
|
8854
8850
|
* });
|
|
8855
8851
|
*/
|
|
8856
|
-
export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.
|
|
8852
|
+
export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.InteropQueryResult<GetLibrariesQuery, Exact<{
|
|
8857
8853
|
[key: string]: never;
|
|
8858
8854
|
}>>;
|
|
8859
8855
|
export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
|
|
@@ -8882,7 +8878,7 @@ export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
|
|
|
8882
8878
|
* },
|
|
8883
8879
|
* });
|
|
8884
8880
|
*/
|
|
8885
|
-
export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.
|
|
8881
|
+
export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.InteropQueryResult<GetLibraryByIdQuery, Exact<{
|
|
8886
8882
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8887
8883
|
}>>;
|
|
8888
8884
|
export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
|
|
@@ -8911,7 +8907,7 @@ export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
|
|
|
8911
8907
|
* },
|
|
8912
8908
|
* });
|
|
8913
8909
|
*/
|
|
8914
|
-
export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.
|
|
8910
|
+
export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.InteropQueryResult<GetLibraryPermissionsQuery, Exact<{
|
|
8915
8911
|
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8916
8912
|
}>>;
|
|
8917
8913
|
export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
|
|
@@ -8945,7 +8941,7 @@ export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.Q
|
|
|
8945
8941
|
skip?: boolean;
|
|
8946
8942
|
} | {
|
|
8947
8943
|
skip: boolean;
|
|
8948
|
-
})): Apollo.
|
|
8944
|
+
})): Apollo.InteropQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
8949
8945
|
id: Scalars["ID"]["input"];
|
|
8950
8946
|
}>>;
|
|
8951
8947
|
export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
@@ -9007,7 +9003,7 @@ export declare function useIsAllowedQuery(baseOptions: Apollo.QueryHookOptions<I
|
|
|
9007
9003
|
skip?: boolean;
|
|
9008
9004
|
} | {
|
|
9009
9005
|
skip: boolean;
|
|
9010
|
-
})): Apollo.
|
|
9006
|
+
})): Apollo.InteropQueryResult<IsAllowedQuery, Exact<{
|
|
9011
9007
|
type: PermissionTypes;
|
|
9012
9008
|
actions: Array<PermissionsActions> | PermissionsActions;
|
|
9013
9009
|
applyTo?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -9124,12 +9120,14 @@ export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutatio
|
|
|
9124
9120
|
* const [createRecordMutation, { data, loading, error }] = useCreateRecordMutation({
|
|
9125
9121
|
* variables: {
|
|
9126
9122
|
* library: // value for 'library'
|
|
9123
|
+
* skipActivate: // value for 'skipActivate'
|
|
9127
9124
|
* data: // value for 'data'
|
|
9128
9125
|
* },
|
|
9129
9126
|
* });
|
|
9130
9127
|
*/
|
|
9131
9128
|
export declare function useCreateRecordMutation(baseOptions?: Apollo.MutationHookOptions<CreateRecordMutation, CreateRecordMutationVariables>): Apollo.MutationTuple<CreateRecordMutation, Exact<{
|
|
9132
9129
|
library: Scalars["ID"]["input"];
|
|
9130
|
+
skipActivate?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
9133
9131
|
data?: InputMaybe<CreateRecordDataInput>;
|
|
9134
9132
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9135
9133
|
export type CreateRecordMutationHookResult = ReturnType<typeof useCreateRecordMutation>;
|
|
@@ -9188,7 +9186,7 @@ export declare function useDoesFileExistAsChildQuery(baseOptions: Apollo.QueryHo
|
|
|
9188
9186
|
skip?: boolean;
|
|
9189
9187
|
} | {
|
|
9190
9188
|
skip: boolean;
|
|
9191
|
-
})): Apollo.
|
|
9189
|
+
})): Apollo.InteropQueryResult<DoesFileExistAsChildQuery, Exact<{
|
|
9192
9190
|
parentNode?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9193
9191
|
treeId: Scalars["ID"]["input"];
|
|
9194
9192
|
filename: Scalars["String"]["input"];
|
|
@@ -9228,7 +9226,7 @@ export declare function useGetFileDataQuery(baseOptions: Apollo.QueryHookOptions
|
|
|
9228
9226
|
skip?: boolean;
|
|
9229
9227
|
} | {
|
|
9230
9228
|
skip: boolean;
|
|
9231
|
-
})): Apollo.
|
|
9229
|
+
})): Apollo.InteropQueryResult<GetFileDataQuery, Exact<{
|
|
9232
9230
|
library: Scalars["ID"]["input"];
|
|
9233
9231
|
fileId: Scalars["String"]["input"];
|
|
9234
9232
|
previewsStatusAttribute: Scalars["ID"]["input"];
|
|
@@ -9269,7 +9267,7 @@ export declare function useRecordFormQuery(baseOptions: Apollo.QueryHookOptions<
|
|
|
9269
9267
|
skip?: boolean;
|
|
9270
9268
|
} | {
|
|
9271
9269
|
skip: boolean;
|
|
9272
|
-
})): Apollo.
|
|
9270
|
+
})): Apollo.InteropQueryResult<RecordFormQuery, Exact<{
|
|
9273
9271
|
libraryId: Scalars["String"]["input"];
|
|
9274
9272
|
formId: Scalars["String"]["input"];
|
|
9275
9273
|
recordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -9304,9 +9302,15 @@ export declare const RecordUpdateDocument: Apollo.DocumentNode;
|
|
|
9304
9302
|
* },
|
|
9305
9303
|
* });
|
|
9306
9304
|
*/
|
|
9307
|
-
export declare function useRecordUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<RecordUpdateSubscription, RecordUpdateSubscriptionVariables>):
|
|
9308
|
-
|
|
9309
|
-
|
|
9305
|
+
export declare function useRecordUpdateSubscription(baseOptions?: Apollo.SubscriptionHookOptions<RecordUpdateSubscription, RecordUpdateSubscriptionVariables>): {
|
|
9306
|
+
restart: () => void;
|
|
9307
|
+
loading: boolean;
|
|
9308
|
+
data?: RecordUpdateSubscription;
|
|
9309
|
+
error?: Apollo.ApolloError;
|
|
9310
|
+
variables?: Exact<{
|
|
9311
|
+
filters?: InputMaybe<RecordUpdateFilterInput>;
|
|
9312
|
+
}>;
|
|
9313
|
+
};
|
|
9310
9314
|
export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
|
|
9311
9315
|
export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
|
|
9312
9316
|
export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
|
|
@@ -9333,7 +9337,7 @@ export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryH
|
|
|
9333
9337
|
skip?: boolean;
|
|
9334
9338
|
} | {
|
|
9335
9339
|
skip: boolean;
|
|
9336
|
-
})): Apollo.
|
|
9340
|
+
})): Apollo.InteropQueryResult<GetRecordsFromLibraryQuery, Exact<{
|
|
9337
9341
|
libraryId: Scalars["ID"]["input"];
|
|
9338
9342
|
pagination?: InputMaybe<RecordsPagination>;
|
|
9339
9343
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
@@ -9445,7 +9449,7 @@ export declare const CheckTreeExistenceDocument: Apollo.DocumentNode;
|
|
|
9445
9449
|
* },
|
|
9446
9450
|
* });
|
|
9447
9451
|
*/
|
|
9448
|
-
export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.
|
|
9452
|
+
export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.InteropQueryResult<CheckTreeExistenceQuery, Exact<{
|
|
9449
9453
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9450
9454
|
}>>;
|
|
9451
9455
|
export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
|
|
@@ -9499,7 +9503,7 @@ export declare const GetTreeByIdDocument: Apollo.DocumentNode;
|
|
|
9499
9503
|
* },
|
|
9500
9504
|
* });
|
|
9501
9505
|
*/
|
|
9502
|
-
export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.
|
|
9506
|
+
export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.InteropQueryResult<GetTreeByIdQuery, Exact<{
|
|
9503
9507
|
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9504
9508
|
}>>;
|
|
9505
9509
|
export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
|
|
@@ -9529,7 +9533,7 @@ export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
|
|
|
9529
9533
|
* },
|
|
9530
9534
|
* });
|
|
9531
9535
|
*/
|
|
9532
|
-
export declare function useGetTreeLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.
|
|
9536
|
+
export declare function useGetTreeLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.InteropQueryResult<GetTreeLibrariesQuery, Exact<{
|
|
9533
9537
|
treeId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9534
9538
|
library?: InputMaybe<Scalars["String"]["input"]>;
|
|
9535
9539
|
}>>;
|
|
@@ -9559,7 +9563,7 @@ export declare const GetTreesDocument: Apollo.DocumentNode;
|
|
|
9559
9563
|
* },
|
|
9560
9564
|
* });
|
|
9561
9565
|
*/
|
|
9562
|
-
export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.
|
|
9566
|
+
export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.InteropQueryResult<GetTreesQuery, Exact<{
|
|
9563
9567
|
[key: string]: never;
|
|
9564
9568
|
}>>;
|
|
9565
9569
|
export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
|
|
@@ -9622,7 +9626,7 @@ export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOp
|
|
|
9622
9626
|
skip?: boolean;
|
|
9623
9627
|
} | {
|
|
9624
9628
|
skip: boolean;
|
|
9625
|
-
})): Apollo.
|
|
9629
|
+
})): Apollo.InteropQueryResult<TreeNodeChildrenQuery, Exact<{
|
|
9626
9630
|
treeId: Scalars["ID"]["input"];
|
|
9627
9631
|
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9628
9632
|
pagination?: InputMaybe<Pagination>;
|
|
@@ -9669,7 +9673,7 @@ export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQuery
|
|
|
9669
9673
|
skip?: boolean;
|
|
9670
9674
|
} | {
|
|
9671
9675
|
skip: boolean;
|
|
9672
|
-
})): Apollo.
|
|
9676
|
+
})): Apollo.InteropQueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, Exact<{
|
|
9673
9677
|
treeId: Scalars["ID"]["input"];
|
|
9674
9678
|
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9675
9679
|
pagination?: InputMaybe<Pagination>;
|
|
@@ -9714,7 +9718,7 @@ export declare function useGetUserDataQuery(baseOptions: Apollo.QueryHookOptions
|
|
|
9714
9718
|
skip?: boolean;
|
|
9715
9719
|
} | {
|
|
9716
9720
|
skip: boolean;
|
|
9717
|
-
})): Apollo.
|
|
9721
|
+
})): Apollo.InteropQueryResult<GetUserDataQuery, Exact<{
|
|
9718
9722
|
keys: Array<Scalars["String"]["input"]> | Scalars["String"]["input"];
|
|
9719
9723
|
global?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
9720
9724
|
}>>;
|
|
@@ -9899,7 +9903,7 @@ export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<Get
|
|
|
9899
9903
|
skip?: boolean;
|
|
9900
9904
|
} | {
|
|
9901
9905
|
skip: boolean;
|
|
9902
|
-
})): Apollo.
|
|
9906
|
+
})): Apollo.InteropQueryResult<GetViewQuery, Exact<{
|
|
9903
9907
|
viewId: Scalars["String"]["input"];
|
|
9904
9908
|
}>>;
|
|
9905
9909
|
export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
|
|
@@ -9933,7 +9937,7 @@ export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOption
|
|
|
9933
9937
|
skip?: boolean;
|
|
9934
9938
|
} | {
|
|
9935
9939
|
skip: boolean;
|
|
9936
|
-
})): Apollo.
|
|
9940
|
+
})): Apollo.InteropQueryResult<GetViewsListQuery, Exact<{
|
|
9937
9941
|
libraryId: Scalars["String"]["input"];
|
|
9938
9942
|
}>>;
|
|
9939
9943
|
export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
|
|
@@ -9992,7 +9996,7 @@ export declare function useAttributeWithValuesForMassEditionQuery(baseOptions: A
|
|
|
9992
9996
|
skip?: boolean;
|
|
9993
9997
|
} | {
|
|
9994
9998
|
skip: boolean;
|
|
9995
|
-
})): Apollo.
|
|
9999
|
+
})): Apollo.InteropQueryResult<AttributeWithValuesForMassEditionQuery, Exact<{
|
|
9996
10000
|
attributeId: Scalars["ID"]["input"];
|
|
9997
10001
|
}>>;
|
|
9998
10002
|
export declare function useAttributeWithValuesForMassEditionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AttributeWithValuesForMassEditionQuery, AttributeWithValuesForMassEditionQueryVariables>): Apollo.LazyQueryResultTuple<AttributeWithValuesForMassEditionQuery, Exact<{
|
|
@@ -10026,7 +10030,7 @@ export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: A
|
|
|
10026
10030
|
skip?: boolean;
|
|
10027
10031
|
} | {
|
|
10028
10032
|
skip: boolean;
|
|
10029
|
-
})): Apollo.
|
|
10033
|
+
})): Apollo.InteropQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
10030
10034
|
library: Scalars["String"]["input"];
|
|
10031
10035
|
}>>;
|
|
10032
10036
|
export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
@@ -10055,7 +10059,7 @@ export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
|
|
|
10055
10059
|
* },
|
|
10056
10060
|
* });
|
|
10057
10061
|
*/
|
|
10058
|
-
export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.
|
|
10062
|
+
export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.InteropQueryResult<ExplorerAttributesQuery, Exact<{
|
|
10059
10063
|
ids?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
10060
10064
|
}>>;
|
|
10061
10065
|
export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
|
|
@@ -10089,7 +10093,7 @@ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryH
|
|
|
10089
10093
|
skip?: boolean;
|
|
10090
10094
|
} | {
|
|
10091
10095
|
skip: boolean;
|
|
10092
|
-
})): Apollo.
|
|
10096
|
+
})): Apollo.InteropQueryResult<ExplorerLinkAttributeQuery, Exact<{
|
|
10093
10097
|
id: Scalars["ID"]["input"];
|
|
10094
10098
|
}>>;
|
|
10095
10099
|
export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
|
|
@@ -10125,7 +10129,7 @@ export declare function useCountValuesOccurrencesQuery(baseOptions: Apollo.Query
|
|
|
10125
10129
|
skip?: boolean;
|
|
10126
10130
|
} | {
|
|
10127
10131
|
skip: boolean;
|
|
10128
|
-
})): Apollo.
|
|
10132
|
+
})): Apollo.InteropQueryResult<CountValuesOccurrencesQuery, Exact<{
|
|
10129
10133
|
library: Scalars["ID"]["input"];
|
|
10130
10134
|
attribute: Scalars["ID"]["input"];
|
|
10131
10135
|
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
@@ -10168,7 +10172,7 @@ export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHoo
|
|
|
10168
10172
|
skip?: boolean;
|
|
10169
10173
|
} | {
|
|
10170
10174
|
skip: boolean;
|
|
10171
|
-
})): Apollo.
|
|
10175
|
+
})): Apollo.InteropQueryResult<ExplorerLibraryDataQuery, Exact<{
|
|
10172
10176
|
libraryId: Scalars["ID"]["input"];
|
|
10173
10177
|
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
10174
10178
|
pagination?: InputMaybe<RecordsPagination>;
|
|
@@ -10215,7 +10219,7 @@ export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOp
|
|
|
10215
10219
|
skip?: boolean;
|
|
10216
10220
|
} | {
|
|
10217
10221
|
skip: boolean;
|
|
10218
|
-
})): Apollo.
|
|
10222
|
+
})): Apollo.InteropQueryResult<ExplorerLinkDataQuery, Exact<{
|
|
10219
10223
|
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
10220
10224
|
parentLibraryId: Scalars["ID"]["input"];
|
|
10221
10225
|
parentRecordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -10255,7 +10259,7 @@ export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHo
|
|
|
10255
10259
|
skip?: boolean;
|
|
10256
10260
|
} | {
|
|
10257
10261
|
skip: boolean;
|
|
10258
|
-
})): Apollo.
|
|
10262
|
+
})): Apollo.InteropQueryResult<GetLibraryAttributesQuery, Exact<{
|
|
10259
10263
|
libraryId: Scalars["ID"]["input"];
|
|
10260
10264
|
}>>;
|
|
10261
10265
|
export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
|
|
@@ -10289,7 +10293,7 @@ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.Query
|
|
|
10289
10293
|
skip?: boolean;
|
|
10290
10294
|
} | {
|
|
10291
10295
|
skip: boolean;
|
|
10292
|
-
})): Apollo.
|
|
10296
|
+
})): Apollo.InteropQueryResult<ExplorerLibraryDetailsQuery, Exact<{
|
|
10293
10297
|
libraryId: Scalars["ID"]["input"];
|
|
10294
10298
|
}>>;
|
|
10295
10299
|
export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
|
|
@@ -10318,7 +10322,7 @@ export declare const LibraryExportProfilesDocument: Apollo.DocumentNode;
|
|
|
10318
10322
|
* },
|
|
10319
10323
|
* });
|
|
10320
10324
|
*/
|
|
10321
|
-
export declare function useLibraryExportProfilesQuery(baseOptions?: Apollo.QueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.
|
|
10325
|
+
export declare function useLibraryExportProfilesQuery(baseOptions?: Apollo.QueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.InteropQueryResult<LibraryExportProfilesQuery, Exact<{
|
|
10322
10326
|
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
10323
10327
|
}>>;
|
|
10324
10328
|
export declare function useLibraryExportProfilesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.LazyQueryResultTuple<LibraryExportProfilesQuery, Exact<{
|
|
@@ -10353,7 +10357,7 @@ export declare function useExplorerSelectionIdsQuery(baseOptions: Apollo.QueryHo
|
|
|
10353
10357
|
skip?: boolean;
|
|
10354
10358
|
} | {
|
|
10355
10359
|
skip: boolean;
|
|
10356
|
-
})): Apollo.
|
|
10360
|
+
})): Apollo.InteropQueryResult<ExplorerSelectionIdsQuery, Exact<{
|
|
10357
10361
|
libraryId: Scalars["ID"]["input"];
|
|
10358
10362
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
10359
10363
|
}>>;
|
|
@@ -10383,7 +10387,7 @@ export declare const MeDocument: Apollo.DocumentNode;
|
|
|
10383
10387
|
* },
|
|
10384
10388
|
* });
|
|
10385
10389
|
*/
|
|
10386
|
-
export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>): Apollo.
|
|
10390
|
+
export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>): Apollo.InteropQueryResult<MeQuery, Exact<{
|
|
10387
10391
|
[key: string]: never;
|
|
10388
10392
|
}>>;
|
|
10389
10393
|
export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
|
|
@@ -10444,7 +10448,7 @@ export declare function useSmartFilterListValuesQuery(baseOptions: Apollo.QueryH
|
|
|
10444
10448
|
skip?: boolean;
|
|
10445
10449
|
} | {
|
|
10446
10450
|
skip: boolean;
|
|
10447
|
-
})): Apollo.
|
|
10451
|
+
})): Apollo.InteropQueryResult<SmartFilterListValuesQuery, Exact<{
|
|
10448
10452
|
library: Scalars["ID"]["input"];
|
|
10449
10453
|
attribute: Scalars["ID"]["input"];
|
|
10450
10454
|
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
@@ -10476,9 +10480,15 @@ export declare const NotificationDocument: Apollo.DocumentNode;
|
|
|
10476
10480
|
* },
|
|
10477
10481
|
* });
|
|
10478
10482
|
*/
|
|
10479
|
-
export declare function useNotificationSubscription(baseOptions?: Apollo.SubscriptionHookOptions<NotificationSubscription, NotificationSubscriptionVariables>):
|
|
10480
|
-
|
|
10481
|
-
|
|
10483
|
+
export declare function useNotificationSubscription(baseOptions?: Apollo.SubscriptionHookOptions<NotificationSubscription, NotificationSubscriptionVariables>): {
|
|
10484
|
+
restart: () => void;
|
|
10485
|
+
loading: boolean;
|
|
10486
|
+
data?: NotificationSubscription;
|
|
10487
|
+
error?: Apollo.ApolloError;
|
|
10488
|
+
variables?: Exact<{
|
|
10489
|
+
[key: string]: never;
|
|
10490
|
+
}>;
|
|
10491
|
+
};
|
|
10482
10492
|
export type NotificationSubscriptionHookResult = ReturnType<typeof useNotificationSubscription>;
|
|
10483
10493
|
export type NotificationSubscriptionResult = Apollo.SubscriptionResult<NotificationSubscription>;
|
|
10484
10494
|
export declare const GetRecordHistoryDocument: Apollo.DocumentNode;
|
|
@@ -10506,7 +10516,7 @@ export declare function useGetRecordHistoryQuery(baseOptions: Apollo.QueryHookOp
|
|
|
10506
10516
|
skip?: boolean;
|
|
10507
10517
|
} | {
|
|
10508
10518
|
skip: boolean;
|
|
10509
|
-
})): Apollo.
|
|
10519
|
+
})): Apollo.InteropQueryResult<GetRecordHistoryQuery, Exact<{
|
|
10510
10520
|
record: LogTopicRecordFilterInput;
|
|
10511
10521
|
attributeId?: InputMaybe<Scalars["String"]["input"]>;
|
|
10512
10522
|
actions?: InputMaybe<Array<LogAction> | LogAction>;
|
|
@@ -10546,7 +10556,7 @@ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptio
|
|
|
10546
10556
|
skip?: boolean;
|
|
10547
10557
|
} | {
|
|
10548
10558
|
skip: boolean;
|
|
10549
|
-
})): Apollo.
|
|
10559
|
+
})): Apollo.InteropQueryResult<TreeDataQueryQuery, Exact<{
|
|
10550
10560
|
treeId: Scalars["ID"]["input"];
|
|
10551
10561
|
}>>;
|
|
10552
10562
|
export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
|
package/dist/_gqlTypes/index.js
CHANGED
|
@@ -310,7 +310,6 @@ export var TaskType;
|
|
|
310
310
|
TaskType["IMPORT_CONFIG"] = "IMPORT_CONFIG";
|
|
311
311
|
TaskType["IMPORT_DATA"] = "IMPORT_DATA";
|
|
312
312
|
TaskType["INDEXATION"] = "INDEXATION";
|
|
313
|
-
TaskType["RENEW_CAMPAIGNS"] = "RENEW_CAMPAIGNS";
|
|
314
313
|
TaskType["SAVE_VALUE_BULK"] = "SAVE_VALUE_BULK";
|
|
315
314
|
})(TaskType || (TaskType = {}));
|
|
316
315
|
export var TreeBehavior;
|
|
@@ -2336,8 +2335,8 @@ export function useCreateEmptyRecordMutation(baseOptions) {
|
|
|
2336
2335
|
return Apollo.useMutation(CreateEmptyRecordDocument, options);
|
|
2337
2336
|
}
|
|
2338
2337
|
export const CreateRecordDocument = gql `
|
|
2339
|
-
mutation CREATE_RECORD($library: ID!, $data: CreateRecordDataInput) {
|
|
2340
|
-
createRecord(library: $library, data: $data) {
|
|
2338
|
+
mutation CREATE_RECORD($library: ID!, $skipActivate: Boolean, $data: CreateRecordDataInput) {
|
|
2339
|
+
createRecord(library: $library, skipActivate: $skipActivate, data: $data) {
|
|
2341
2340
|
record {
|
|
2342
2341
|
...RecordIdentity
|
|
2343
2342
|
}
|
|
@@ -2364,6 +2363,7 @@ export const CreateRecordDocument = gql `
|
|
|
2364
2363
|
* const [createRecordMutation, { data, loading, error }] = useCreateRecordMutation({
|
|
2365
2364
|
* variables: {
|
|
2366
2365
|
* library: // value for 'library'
|
|
2366
|
+
* skipActivate: // value for 'skipActivate'
|
|
2367
2367
|
* data: // value for 'data'
|
|
2368
2368
|
* },
|
|
2369
2369
|
* });
|