connectionsActions: {
    fetchAllConnections: AsyncThunk<
        IPaginatedData<IConnection>,
        {
            filters?: { [key: string]: string | number | boolean };
            workspaceId: string;
        },
        AsyncThunkConfig,
    >;
    getConnectionById: AsyncThunk<
        IConnection,
        { connectionId: string; filters?: {}; workspaceId: string },
        AsyncThunkConfig,
    >;
    reset: ActionCreatorWithoutPayload<"connectionReducer/reset">;
    setConnections: ActionCreatorWithOptionalPayload<
        IPaginatedData<IConnection>,
        "connectionReducer/setConnections",
    >;
    setSelectedConnection: ActionCreatorWithOptionalPayload<
        "connectionReducer/setSelectedConnection",
    >;
    setSelectedConnectionBySectorId: ActionCreatorWithOptionalPayload<
        "connectionReducer/setSelectedConnectionBySectorId",
    >;
    unselectConnection: ActionCreatorWithoutPayload<"unselectConnection">;
} = ...

Type declaration

  • fetchAllConnections: AsyncThunk<
        IPaginatedData<IConnection>,
        {
            filters?: { [key: string]: string | number | boolean };
            workspaceId: string;
        },
        AsyncThunkConfig,
    >
  • getConnectionById: AsyncThunk<
        IConnection,
        { connectionId: string; filters?: {}; workspaceId: string },
        AsyncThunkConfig,
    >
  • reset: ActionCreatorWithoutPayload<"connectionReducer/reset">
  • setConnections: ActionCreatorWithOptionalPayload<
        IPaginatedData<IConnection>,
        "connectionReducer/setConnections",
    >
  • setSelectedConnection: ActionCreatorWithOptionalPayload<"connectionReducer/setSelectedConnection">
  • setSelectedConnectionBySectorId: ActionCreatorWithOptionalPayload<
        "connectionReducer/setSelectedConnectionBySectorId",
    >
  • unselectConnection: ActionCreatorWithoutPayload<"unselectConnection">