@iblai/data-layer 1.2.1 → 1.2.3
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/index.d.ts +2659 -2
- package/dist/index.esm.js +178 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +197 -0
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/src/features/workflows/api-slice.d.ts +2454 -0
- package/dist/src/features/workflows/constants.d.ts +57 -0
- package/dist/src/features/workflows/types.d.ts +130 -0
- package/dist/src/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -43202,6 +43202,183 @@ useGetUserProjectsQuery, useLazyGetUserProjectsQuery, useGetUserProjectDetailsQu
|
|
|
43202
43202
|
// Admin routes
|
|
43203
43203
|
useGetAdminProjectsQuery, useLazyGetAdminProjectsQuery, useGetAdminProjectDetailsQuery, useLazyGetAdminProjectDetailsQuery, useCreateAdminProjectMutation, useUpdateAdminProjectMutation, useDeleteAdminProjectMutation, } = projectsApiSlice;
|
|
43204
43204
|
|
|
43205
|
+
const WORKFLOWS_REDUCER_PATH = 'workflowsApiSlice';
|
|
43206
|
+
const WORKFLOWS_ENDPOINTS = {
|
|
43207
|
+
LIST: {
|
|
43208
|
+
service: exports.SERVICES.AXD,
|
|
43209
|
+
path: (org) => `/api/ai-mentor/orgs/${org}/workflows/`,
|
|
43210
|
+
},
|
|
43211
|
+
CREATE: {
|
|
43212
|
+
service: exports.SERVICES.AXD,
|
|
43213
|
+
path: (org) => `/api/ai-mentor/orgs/${org}/workflows/`,
|
|
43214
|
+
},
|
|
43215
|
+
RETRIEVE: {
|
|
43216
|
+
service: exports.SERVICES.AXD,
|
|
43217
|
+
path: (org, uniqueId) => `/api/ai-mentor/orgs/${org}/workflows/${uniqueId}/`,
|
|
43218
|
+
},
|
|
43219
|
+
UPDATE: {
|
|
43220
|
+
service: exports.SERVICES.AXD,
|
|
43221
|
+
path: (org, uniqueId) => `/api/ai-mentor/orgs/${org}/workflows/${uniqueId}/`,
|
|
43222
|
+
},
|
|
43223
|
+
DELETE: {
|
|
43224
|
+
service: exports.SERVICES.AXD,
|
|
43225
|
+
path: (org, uniqueId) => `/api/ai-mentor/orgs/${org}/workflows/${uniqueId}/`,
|
|
43226
|
+
},
|
|
43227
|
+
ACTIVATE: {
|
|
43228
|
+
service: exports.SERVICES.AXD,
|
|
43229
|
+
path: (org, uniqueId) => `/api/ai-mentor/orgs/${org}/workflows/${uniqueId}/activate/`,
|
|
43230
|
+
},
|
|
43231
|
+
DEACTIVATE: {
|
|
43232
|
+
service: exports.SERVICES.AXD,
|
|
43233
|
+
path: (org, uniqueId) => `/api/ai-mentor/orgs/${org}/workflows/${uniqueId}/deactivate/`,
|
|
43234
|
+
},
|
|
43235
|
+
PUBLISH: {
|
|
43236
|
+
service: exports.SERVICES.AXD,
|
|
43237
|
+
path: (org, uniqueId) => `/api/ai-mentor/orgs/${org}/workflows/${uniqueId}/publish/`,
|
|
43238
|
+
},
|
|
43239
|
+
UNPUBLISH: {
|
|
43240
|
+
service: exports.SERVICES.AXD,
|
|
43241
|
+
path: (org, uniqueId) => `/api/ai-mentor/orgs/${org}/workflows/${uniqueId}/unpublish/`,
|
|
43242
|
+
},
|
|
43243
|
+
VALIDATE: {
|
|
43244
|
+
service: exports.SERVICES.AXD,
|
|
43245
|
+
path: (org, uniqueId) => `/api/ai-mentor/orgs/${org}/workflows/${uniqueId}/validate/`,
|
|
43246
|
+
},
|
|
43247
|
+
CHAT: {
|
|
43248
|
+
service: exports.SERVICES.AXD,
|
|
43249
|
+
path: (org, uniqueId) => `/api/ai-mentor/orgs/${org}/workflows/${uniqueId}/chat/`,
|
|
43250
|
+
},
|
|
43251
|
+
NODE_TYPES: {
|
|
43252
|
+
service: exports.SERVICES.AXD,
|
|
43253
|
+
path: (org) => `/api/ai-mentor/orgs/${org}/workflows/node-types/`,
|
|
43254
|
+
},
|
|
43255
|
+
};
|
|
43256
|
+
const WORKFLOWS_QUERY_KEYS = {
|
|
43257
|
+
LIST: () => ['WORKFLOWS'],
|
|
43258
|
+
DETAILS: () => ['WORKFLOW_DETAILS'],
|
|
43259
|
+
NODE_TYPES: () => ['WORKFLOW_NODE_TYPES'],
|
|
43260
|
+
};
|
|
43261
|
+
|
|
43262
|
+
const workflowsApiSlice = react.createApi({
|
|
43263
|
+
reducerPath: WORKFLOWS_REDUCER_PATH,
|
|
43264
|
+
tagTypes: [
|
|
43265
|
+
...WORKFLOWS_QUERY_KEYS.LIST(),
|
|
43266
|
+
...WORKFLOWS_QUERY_KEYS.DETAILS(),
|
|
43267
|
+
...WORKFLOWS_QUERY_KEYS.NODE_TYPES(),
|
|
43268
|
+
],
|
|
43269
|
+
baseQuery: iblFetchBaseQuery,
|
|
43270
|
+
endpoints: (builder) => ({
|
|
43271
|
+
getWorkflows: builder.query({
|
|
43272
|
+
query: ({ org, params }) => ({
|
|
43273
|
+
url: WORKFLOWS_ENDPOINTS.LIST.path(org),
|
|
43274
|
+
params,
|
|
43275
|
+
service: WORKFLOWS_ENDPOINTS.LIST.service,
|
|
43276
|
+
}),
|
|
43277
|
+
providesTags: WORKFLOWS_QUERY_KEYS.LIST(),
|
|
43278
|
+
}),
|
|
43279
|
+
getWorkflow: builder.query({
|
|
43280
|
+
query: ({ org, uniqueId }) => ({
|
|
43281
|
+
url: WORKFLOWS_ENDPOINTS.RETRIEVE.path(org, uniqueId),
|
|
43282
|
+
service: WORKFLOWS_ENDPOINTS.RETRIEVE.service,
|
|
43283
|
+
}),
|
|
43284
|
+
providesTags: WORKFLOWS_QUERY_KEYS.DETAILS(),
|
|
43285
|
+
}),
|
|
43286
|
+
createWorkflow: builder.mutation({
|
|
43287
|
+
query: ({ org, data }) => ({
|
|
43288
|
+
url: WORKFLOWS_ENDPOINTS.CREATE.path(org),
|
|
43289
|
+
method: 'POST',
|
|
43290
|
+
body: data,
|
|
43291
|
+
service: WORKFLOWS_ENDPOINTS.CREATE.service,
|
|
43292
|
+
}),
|
|
43293
|
+
invalidatesTags: WORKFLOWS_QUERY_KEYS.LIST(),
|
|
43294
|
+
}),
|
|
43295
|
+
// Full update (PUT) - replaces entire workflow
|
|
43296
|
+
updateWorkflow: builder.mutation({
|
|
43297
|
+
query: ({ org, uniqueId, data }) => ({
|
|
43298
|
+
url: WORKFLOWS_ENDPOINTS.UPDATE.path(org, uniqueId),
|
|
43299
|
+
method: 'PUT',
|
|
43300
|
+
body: data,
|
|
43301
|
+
service: WORKFLOWS_ENDPOINTS.UPDATE.service,
|
|
43302
|
+
}),
|
|
43303
|
+
invalidatesTags: [...WORKFLOWS_QUERY_KEYS.LIST(), ...WORKFLOWS_QUERY_KEYS.DETAILS()],
|
|
43304
|
+
}),
|
|
43305
|
+
// Partial update (PATCH) - updates only provided fields
|
|
43306
|
+
patchWorkflow: builder.mutation({
|
|
43307
|
+
query: ({ org, uniqueId, data }) => ({
|
|
43308
|
+
url: WORKFLOWS_ENDPOINTS.UPDATE.path(org, uniqueId),
|
|
43309
|
+
method: 'PATCH',
|
|
43310
|
+
body: data,
|
|
43311
|
+
service: WORKFLOWS_ENDPOINTS.UPDATE.service,
|
|
43312
|
+
}),
|
|
43313
|
+
invalidatesTags: [...WORKFLOWS_QUERY_KEYS.LIST(), ...WORKFLOWS_QUERY_KEYS.DETAILS()],
|
|
43314
|
+
}),
|
|
43315
|
+
deleteWorkflow: builder.mutation({
|
|
43316
|
+
query: ({ org, uniqueId }) => ({
|
|
43317
|
+
url: WORKFLOWS_ENDPOINTS.DELETE.path(org, uniqueId),
|
|
43318
|
+
method: 'DELETE',
|
|
43319
|
+
service: WORKFLOWS_ENDPOINTS.DELETE.service,
|
|
43320
|
+
}),
|
|
43321
|
+
invalidatesTags: WORKFLOWS_QUERY_KEYS.LIST(),
|
|
43322
|
+
}),
|
|
43323
|
+
activateWorkflow: builder.mutation({
|
|
43324
|
+
query: ({ org, uniqueId }) => ({
|
|
43325
|
+
url: WORKFLOWS_ENDPOINTS.ACTIVATE.path(org, uniqueId),
|
|
43326
|
+
method: 'POST',
|
|
43327
|
+
service: WORKFLOWS_ENDPOINTS.ACTIVATE.service,
|
|
43328
|
+
}),
|
|
43329
|
+
invalidatesTags: [...WORKFLOWS_QUERY_KEYS.LIST(), ...WORKFLOWS_QUERY_KEYS.DETAILS()],
|
|
43330
|
+
}),
|
|
43331
|
+
deactivateWorkflow: builder.mutation({
|
|
43332
|
+
query: ({ org, uniqueId }) => ({
|
|
43333
|
+
url: WORKFLOWS_ENDPOINTS.DEACTIVATE.path(org, uniqueId),
|
|
43334
|
+
method: 'POST',
|
|
43335
|
+
service: WORKFLOWS_ENDPOINTS.DEACTIVATE.service,
|
|
43336
|
+
}),
|
|
43337
|
+
invalidatesTags: [...WORKFLOWS_QUERY_KEYS.LIST(), ...WORKFLOWS_QUERY_KEYS.DETAILS()],
|
|
43338
|
+
}),
|
|
43339
|
+
publishWorkflow: builder.mutation({
|
|
43340
|
+
query: ({ org, uniqueId, data }) => ({
|
|
43341
|
+
url: WORKFLOWS_ENDPOINTS.PUBLISH.path(org, uniqueId),
|
|
43342
|
+
method: 'POST',
|
|
43343
|
+
body: data,
|
|
43344
|
+
service: WORKFLOWS_ENDPOINTS.PUBLISH.service,
|
|
43345
|
+
}),
|
|
43346
|
+
invalidatesTags: [...WORKFLOWS_QUERY_KEYS.LIST(), ...WORKFLOWS_QUERY_KEYS.DETAILS()],
|
|
43347
|
+
}),
|
|
43348
|
+
unpublishWorkflow: builder.mutation({
|
|
43349
|
+
query: ({ org, uniqueId }) => ({
|
|
43350
|
+
url: WORKFLOWS_ENDPOINTS.UNPUBLISH.path(org, uniqueId),
|
|
43351
|
+
method: 'POST',
|
|
43352
|
+
service: WORKFLOWS_ENDPOINTS.UNPUBLISH.service,
|
|
43353
|
+
}),
|
|
43354
|
+
invalidatesTags: [...WORKFLOWS_QUERY_KEYS.LIST(), ...WORKFLOWS_QUERY_KEYS.DETAILS()],
|
|
43355
|
+
}),
|
|
43356
|
+
validateWorkflow: builder.mutation({
|
|
43357
|
+
query: ({ org, uniqueId }) => ({
|
|
43358
|
+
url: WORKFLOWS_ENDPOINTS.VALIDATE.path(org, uniqueId),
|
|
43359
|
+
method: 'POST',
|
|
43360
|
+
service: WORKFLOWS_ENDPOINTS.VALIDATE.service,
|
|
43361
|
+
}),
|
|
43362
|
+
}),
|
|
43363
|
+
chatWithWorkflow: builder.mutation({
|
|
43364
|
+
query: ({ org, uniqueId, message }) => ({
|
|
43365
|
+
url: WORKFLOWS_ENDPOINTS.CHAT.path(org, uniqueId),
|
|
43366
|
+
method: 'POST',
|
|
43367
|
+
body: { message },
|
|
43368
|
+
service: WORKFLOWS_ENDPOINTS.CHAT.service,
|
|
43369
|
+
}),
|
|
43370
|
+
}),
|
|
43371
|
+
getNodeTypes: builder.query({
|
|
43372
|
+
query: ({ org }) => ({
|
|
43373
|
+
url: WORKFLOWS_ENDPOINTS.NODE_TYPES.path(org),
|
|
43374
|
+
service: WORKFLOWS_ENDPOINTS.NODE_TYPES.service,
|
|
43375
|
+
}),
|
|
43376
|
+
providesTags: WORKFLOWS_QUERY_KEYS.NODE_TYPES(),
|
|
43377
|
+
}),
|
|
43378
|
+
}),
|
|
43379
|
+
});
|
|
43380
|
+
const { useGetWorkflowsQuery, useLazyGetWorkflowsQuery, useGetWorkflowQuery, useLazyGetWorkflowQuery, useCreateWorkflowMutation, useUpdateWorkflowMutation, usePatchWorkflowMutation, useDeleteWorkflowMutation, useActivateWorkflowMutation, useDeactivateWorkflowMutation, usePublishWorkflowMutation, useUnpublishWorkflowMutation, useValidateWorkflowMutation, useChatWithWorkflowMutation, useGetNodeTypesQuery, useLazyGetNodeTypesQuery, } = workflowsApiSlice;
|
|
43381
|
+
|
|
43205
43382
|
const mentorReducer = {
|
|
43206
43383
|
[mentorApiSlice.reducerPath]: mentorApiSlice.reducer,
|
|
43207
43384
|
[tenantApiSlice.reducerPath]: tenantApiSlice.reducer,
|
|
@@ -43417,6 +43594,9 @@ exports.TENANT_LOGO_ENDPOINTS = TENANT_LOGO_ENDPOINTS;
|
|
|
43417
43594
|
exports.TENANT_LOGO_QUERY_KEYS = TENANT_LOGO_QUERY_KEYS;
|
|
43418
43595
|
exports.TENANT_LOGO_REDUCER_PATH = TENANT_LOGO_REDUCER_PATH;
|
|
43419
43596
|
exports.URL_PATTERNS = URL_PATTERNS;
|
|
43597
|
+
exports.WORKFLOWS_ENDPOINTS = WORKFLOWS_ENDPOINTS;
|
|
43598
|
+
exports.WORKFLOWS_QUERY_KEYS = WORKFLOWS_QUERY_KEYS;
|
|
43599
|
+
exports.WORKFLOWS_REDUCER_PATH = WORKFLOWS_REDUCER_PATH;
|
|
43420
43600
|
exports.analyticsApiSlice = analyticsApiSlice;
|
|
43421
43601
|
exports.analyticsCustomSlice = analyticsCustomSlice;
|
|
43422
43602
|
exports.apiKeysApiReducer = apiKeysApiReducer;
|
|
@@ -43480,10 +43660,12 @@ exports.tenantApiSlice = tenantApiSlice;
|
|
|
43480
43660
|
exports.tenantLogoApiSlice = tenantLogoApiSlice;
|
|
43481
43661
|
exports.toolsApiSlice = toolsApiSlice;
|
|
43482
43662
|
exports.trainingDocumentsApiSlice = trainingDocumentsApiSlice;
|
|
43663
|
+
exports.useActivateWorkflowMutation = useActivateWorkflowMutation;
|
|
43483
43664
|
exports.useAddPinnedMessageMutation = useAddPinnedMessageMutation;
|
|
43484
43665
|
exports.useAddTrainingDocumentMutation = useAddTrainingDocumentMutation;
|
|
43485
43666
|
exports.useAgreeToDisclaimerMutation = useAgreeToDisclaimerMutation;
|
|
43486
43667
|
exports.useAudioToTextMutation = useAudioToTextMutation;
|
|
43668
|
+
exports.useChatWithWorkflowMutation = useChatWithWorkflowMutation;
|
|
43487
43669
|
exports.useConnectedServicesCallbackQuery = useConnectedServicesCallbackQuery;
|
|
43488
43670
|
exports.useCreateAdminProjectMutation = useCreateAdminProjectMutation;
|
|
43489
43671
|
exports.useCreateApiKeyMutation = useCreateApiKeyMutation;
|
|
@@ -43536,6 +43718,8 @@ exports.useCreateUserInstitutionMutation = useCreateUserInstitutionMutation;
|
|
|
43536
43718
|
exports.useCreateUserInvitationMutation = useCreateUserInvitationMutation;
|
|
43537
43719
|
exports.useCreateUserProjectMutation = useCreateUserProjectMutation;
|
|
43538
43720
|
exports.useCreateUserResumeMutation = useCreateUserResumeMutation;
|
|
43721
|
+
exports.useCreateWorkflowMutation = useCreateWorkflowMutation;
|
|
43722
|
+
exports.useDeactivateWorkflowMutation = useDeactivateWorkflowMutation;
|
|
43539
43723
|
exports.useDeleteAdminProjectMutation = useDeleteAdminProjectMutation;
|
|
43540
43724
|
exports.useDeleteApiKeyMutation = useDeleteApiKeyMutation;
|
|
43541
43725
|
exports.useDeleteCourseCredentialMutation = useDeleteCourseCredentialMutation;
|
|
@@ -43563,6 +43747,7 @@ exports.useDeleteTrainingDocumentMutation = useDeleteTrainingDocumentMutation;
|
|
|
43563
43747
|
exports.useDeleteUserEducationMutation = useDeleteUserEducationMutation;
|
|
43564
43748
|
exports.useDeleteUserExperienceMutation = useDeleteUserExperienceMutation;
|
|
43565
43749
|
exports.useDeleteUserProjectMutation = useDeleteUserProjectMutation;
|
|
43750
|
+
exports.useDeleteWorkflowMutation = useDeleteWorkflowMutation;
|
|
43566
43751
|
exports.useDisconnectServiceMutation = useDisconnectServiceMutation;
|
|
43567
43752
|
exports.useEditMentorAndRefreshListMutation = useEditMentorAndRefreshListMutation;
|
|
43568
43753
|
exports.useEditMentorJsonMutation = useEditMentorJsonMutation;
|
|
@@ -43638,6 +43823,7 @@ exports.useGetMentorsQuery = useGetMentorsQuery;
|
|
|
43638
43823
|
exports.useGetMfeContextQuery = useGetMfeContextQuery;
|
|
43639
43824
|
exports.useGetModerationLogsQuery = useGetModerationLogsQuery;
|
|
43640
43825
|
exports.useGetMostDiscussedTopicsQuery = useGetMostDiscussedTopicsQuery;
|
|
43826
|
+
exports.useGetNodeTypesQuery = useGetNodeTypesQuery;
|
|
43641
43827
|
exports.useGetNotificationContextQuery = useGetNotificationContextQuery;
|
|
43642
43828
|
exports.useGetNotificationsCountQuery = useGetNotificationsCountQuery;
|
|
43643
43829
|
exports.useGetNotificationsQuery = useGetNotificationsQuery;
|
|
@@ -43734,6 +43920,8 @@ exports.useGetUserTenantsQuery = useGetUserTenantsQuery;
|
|
|
43734
43920
|
exports.useGetUsersAsAssertionsQuery = useGetUsersAsAssertionsQuery;
|
|
43735
43921
|
exports.useGetUsersStatsQuery = useGetUsersStatsQuery;
|
|
43736
43922
|
exports.useGetVectorDocumentsQuery = useGetVectorDocumentsQuery;
|
|
43923
|
+
exports.useGetWorkflowQuery = useGetWorkflowQuery;
|
|
43924
|
+
exports.useGetWorkflowsQuery = useGetWorkflowsQuery;
|
|
43737
43925
|
exports.useInviteUserMutation = useInviteUserMutation;
|
|
43738
43926
|
exports.useJoinTenantMutation = useJoinTenantMutation;
|
|
43739
43927
|
exports.useLazyConnectedServicesCallbackQuery = useLazyConnectedServicesCallbackQuery;
|
|
@@ -43787,6 +43975,7 @@ exports.useLazyGetMentorSummariesQuery = useLazyGetMentorSummariesQuery;
|
|
|
43787
43975
|
exports.useLazyGetMentorUserSettingsQuery = useLazyGetMentorUserSettingsQuery;
|
|
43788
43976
|
exports.useLazyGetMentorsQuery = useLazyGetMentorsQuery;
|
|
43789
43977
|
exports.useLazyGetModerationLogsQuery = useLazyGetModerationLogsQuery;
|
|
43978
|
+
exports.useLazyGetNodeTypesQuery = useLazyGetNodeTypesQuery;
|
|
43790
43979
|
exports.useLazyGetNotificationContextQuery = useLazyGetNotificationContextQuery;
|
|
43791
43980
|
exports.useLazyGetNotificationsCountQuery = useLazyGetNotificationsCountQuery;
|
|
43792
43981
|
exports.useLazyGetNotificationsQuery = useLazyGetNotificationsQuery;
|
|
@@ -43854,6 +44043,8 @@ exports.useLazyGetUserSkillsPointsQuery = useLazyGetUserSkillsPointsQuery;
|
|
|
43854
44043
|
exports.useLazyGetUserTenantsQuery = useLazyGetUserTenantsQuery;
|
|
43855
44044
|
exports.useLazyGetUsersAsAssertionsQuery = useLazyGetUsersAsAssertionsQuery;
|
|
43856
44045
|
exports.useLazyGetVectorDocumentsQuery = useLazyGetVectorDocumentsQuery;
|
|
44046
|
+
exports.useLazyGetWorkflowQuery = useLazyGetWorkflowQuery;
|
|
44047
|
+
exports.useLazyGetWorkflowsQuery = useLazyGetWorkflowsQuery;
|
|
43857
44048
|
exports.useLazyListArtifactVersionsQuery = useLazyListArtifactVersionsQuery;
|
|
43858
44049
|
exports.useLazyListArtifactsQuery = useLazyListArtifactsQuery;
|
|
43859
44050
|
exports.useLazyPlatformUserGroupsQuery = useLazyPlatformUserGroupsQuery;
|
|
@@ -43869,9 +44060,11 @@ exports.useOauthFindMutation = useOauthFindMutation;
|
|
|
43869
44060
|
exports.usePartialUpdateMCPServerMutation = usePartialUpdateMCPServerMutation;
|
|
43870
44061
|
exports.usePartialUpdateRbacRoleMutation = usePartialUpdateRbacRoleMutation;
|
|
43871
44062
|
exports.usePatchMCPServerConnectionMutation = usePatchMCPServerConnectionMutation;
|
|
44063
|
+
exports.usePatchWorkflowMutation = usePatchWorkflowMutation;
|
|
43872
44064
|
exports.usePlatformInvitationsQuery = usePlatformInvitationsQuery;
|
|
43873
44065
|
exports.usePlatformUserGroupsQuery = usePlatformUserGroupsQuery;
|
|
43874
44066
|
exports.usePlatformUsersQuery = usePlatformUsersQuery;
|
|
44067
|
+
exports.usePublishWorkflowMutation = usePublishWorkflowMutation;
|
|
43875
44068
|
exports.useRemoveProfileImageMutation = useRemoveProfileImageMutation;
|
|
43876
44069
|
exports.useRenewSubscriptionMutation = useRenewSubscriptionMutation;
|
|
43877
44070
|
exports.useResetPasswordMutation = useResetPasswordMutation;
|
|
@@ -43889,6 +44082,7 @@ exports.useTimeTrackingMutation = useTimeTrackingMutation;
|
|
|
43889
44082
|
exports.useToggleTemplateMutation = useToggleTemplateMutation;
|
|
43890
44083
|
exports.useTriggerAutoRechargeMutation = useTriggerAutoRechargeMutation;
|
|
43891
44084
|
exports.useUnPinMessageMutation = useUnPinMessageMutation;
|
|
44085
|
+
exports.useUnpublishWorkflowMutation = useUnpublishWorkflowMutation;
|
|
43892
44086
|
exports.useUnstarMentorMutation = useUnstarMentorMutation;
|
|
43893
44087
|
exports.useUpdateAdminProjectMutation = useUpdateAdminProjectMutation;
|
|
43894
44088
|
exports.useUpdateArtifactMutation = useUpdateArtifactMutation;
|
|
@@ -43927,11 +44121,14 @@ exports.useUpdateUserProjectMutation = useUpdateUserProjectMutation;
|
|
|
43927
44121
|
exports.useUpdateUserRoleMutation = useUpdateUserRoleMutation;
|
|
43928
44122
|
exports.useUpdateUserStatusMutation = useUpdateUserStatusMutation;
|
|
43929
44123
|
exports.useUpdateUserTrialStatusMutation = useUpdateUserTrialStatusMutation;
|
|
44124
|
+
exports.useUpdateWorkflowMutation = useUpdateWorkflowMutation;
|
|
43930
44125
|
exports.useUploadCredentialImageMutation = useUploadCredentialImageMutation;
|
|
43931
44126
|
exports.useUploadDarkLogoMutation = useUploadDarkLogoMutation;
|
|
43932
44127
|
exports.useUploadLightLogoMutation = useUploadLightLogoMutation;
|
|
43933
44128
|
exports.useUploadProfileImageMutation = useUploadProfileImageMutation;
|
|
43934
44129
|
exports.useUsersGradesPassedQuery = useUsersGradesPassedQuery;
|
|
44130
|
+
exports.useValidateWorkflowMutation = useValidateWorkflowMutation;
|
|
43935
44131
|
exports.userApiSlice = userApiSlice;
|
|
43936
44132
|
exports.userInvitationsApiSlice = userInvitationsApiSlice;
|
|
44133
|
+
exports.workflowsApiSlice = workflowsApiSlice;
|
|
43937
44134
|
//# sourceMappingURL=index.js.map
|