chore: bump dependencies (#3258)
Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
This commit is contained in:
@@ -248,6 +248,7 @@ export const getUserRootCollections = () =>
|
||||
""
|
||||
>({
|
||||
query: GetUserRootCollectionsDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const getGQLRootUserCollections = () =>
|
||||
@@ -257,6 +258,7 @@ export const getGQLRootUserCollections = () =>
|
||||
""
|
||||
>({
|
||||
query: GetGqlRootUserCollectionsDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const exportUserCollectionsToJSON = (
|
||||
@@ -273,30 +275,31 @@ export const exportUserCollectionsToJSON = (
|
||||
})
|
||||
|
||||
export const runUserCollectionCreatedSubscription = () =>
|
||||
runGQLSubscription({ query: UserCollectionCreatedDocument })
|
||||
runGQLSubscription({ query: UserCollectionCreatedDocument, variables: {} })
|
||||
|
||||
export const runUserCollectionUpdatedSubscription = () =>
|
||||
runGQLSubscription({ query: UserCollectionUpdatedDocument })
|
||||
runGQLSubscription({ query: UserCollectionUpdatedDocument, variables: {} })
|
||||
|
||||
export const runUserCollectionRemovedSubscription = () =>
|
||||
runGQLSubscription({ query: UserCollectionRemovedDocument })
|
||||
runGQLSubscription({ query: UserCollectionRemovedDocument, variables: {} })
|
||||
|
||||
export const runUserCollectionMovedSubscription = () =>
|
||||
runGQLSubscription({ query: UserCollectionMovedDocument })
|
||||
runGQLSubscription({ query: UserCollectionMovedDocument, variables: {} })
|
||||
|
||||
export const runUserCollectionOrderUpdatedSubscription = () =>
|
||||
runGQLSubscription({
|
||||
query: UserCollectionOrderUpdatedDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const runUserRequestCreatedSubscription = () =>
|
||||
runGQLSubscription({ query: UserRequestCreatedDocument })
|
||||
runGQLSubscription({ query: UserRequestCreatedDocument, variables: {} })
|
||||
|
||||
export const runUserRequestUpdatedSubscription = () =>
|
||||
runGQLSubscription({ query: UserRequestUpdatedDocument })
|
||||
runGQLSubscription({ query: UserRequestUpdatedDocument, variables: {} })
|
||||
|
||||
export const runUserRequestMovedSubscription = () =>
|
||||
runGQLSubscription({ query: UserRequestMovedDocument })
|
||||
runGQLSubscription({ query: UserRequestMovedDocument, variables: {} })
|
||||
|
||||
export const runUserRequestDeletedSubscription = () =>
|
||||
runGQLSubscription({ query: UserRequestDeletedDocument })
|
||||
runGQLSubscription({ query: UserRequestDeletedDocument, variables: {} })
|
||||
|
||||
@@ -76,6 +76,7 @@ export const clearGlobalEnvironmentVariables = (id: string) =>
|
||||
export const getUserEnvironments = () =>
|
||||
runGQLQuery({
|
||||
query: GetUserEnvironmentsDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const getGlobalEnvironments = () =>
|
||||
@@ -85,6 +86,7 @@ export const getGlobalEnvironments = () =>
|
||||
"user_environment/user_env_does_not_exists"
|
||||
>({
|
||||
query: GetGlobalEnvironmentsDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const createUserGlobalEnvironment = (variables: string) =>
|
||||
@@ -99,14 +101,17 @@ export const createUserGlobalEnvironment = (variables: string) =>
|
||||
export const runUserEnvironmentCreatedSubscription = () =>
|
||||
runGQLSubscription({
|
||||
query: UserEnvironmentCreatedDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const runUserEnvironmentUpdatedSubscription = () =>
|
||||
runGQLSubscription({
|
||||
query: UserEnvironmentUpdatedDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const runUserEnvironmentDeletedSubscription = () =>
|
||||
runGQLSubscription({
|
||||
query: UserEnvironmentDeletedDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
@@ -30,6 +30,7 @@ import {
|
||||
export const getUserHistoryEntries = () =>
|
||||
runGQLQuery<GetRestUserHistoryQuery, GetRestUserHistoryQueryVariables, "">({
|
||||
query: GetRestUserHistoryDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const createUserHistory = (
|
||||
@@ -77,19 +78,23 @@ export const deleteAllUserHistory = (reqType: ReqType) =>
|
||||
export const runUserHistoryCreatedSubscription = () =>
|
||||
runGQLSubscription({
|
||||
query: UserHistoryCreatedDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const runUserHistoryUpdatedSubscription = () =>
|
||||
runGQLSubscription({
|
||||
query: UserHistoryUpdatedDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const runUserHistoryDeletedSubscription = () =>
|
||||
runGQLSubscription({
|
||||
query: UserHistoryDeletedDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const runUserHistoryDeletedManySubscription = () =>
|
||||
runGQLSubscription({
|
||||
query: UserHistoryDeletedManyDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
@@ -23,6 +23,7 @@ export const getUserSettings = () =>
|
||||
"user_settings/not_found"
|
||||
>({
|
||||
query: GetUserSettingsDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
export const createUserSettings = (properties: string) =>
|
||||
@@ -46,4 +47,5 @@ export const updateUserSettings = (properties: string) =>
|
||||
export const runUserSettingsUpdatedSubscription = () =>
|
||||
runGQLSubscription({
|
||||
query: UserSettingsUpdatedDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
@@ -32,4 +32,5 @@ export const getCurrentRestSession = () =>
|
||||
""
|
||||
>({
|
||||
query: GetCurrentRestSessionDocument,
|
||||
variables: {},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user